All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
@ 2011-01-13 16:02 Manoj Iyer
  2011-01-13 16:02 ` [PATCH] " Manoj Iyer
  0 siblings, 1 reply; 33+ messages in thread
From: Manoj Iyer @ 2011-01-13 16:02 UTC (permalink / raw)
  To: linux-kernel; +Cc: Rafael J. Wysocki, Thomas Gleixner

Set acpi_skip_timer_override to force ignoring BIOS
IRQ0 pin2 override. This fixes resume from suspend on
AMD based ThinkPad Edge 11,13,14 and 15.

Regards
Manoj Iyer

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

* [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 16:02 [PATCH 0/1] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15 Manoj Iyer
@ 2011-01-13 16:02 ` Manoj Iyer
  2011-01-13 16:46   ` Matthew Garrett
  0 siblings, 1 reply; 33+ messages in thread
From: Manoj Iyer @ 2011-01-13 16:02 UTC (permalink / raw)
  To: linux-kernel; +Cc: Rafael J. Wysocki, Thomas Gleixner

Set acpi_skip_timer_override to force ignoring BIOS
IRQ0 pin2 override. This fixes resume from suspend on
AMD based ThinkPad Edge 11,13,14 and 15.

Signed-off-by: Manoj Iyer <manoj.iyer@canonical.com>
---
 arch/x86/kernel/acpi/boot.c |   36 ++++++++++++++++++++++++++++++++++++
 1 files changed, 36 insertions(+), 0 deletions(-)

diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c
index ec881c6..07b8ed5 100644
--- a/arch/x86/kernel/acpi/boot.c
+++ b/arch/x86/kernel/acpi/boot.c
@@ -1418,6 +1418,42 @@ static struct dmi_system_id __initdata acpi_dmi_table[] = {
 		     DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
 		     },
 	 },
+	/* ThinkPad Edge 11 (AMD) */
+	{
+	 .callback = dmi_ignore_irq0_timer_override,
+	 .ident = "ThinkPad Edge",
+	 .matches = {
+		     DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
+		     DMI_MATCH(DMI_PRODUCT_NAME, "254523U"),
+		    },
+	},
+	/* ThinkPad Edge 13 (AMD) */
+	{
+	 .callback = dmi_ignore_irq0_timer_override,
+	 .ident = "ThinkPad Edge",
+	 .matches = {
+		     DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
+		     DMI_MATCH(DMI_PRODUCT_NAME, "022120U"),
+		    },
+	},
+	/* ThinkPad Edge 14 (AMD) */
+	{
+	 .callback = dmi_ignore_irq0_timer_override,
+	 .ident = "ThinkPad Edge",
+	 .matches = {
+		     DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
+		     DMI_MATCH(DMI_PRODUCT_NAME, "019923U"),
+		    },
+	},
+	/* ThinkPad Edge 15 (AMD) */
+	{
+	 .callback = dmi_ignore_irq0_timer_override,
+	 .ident = "ThinkPad Edge",
+	 .matches = {
+		     DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
+		     DMI_MATCH(DMI_PRODUCT_NAME, "030222U"),
+		    },
+	},
 	{}
 };
 
-- 
1.7.1


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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 16:02 ` [PATCH] " Manoj Iyer
@ 2011-01-13 16:46   ` Matthew Garrett
  2011-01-13 17:10     ` Thomas Gleixner
  0 siblings, 1 reply; 33+ messages in thread
From: Matthew Garrett @ 2011-01-13 16:46 UTC (permalink / raw)
  To: Manoj Iyer; +Cc: linux-kernel, Rafael J. Wysocki, Thomas Gleixner

On Thu, Jan 13, 2011 at 10:02:22AM -0600, Manoj Iyer wrote:
> Set acpi_skip_timer_override to force ignoring BIOS
> IRQ0 pin2 override. This fixes resume from suspend on
> AMD based ThinkPad Edge 11,13,14 and 15.

This was originally there because of a quirk in some ati chipsets, 
coupled with DSDT insanity on HP's part. The Thinkpad Edges seem to be 
Intel machines, so it's not the same underlying issue. Do we have any 
idea what the root cause of the failure is? Quirking is a massively less 
than ideal solution.

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

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 16:46   ` Matthew Garrett
@ 2011-01-13 17:10     ` Thomas Gleixner
  2011-01-13 17:22       ` Borislav Petkov
  2011-01-13 17:39       ` Matthew Garrett
  0 siblings, 2 replies; 33+ messages in thread
From: Thomas Gleixner @ 2011-01-13 17:10 UTC (permalink / raw)
  To: Matthew Garrett; +Cc: Manoj Iyer, linux-kernel, Rafael J. Wysocki

On Thu, 13 Jan 2011, Matthew Garrett wrote:

> On Thu, Jan 13, 2011 at 10:02:22AM -0600, Manoj Iyer wrote:
> > Set acpi_skip_timer_override to force ignoring BIOS
> > IRQ0 pin2 override. This fixes resume from suspend on
> > AMD based ThinkPad Edge 11,13,14 and 15.
> 
> This was originally there because of a quirk in some ati chipsets, 
> coupled with DSDT insanity on HP's part. The Thinkpad Edges seem to be 
> Intel machines, so it's not the same underlying issue. Do we have any 

The patch description above talks explictely about AMD based ThinkPad
Edge. So it might be as well the same underlying problem.

Thanks,

	tglx

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 17:10     ` Thomas Gleixner
@ 2011-01-13 17:22       ` Borislav Petkov
  2011-01-13 17:33         ` Manoj Iyer
  2011-01-13 17:39       ` Matthew Garrett
  1 sibling, 1 reply; 33+ messages in thread
From: Borislav Petkov @ 2011-01-13 17:22 UTC (permalink / raw)
  To: Thomas Gleixner
  Cc: Matthew Garrett, Manoj Iyer, linux-kernel, Rafael J. Wysocki,
	Andreas Herrmann

On Thu, Jan 13, 2011 at 06:10:01PM +0100, Thomas Gleixner wrote:
> On Thu, 13 Jan 2011, Matthew Garrett wrote:
> 
> > On Thu, Jan 13, 2011 at 10:02:22AM -0600, Manoj Iyer wrote:
> > > Set acpi_skip_timer_override to force ignoring BIOS
> > > IRQ0 pin2 override. This fixes resume from suspend on
> > > AMD based ThinkPad Edge 11,13,14 and 15.
> > 
> > This was originally there because of a quirk in some ati chipsets, 
> > coupled with DSDT insanity on HP's part. The Thinkpad Edges seem to be 
> > Intel machines, so it's not the same underlying issue. Do we have any 
> 
> The patch description above talks explictely about AMD based ThinkPad
> Edge. So it might be as well the same underlying problem.

Hmm, that's strange, I have an Edge 13 machine here, although not the
exact same model as the ones listed in the patch, mine is:

Handle 0x0001, DMI type 1, 27 bytes
System Information
        Manufacturer: LENOVO
        Product Name: 01972NG
        Version: ThinkPad Edge 13"IAL#

and it suspends/resumes just fine.

Manoj, can you send us dmesg and lspci -vv outputs, please?

Thanks.

-- 
Regards/Gruss,
Boris.

Advanced Micro Devices GmbH
Einsteinring 24, 85609 Dornach
General Managers: Alberto Bozzo, Andrew Bowd
Registration: Dornach, Gemeinde Aschheim, Landkreis Muenchen
Registergericht Muenchen, HRB Nr. 43632

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 17:22       ` Borislav Petkov
@ 2011-01-13 17:33         ` Manoj Iyer
  2011-01-13 17:55           ` Borislav Petkov
  0 siblings, 1 reply; 33+ messages in thread
From: Manoj Iyer @ 2011-01-13 17:33 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: Thomas Gleixner, Matthew Garrett, linux-kernel,
	Rafael J. Wysocki, Andreas Herrmann

Borislav,

Please see below lspci and dmesg output from AMD based ThinkPad Edge 11.

lspci
=====
00:00.0 Host bridge [0600]: Advanced Micro Devices [AMD] RS780 Host
Bridge Alternate [1022:9601]
	Subsystem: Lenovo Device [17aa:21ca]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort-
<TAbort- <MAbort+ >SERR- <PERR- INTx-
	Latency: 0
	Capabilities: [c4] HyperTransport: Slave or Primary Interface
		Command: BaseUnitID=0 UnitCnt=12 MastHost- DefDir- DUL-
		Link Control 0: CFlE- CST- CFE- <LkFail- Init+ EOC- TXO- <CRCErr=0
IsocEn- LSEn+ ExtCTL- 64b-
		Link Config 0: MLWI=16bit DwFcIn- MLWO=16bit DwFcOut- LWI=16bit
DwFcInEn- LWO=16bit DwFcOutEn-
		Link Control 1: CFlE- CST- CFE- <LkFail+ Init- EOC+ TXO+ <CRCErr=0
IsocEn- LSEn- ExtCTL- 64b-
		Link Config 1: MLWI=8bit DwFcIn- MLWO=8bit DwFcOut- LWI=8bit
DwFcInEn- LWO=8bit DwFcOutEn-
		Revision ID: 3.00
		Link Frequency 0: 1.0GHz
		Link Error 0: <Prot- <Ovfl- <EOC- CTLTm-
		Link Frequency Capability 0: 200MHz+ 300MHz- 400MHz+ 500MHz- 600MHz+
800MHz+ 1.0GHz+ 1.2GHz- 1.4GHz- 1.6GHz- Vend-
		Feature Capability: IsocFC- LDTSTOP+ CRCTM- ECTLT- 64bA- UIDRD-
		Link Frequency 1: 200MHz
		Link Error 1: <Prot- <Ovfl- <EOC- CTLTm-
		Link Frequency Capability 1: 200MHz- 300MHz- 400MHz- 500MHz- 600MHz-
800MHz- 1.0GHz- 1.2GHz- 1.4GHz- 1.6GHz- Vend-
		Error Handling: PFlE- OFlE- PFE- OFE- EOCFE- RFE- CRCFE- SERRFE- CF-
RE- PNFE- ONFE- EOCNFE- RNFE- CRCNFE- SERRNFE-
		Prefetchable memory behind bridge Upper: 00-00
		Bus Number: 00
	Capabilities: [54] HyperTransport: UnitID Clumping
	Capabilities: [40] HyperTransport: Retry Mode
	Capabilities: [9c] HyperTransport: #1a
	Capabilities: [f8] HyperTransport: #1c

00:01.0 PCI bridge [0604]: Advanced Micro Devices [AMD] RS780 PCI to
PCI bridge (int gfx) [1022:9602] (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort-
<TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 64
	Bus: primary=00, secondary=01, subordinate=01, sec-latency=64
	I/O behind bridge: 00009000-00009fff
	Memory behind bridge: d0400000-d05fffff
	Prefetchable memory behind bridge: 00000000c0000000-00000000cfffffff
	Secondary status: 66MHz+ FastB2B- ParErr- DEVSEL=medium >TAbort-
<TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA+ VGA+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [44] HyperTransport: MSI Mapping Enable+ Fixed+
	Capabilities: [b0] Subsystem: Advanced Micro Devices [AMD] RS780 PCI
to PCI bridge (int gfx) [1022:9602]
	Kernel modules: shpchp

00:04.0 PCI bridge [0604]: Advanced Micro Devices [AMD] RS780 PCI to
PCI bridge (PCIE port 0) [1022:9604] (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort-
<TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 32 bytes
	Bus: primary=00, secondary=02, subordinate=07, sec-latency=0
	I/O behind bridge: 0000a000-0000bfff
	Memory behind bridge: 80000000-800fffff
	Prefetchable memory behind bridge: 00000000d0000000-00000000d03fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort-
<TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [58] Express (v2) Root Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag+ RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+


dmesg
=======
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.35-24-generic-pae (buildd@platinum)
(gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5) )
#42sutton03-Ubuntu SMP Thu Dec 16 03:27:29 UTC 2010 (Ubuntu
2.6.35-24.42sutton03-generic-pae 2.6.35.8)
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009dc00 (usable)
[    0.000000]  BIOS-e820: 000000000009dc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000d0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000006fe8e000 (usable)
[    0.000000]  BIOS-e820: 000000006fe8e000 - 000000006fea0000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000006fea0000 - 000000006feb1000 (ACPI data)
[    0.000000]  BIOS-e820: 000000006feb1000 - 000000006feb3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000006feb3000 - 000000006feff000 (reserved)
[    0.000000]  BIOS-e820: 000000006ff00000 - 0000000080000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI present.
[    0.000000] e820 update range: 0000000000000000 - 0000000000001000
(usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x6fe8e max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-DFFFF write-back
[    0.000000]   E0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFFC0000000 write-back
[    0.000000]   1 base 000040000000 mask FFFFE0000000 write-back
[    0.000000]   2 base 000060000000 mask FFFFF0000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820 update range: 0000000000002000 - 0000000000010000
(usable) ==> (reserved)
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (reserved)
[    0.000000]  modified: 0000000000001000 - 0000000000002000 (usable)
[    0.000000]  modified: 0000000000002000 - 0000000000010000 (reserved)
[    0.000000]  modified: 0000000000010000 - 000000000009dc00 (usable)
[    0.000000]  modified: 000000000009dc00 - 00000000000a0000 (reserved)
[    0.000000]  modified: 00000000000d0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 000000006fe8e000 (usable)
[    0.000000]  modified: 000000006fe8e000 - 000000006fea0000 (ACPI NVS)
[    0.000000]  modified: 000000006fea0000 - 000000006feb1000 (ACPI data)
[    0.000000]  modified: 000000006feb1000 - 000000006feb3000 (ACPI NVS)
[    0.000000]  modified: 000000006feb3000 - 000000006feff000 (reserved)
[    0.000000]  modified: 000000006ff00000 - 0000000080000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 00000000fec10000 (reserved)
[    0.000000]  modified: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  modified: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] initial memory mapped : 0 - 00e00000
[    0.000000] found SMP MP-table at [c00f7970] f7970
[    0.000000] init_memory_mapping: 0000000000000000-0000000037bfe000
[    0.000000]  0000000000 - 0000200000 page 4k
[    0.000000]  0000200000 - 0037a00000 page 2M
[    0.000000]  0037a00000 - 0037bfe000 page 4k
[    0.000000] kernel direct mapping tables up to 37bfe000 @ 15000-1a000
[    0.000000] RAMDISK: 370bf000 - 37ff0000
[    0.000000] Allocated new RAMDISK: 00a05000 - 01935f93
[    0.000000] Move RAMDISK from 00000000370bf000 - 0000000037feff92
to 00a05000 - 01935f92
[    0.000000] ACPI: RSDP 000f78c0 00024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 6fea234c 00084 (v01 LENOVO TP-87    00001080
 LTP 00000000)
[    0.000000] ACPI: FACP 6feb0083 000F4 (v03 LENOVO TP-87    00001080
AMD  000F4240)
[    0.000000] ACPI: DSDT 6fea23d0 0DCB3 (v01 LENOVO TP-87    00001080
MSFT 03000001)
[    0.000000] ACPI: FACS 6feb2fc0 00040
[    0.000000] ACPI: TCPA 6feb01eb 00032 (v02 LENOVO TP-87    00001080
PTEC 00000000)
[    0.000000] ACPI: EINJ 6feb021d 001B0 (v01 LENOVO TP-87    00001080
PTL  00000001)
[    0.000000] ACPI: HEST 6feb03cd 002E4 (v01 LENOVO TP-87    00001080
PTL  00000001)
[    0.000000] ACPI: BERT 6feb06b1 00030 (v01 LENOVO TP-87    00001080
PTL  00000001)
[    0.000000] ACPI: SSDT 6feb06e1 000E1 (v01 LENOVO TP-87    00001080
INTL 20050624)
[    0.000000] ACPI: ERST 6feb07c2 00270 (v01 LENOVO TP-87    00001080
PTL  00000001)
[    0.000000] ACPI: SSDT 6feb0a32 00386 (v01 LENOVO TP-87    00001080
AMD  00000001)
[    0.000000] ACPI: APIC 6feb0db8 0005E (v01 LENOVO TP-87    00001080
 LTP 00000000)
[    0.000000] ACPI: MCFG 6feb0e16 0003C (v01 LENOVO TP-87    00001080
 LTP 00000000)
[    0.000000] ACPI: HPET 6feb0e52 00038 (v01 LENOVO TP-87    00001080
 LTP 00000001)
[    0.000000] ACPI: SLIC 6feb0e8a 00176 (v01 LENOVO TP-87    00001080
 LTP 00000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 898MB HIGHMEM available.
[    0.000000] 891MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 37bfe000
[    0.000000]   low ram: 0 - 37bfe000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000001 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x00037bfe
[    0.000000]   HighMem  0x00037bfe -> 0x0006fe8e
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000001 -> 0x00000002
[    0.000000]     0: 0x00000010 -> 0x0000009d
[    0.000000]     0: 0x00000100 -> 0x0006fe8e
[    0.000000] On node 0 totalpages: 458268
[    0.000000] free_area_init_node: node 0, pgdat c0840a00,
node_mem_map c1937020
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3950 pages, LIFO batch:0
[    0.000000]   Normal zone: 1752 pages used for memmap
[    0.000000]   Normal zone: 222502 pages, LIFO batch:31
[    0.000000]   HighMem zone: 1798 pages used for memmap
[    0.000000]   HighMem zone: 228234 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x8008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 low level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x43538210 base: 0xfed00000
[    0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] early_res array is doubled to 64 at [16000 - 167ff]
[    0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000010000
[    0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
[    0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d0000
[    0.000000] PM: Registered nosave memory: 00000000000d0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 80000000 (gap:
80000000:7ec00000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2
nr_node_ids:1
[    0.000000] PERCPU: Embedded 15 pages/cpu @c2800000 s39872 r0 d21568 u1048576
[    0.000000] pcpu-alloc: s39872 r0 d21568 u1048576 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.
Total pages: 454686
[    0.000000] Kernel command line:
BOOT_IMAGE=/boot/vmlinuz-2.6.35-24-generic-pae
root=UUID=92ad553f-5b69-41ed-a84b-04cbe048efbd ro quiet splash
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Enabling fast FPU save and restore... done.
[    0.000000] Enabling unmasked SIMD FPU exception support... done.
[    0.000000] Initializing CPU#0
[    0.000000] allocated 9167620 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't
want memory cgroups
[    0.000000] Subtract (52 early reservations)
[    0.000000]   #1 [0000001000 - 0000002000]   EX TRAMPOLINE
[    0.000000]   #2 [0000100000 - 00009fc65c]   TEXT DATA BSS
[    0.000000]   #3 [00009fd000 - 0000a04130]             BRK
[    0.000000]   #4 [00000f7980 - 0000100000]   BIOS reserved
[    0.000000]   #5 [00000f7970 - 00000f7980]    MP-table mpf
[    0.000000]   #6 [000009dc00 - 000009e071]   BIOS reserved
[    0.000000]   #7 [000009e1bd - 00000f7970]   BIOS reserved
[    0.000000]   #8 [000009e071 - 000009e1bd]    MP-table mpc
[    0.000000]   #9 [0000010000 - 0000011000]      TRAMPOLINE
[    0.000000]   #10 [0000011000 - 0000015000]     ACPI WAKEUP
[    0.000000]   #11 [0000015000 - 0000016000]         PGTABLE
[    0.000000]   #12 [0000a05000 - 0001936000]     NEW RAMDISK
[    0.000000]   #13 [0001936000 - 0001937000]         BOOTMEM
[    0.000000]   #14 [0001937000 - 0002737000]         BOOTMEM
[    0.000000]   #15 [0002737000 - 0002737004]         BOOTMEM
[    0.000000]   #16 [0002737040 - 0002737100]         BOOTMEM
[    0.000000]   #17 [0002737100 - 00027371a8]         BOOTMEM
[    0.000000]   #18 [00027371c0 - 000273a1c0]         BOOTMEM
[    0.000000]   #19 [000273a1c0 - 000273a26c]         BOOTMEM
[    0.000000]   #20 [000273a280 - 000273d280]         BOOTMEM
[    0.000000]   #21 [000273d280 - 000273d2ad]         BOOTMEM
[    0.000000]   #22 [000273d2c0 - 000273d2ef]         BOOTMEM
[    0.000000]   #23 [000273d300 - 000273d51c]         BOOTMEM
[    0.000000]   #24 [000273d540 - 000273d580]         BOOTMEM
[    0.000000]   #25 [000273d580 - 000273d5c0]         BOOTMEM
[    0.000000]   #26 [000273d5c0 - 000273d600]         BOOTMEM
[    0.000000]   #27 [000273d600 - 000273d640]         BOOTMEM
[    0.000000]   #28 [000273d640 - 000273d680]         BOOTMEM
[    0.000000]   #29 [000273d680 - 000273d6c0]         BOOTMEM
[    0.000000]   #30 [000273d6c0 - 000273d700]         BOOTMEM
[    0.000000]   #31 [000273d700 - 000273d740]         BOOTMEM
[    0.000000]   #32 [000273d740 - 000273d780]         BOOTMEM
[    0.000000]   #33 [000273d780 - 000273d7c0]         BOOTMEM
[    0.000000]   #34 [000273d7c0 - 000273d800]         BOOTMEM
[    0.000000]   #35 [000273d800 - 000273d840]         BOOTMEM
[    0.000000]   #36 [000273d840 - 000273d850]         BOOTMEM
[    0.000000]   #37 [000273d880 - 000273d890]         BOOTMEM
[    0.000000]   #38 [000273d8c0 - 000273d92e]         BOOTMEM
[    0.000000]   #39 [000273d940 - 000273d9ae]         BOOTMEM
[    0.000000]   #40 [0002800000 - 000280f000]         BOOTMEM
[    0.000000]   #41 [0002900000 - 000290f000]         BOOTMEM
[    0.000000]   #42 [000273f9c0 - 000273f9c4]         BOOTMEM
[    0.000000]   #43 [000273fa00 - 000273fa04]         BOOTMEM
[    0.000000]   #44 [000273fa40 - 000273fa48]         BOOTMEM
[    0.000000]   #45 [000273fa80 - 000273fa88]         BOOTMEM
[    0.000000]   #46 [000273fac0 - 000273fb60]         BOOTMEM
[    0.000000]   #47 [000273fb80 - 000273fbc8]         BOOTMEM
[    0.000000]   #48 [000273fc00 - 0002743c00]         BOOTMEM
[    0.000000]   #49 [0002743c00 - 00027c3c00]         BOOTMEM
[    0.000000]   #50 [000280f000 - 000284f000]         BOOTMEM
[    0.000000]   #51 [000290f000 - 00031cd304]         BOOTMEM
[    0.000000] Initializing HighMem for node 0 (00037bfe:0006fe8e)
[    0.000000] Memory: 1784020k/1833528k available (5088k kernel code,
49052k reserved, 2437k data, 704k init, 920128k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff16000 - 0xfffff000   ( 932 kB)
[    0.000000]     pkmap   : 0xffc00000 - 0xffe00000   (2048 kB)
[    0.000000]     vmalloc : 0xf83fe000 - 0xffbfe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf7bfe000   ( 891 MB)
[    0.000000]       .init : 0xc085a000 - 0xc090a000   ( 704 kB)
[    0.000000]       .data : 0xc05f80da - 0xc0859648   (2437 kB)
[    0.000000]       .text : 0xc0100000 - 0xc05f80da   (5088 kB)
[    0.000000] Checking if this processor honours the WP bit even in
supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0,
CPUs=2, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU-based detection of stalled CPUs is disabled.
[    0.000000] 	Verbose stalled-CPUs detection is disabled.
[    0.000000] NR_IRQS:2304 nr_irqs:512
[    0.000000] Extended CMOS year: 2000
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1296.592 MHz processor.
[    0.004006] Calibrating delay loop (skipped), value calculated
using timer frequency.. 2593.18 BogoMIPS (lpj=5186368)
[    0.004014] pid_max: default: 32768 minimum: 301
[    0.004038] Security Framework initialized
[    0.004060] AppArmor: AppArmor initialized
[    0.004063] Yama: becoming mindful.
[    0.004135] Mount-cache hash table entries: 512
[    0.004285] Initializing cgroup subsys ns
[    0.004290] Initializing cgroup subsys cpuacct
[    0.004296] Initializing cgroup subsys memory
[    0.004307] Initializing cgroup subsys devices
[    0.004311] Initializing cgroup subsys freezer
[    0.004314] Initializing cgroup subsys net_cls
[    0.004345] CPU: Physical Processor ID: 0
[    0.004348] CPU: Processor Core ID: 0
[    0.004352] mce: CPU supports 6 MCE banks
[    0.004366] using C1E aware idle routine
[    0.004375] Performance Events: AMD PMU driver.
[    0.004381] ... version:                0
[    0.004384] ... bit width:              48
[    0.004386] ... generic registers:      4
[    0.004389] ... value mask:             0000ffffffffffff
[    0.004392] ... max period:             00007fffffffffff
[    0.004395] ... fixed-purpose events:   0
[    0.004398] ... event mask:             000000000000000f
[    0.011320] ACPI: Core revision 20100428
[    0.032031] ftrace: converting mcount calls to 0f 1f 44 00 00
[    0.032044] ftrace: allocating 22392 entries in 44 pages
[    0.036105] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.036459] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.078719] CPU0: AMD Athlon(tm) II Neo K325 Dual-Core Processor stepping 03
[    0.080000] Booting Node   0, Processors  #1 Ok.
[    0.008000] Initializing CPU#1
[    0.168013] Brought up 2 CPUs
[    0.168018] Total of 2 processors activated (5186.73 BogoMIPS).
[    0.168030] System has AMD C1E enabled
[    0.168051] Switch to broadcast mode on CPU1
[    0.168408] Switch to broadcast mode on CPU0
[    0.168408] devtmpfs: initialized
[    0.169521] regulator: core version 0.5
[    0.169586] Time:  3:11:58  Date: 01/07/11
[    0.169644] NET: Registered protocol family 16
[    0.169706] Trying to unpack rootfs image as initramfs...
[    0.169819] EISA bus registered
[    0.169827] node 0 link 0: io port [1000, ffff]
[    0.169833] TOM: 0000000080000000 aka 2048M
[    0.169836] Fam 10h mmconf [e0000000, efffffff]
[    0.169840] node 0 link 0: mmio [80000000, bfffffff]
[    0.169845] node 0 link 0: mmio [c0000000, cfffffff]
[    0.169850] node 0 link 0: mmio [d0000000, d03fffff]
[    0.169854] node 0 link 0: mmio [d0400000, d05fffff]
[    0.169859] node 0 link 0: mmio [d0600000, dfffffff]
[    0.169863] node 0 link 0: mmio [e0000000, efffffff] ==> none
[    0.169868] node 0 link 0: mmio [f0000000, febfffff]
[    0.169873] node 0 link 0: mmio [fec00000, ffffffff]
[    0.169877] bus: [00, 1f] on node 0 link 0
[    0.169882] bus: 00 index 0 [io  0x0000-0xffff]
[    0.169886] bus: 00 index 1 [mem 0x80000000-0xdfffffff]
[    0.169890] bus: 00 index 2 [mem 0xf0000000-0xfcffffffff]
[    0.169903] ACPI: bus type pci registered
[    0.170036] PCI: MMCONFIG for domain 0000 [bus 00-08] at [mem
0xe0000000-0xe08fffff] (base 0xe0000000)
[    0.170040] PCI: not using MMCONFIG
[    0.170395] PCI: PCI BIOS revision 2.10 entry at 0xfdc8a, last bus=9
[    0.170398] PCI: Using configuration type 1 for base access
[    0.170400] PCI: Using configuration type 1 for extended access
[    0.170426] mtrr: your CPUs had inconsistent fixed MTRR settings
[    0.170428] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.170431] mtrr: probably your BIOS does not setup all CPUs.
[    0.170433] mtrr: corrected configuration.
[    0.176221] bio: create slab <bio-0> at 0
[    0.179314] ACPI: EC: Look up EC in DSDT
[    0.179725] \_SB_:_OSC evaluation returned wrong type
[    0.179728] _OSC request data:1 7
[    0.188000] ACPI: BIOS _OSI(Linux) query ignored
[    0.188000] ACPI: OEMN 6feb1ab3 00131 (v01 AMD    NAHP     00000001
MSFT 03000001)
[    0.188000] ACPI: Enabled 1 new runtime GPEs, added 0 new wakeup GPEs
[    0.188000] ACPI: Dynamic OEM Table Load:
[    0.188000] ACPI: OEMN (null) 00131 (v01 AMD    NAHP     00000001
MSFT 03000001)
[    0.192266] ACPI: Interpreter enabled
[    0.192275] ACPI: (supports S0 S3 S4 S5)
[    0.192310] ACPI: Using IOAPIC for interrupt routing
[    0.192914] PCI: MMCONFIG for domain 0000 [bus 00-08] at [mem
0xe0000000-0xe08fffff] (base 0xe0000000)
[    0.193347] [Firmware Bug]: PCI: MMCONFIG at [mem
0xe0000000-0xe08fffff] not reserved in ACPI motherboard resources
[    0.193347] PCI: not using MMCONFIG
[    0.193347] [Firmware Bug]: ACPI: ACPI brightness control misses
_BQC function
[    0.193462] [Firmware Bug]: ACPI: ACPI brightness control misses
_BQC function
[    0.200143] [Firmware Bug]: ACPI: ACPI brightness control misses
_BQC function
[    0.211970] ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
[    0.211970] ACPI: No dock devices found.
[    0.211970] PCI: Using host bridge windows from ACPI; if necessary,
use "pci=nocrs" and report a bug
[    0.211970] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.215620] pci_root PNP0A08:00: host bridge window [mem
0x000a0000-0x000bffff]
[    0.215627] pci_root PNP0A08:00: host bridge window [mem
0x80000000-0xdfffffff]
[    0.215631] pci_root PNP0A08:00: host bridge window [mem
0xf0000000-0xffffffff]
[    0.215636] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.215640] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    0.215840] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
[    0.215844] pci 0000:00:04.0: PME# disabled
[    0.215902] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
[    0.215906] pci 0000:00:05.0: PME# disabled
[    0.216018] pci 0000:00:11.0: reg 10: [io  0x8440-0x8447]
[    0.216027] pci 0000:00:11.0: reg 14: [io  0x8430-0x8433]
[    0.216036] pci 0000:00:11.0: reg 18: [io  0x8420-0x8427]
[    0.216045] pci 0000:00:11.0: reg 1c: [io  0x8410-0x8413]
[    0.216053] pci 0000:00:11.0: reg 20: [io  0x8400-0x840f]
[    0.216063] pci 0000:00:11.0: reg 24: [mem 0xd0906800-0xd0906bff]
[    0.216136] pci 0000:00:12.0: reg 10: [mem 0xd0904000-0xd0904fff]
[    0.216214] pci 0000:00:12.2: reg 10: [mem 0xd0906000-0xd09060ff]
[    0.216273] pci 0000:00:12.2: supports D1 D2
[    0.216276] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.216282] pci 0000:00:12.2: PME# disabled
[    0.216318] pci 0000:00:13.0: reg 10: [mem 0xd0905000-0xd0905fff]
[    0.216396] pci 0000:00:13.2: reg 10: [mem 0xd0906400-0xd09064ff]
[    0.216456] pci 0000:00:13.2: supports D1 D2
[    0.216459] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.216465] pci 0000:00:13.2: PME# disabled
[    0.216573] pci 0000:00:14.2: reg 10: [mem 0xd0900000-0xd0903fff 64bit]
[    0.216623] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.216629] pci 0000:00:14.2: PME# disabled
[    0.216908] pci 0000:01:05.0: reg 10: [mem 0xc0000000-0xcfffffff pref]
[    0.216914] pci 0000:01:05.0: reg 14: [io  0x9000-0x90ff]
[    0.216921] pci 0000:01:05.0: reg 18: [mem 0xd0500000-0xd050ffff]
[    0.216932] pci 0000:01:05.0: reg 24: [mem 0xd0400000-0xd04fffff]
[    0.216952] pci 0000:01:05.0: supports D1 D2
[    0.216976] pci 0000:01:05.1: reg 10: [mem 0xd0510000-0xd0513fff]
[    0.217008] pci 0000:01:05.1: supports D1 D2
[    0.217060] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.217066] pci 0000:00:01.0:   bridge window [io  0x9000-0x9fff]
[    0.217072] pci 0000:00:01.0:   bridge window [mem 0xd0400000-0xd05fffff]
[    0.217078] pci 0000:00:01.0:   bridge window [mem
0xc0000000-0xcfffffff 64bit pref]
[    0.217144] pci 0000:02:00.0: reg 10: [io  0xbc00-0xbcff]
[    0.217164] pci 0000:02:00.0: reg 18: [mem 0xd0200000-0xd0200fff 64bit pref]
[    0.217179] pci 0000:02:00.0: reg 20: [mem 0xd0000000-0xd0003fff 64bit pref]
[    0.217188] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[    0.217226] pci 0000:02:00.0: supports D1 D2
[    0.217229] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.217235] pci 0000:02:00.0: PME# disabled
[    0.224044] pci 0000:00:04.0: PCI bridge to [bus 02-07]
[    0.224055] pci 0000:00:04.0:   bridge window [io  0xa000-0xbfff]
[    0.224061] pci 0000:00:04.0:   bridge window [mem
0xfff00000-0x000fffff] (disabled)
[    0.224069] pci 0000:00:04.0:   bridge window [mem
0xd0000000-0xd03fffff 64bit pref]
[    0.224150] pci 0000:08:00.0: reg 10: [io  0xc000-0xc0ff]
[    0.224174] pci 0000:08:00.0: reg 18: [mem 0xd0600000-0xd0603fff 64bit]
[    0.224236] pci 0000:08:00.0: supports D1 D2
[    0.224239] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.224247] pci 0000:08:00.0: PME# disabled
[    0.232044] pci 0000:00:05.0: PCI bridge to [bus 08-08]
[    0.232054] pci 0000:00:05.0:   bridge window [io  0xc000-0xcfff]
[    0.232060] pci 0000:00:05.0:   bridge window [mem 0xd0600000-0xd06fffff]
[    0.232066] pci 0000:00:05.0:   bridge window [mem
0xfff00000-0x000fffff pref] (disabled)
[    0.232150] pci 0000:00:14.4: PCI bridge to [bus 09-09] (subtractive decode)
[    0.232156] pci 0000:00:14.4:   bridge window [io  0xf000-0x0000] (disabled)
[    0.232163] pci 0000:00:14.4:   bridge window [mem
0xfff00000-0x000fffff] (disabled)
[    0.232169] pci 0000:00:14.4:   bridge window [mem
0xfff00000-0x000fffff pref] (disabled)
[    0.232174] pci 0000:00:14.4:   bridge window [mem
0x000a0000-0x000bffff] (subtractive decode)
[    0.232179] pci 0000:00:14.4:   bridge window [mem
0x80000000-0xdfffffff] (subtractive decode)
[    0.232183] pci 0000:00:14.4:   bridge window [mem
0xf0000000-0xffffffff] (subtractive decode)
[    0.232187] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7]
(subtractive decode)
[    0.232192] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff]
(subtractive decode)
[    0.232211] pci_bus 0000:00: on NUMA node 0
[    0.232223] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.232605] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB4_._PRT]
[    0.232734] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB5_._PRT]
[    0.232929] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
[    0.233082] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
[    0.240060] ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11) *0
[    0.240402] ACPI: PCI Interrupt Link [LNKB] (IRQs 10 11) *0
[    0.240726] ACPI: PCI Interrupt Link [LNKC] (IRQs 10 11) *0
[    0.241081] ACPI: PCI Interrupt Link [LNKD] (IRQs 10 11) *0
[    0.241400] ACPI: PCI Interrupt Link [LNKE] (IRQs 10 11) *0
[    0.241619] ACPI: PCI Interrupt Link [LNKF] (IRQs 10 11) *0
[    0.241844] ACPI: PCI Interrupt Link [LNKG] (IRQs 10 11) *0
[    0.242070] ACPI: PCI Interrupt Link [LNKH] (IRQs 10 11) *0
[    0.242253] HEST: HEST table parsing is initialized.
[    0.242372] vgaarb: device added:
PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    0.242378] vgaarb: loaded
[    0.242577] SCSI subsystem initialized
[    0.244000] libata version 3.00 loaded.
[    0.244000] usbcore: registered new interface driver usbfs
[    0.244000] usbcore: registered new interface driver hub
[    0.244000] usbcore: registered new device driver usb
[    0.244000] ACPI: WMI: Mapper loaded
[    0.244000] PCI: Using ACPI for IRQ routing
[    0.244000] PCI: pci_cache_line_size set to 64 bytes
[    0.244000] reserve RAM buffer: 0000000000002000 - 000000000000ffff
[    0.244000] reserve RAM buffer: 000000000009dc00 - 000000000009ffff
[    0.244000] reserve RAM buffer: 000000006fe8e000 - 000000006fffffff
[    0.244000] NetLabel: Initializing
[    0.244000] NetLabel:  domain hash size = 128
[    0.244000] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.244000] NetLabel:  unlabeled traffic allowed by default
[    0.244000] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.244000] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.245044] Switching to clocksource tsc
[    0.260247] AppArmor: AppArmor Filesystem Enabled
[    0.260269] pnp: PnP ACPI init
[    0.260294] ACPI: bus type pnp registered
[    0.267443] pnp: PnP ACPI: found 10 devices
[    0.267449] ACPI: ACPI bus type pnp unregistered
[    0.267454] PnPBIOS: Disabled by ACPI PNP
[    0.267483] system 00:01: [io  0x0f50-0x0f51] has been reserved
[    0.267490] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.267495] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.267510] system 00:08: [io  0x0220-0x022f] has been reserved
[    0.267515] system 00:08: [io  0x040b] has been reserved
[    0.267519] system 00:08: [io  0x04d0-0x04d1] has been reserved
[    0.267523] system 00:08: [io  0x04d6] has been reserved
[    0.267527] system 00:08: [io  0x0530-0x0537] has been reserved
[    0.267532] system 00:08: [io  0x0c00-0x0c01] has been reserved
[    0.267536] system 00:08: [io  0x0c14] has been reserved
[    0.267540] system 00:08: [io  0x0c50-0x0c52] has been reserved
[    0.267544] system 00:08: [io  0x0c6c] has been reserved
[    0.267547] system 00:08: [io  0x0c6f] has been reserved
[    0.267551] system 00:08: [io  0x0cd0-0x0cd1] has been reserved
[    0.267556] system 00:08: [io  0x0cd2-0x0cd3] has been reserved
[    0.267560] system 00:08: [io  0x0cd4-0x0cd5] has been reserved
[    0.267564] system 00:08: [io  0x0cd6-0x0cd7] has been reserved
[    0.267568] system 00:08: [io  0x0cd8-0x0cdf] has been reserved
[    0.267573] system 00:08: [io  0x8000-0x805f] has been reserved
[    0.267577] system 00:08: [io  0x8100-0x81ff window] has been reserved
[    0.267582] system 00:08: [io  0x8200-0x82ff window] has been reserved
[    0.267586] system 00:08: [io  0x0f40-0x0f47] has been reserved
[    0.267590] system 00:08: [io  0x087f] has been reserved
[    0.267600] system 00:09: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.267605] system 00:09: [mem 0xffe00000-0xffffffff] could not be reserved
[    0.267610] system 00:09: [mem 0xfec10000-0xfec1001f] has been reserved
[    0.267614] system 00:09: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.267619] system 00:09: [mem 0xfed61000-0xfed613ff] has been reserved
[    0.267624] system 00:09: [mem 0xfed80000-0xfed80fff] has been reserved
[    0.267629] system 00:09: [mem 0xfffffd00-0x10001fcff] could not be reserved
[    0.304254] pci 0000:00:04.0: BAR 14: assigned [mem 0x80000000-0x800fffff]
[    0.304260] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.304265] pci 0000:00:01.0:   bridge window [io  0x9000-0x9fff]
[    0.304271] pci 0000:00:01.0:   bridge window [mem 0xd0400000-0xd05fffff]
[    0.304276] pci 0000:00:01.0:   bridge window [mem
0xc0000000-0xcfffffff 64bit pref]
[    0.304284] pci 0000:02:00.0: BAR 6: assigned [mem
0xd0020000-0xd003ffff pref]
[    0.304289] pci 0000:00:04.0: PCI bridge to [bus 02-07]
[    0.304293] pci 0000:00:04.0:   bridge window [io  0xa000-0xbfff]
[    0.304298] pci 0000:00:04.0:   bridge window [mem 0x80000000-0x800fffff]
[    0.304304] pci 0000:00:04.0:   bridge window [mem
0xd0000000-0xd03fffff 64bit pref]
[    0.304310] pci 0000:00:05.0: PCI bridge to [bus 08-08]
[    0.304315] pci 0000:00:05.0:   bridge window [io  0xc000-0xcfff]
[    0.304320] pci 0000:00:05.0:   bridge window [mem 0xd0600000-0xd06fffff]
[    0.304324] pci 0000:00:05.0:   bridge window [mem pref disabled]
[    0.304331] pci 0000:00:14.4: PCI bridge to [bus 09-09]
[    0.304334] pci 0000:00:14.4:   bridge window [io  disabled]
[    0.304340] pci 0000:00:14.4:   bridge window [mem disabled]
[    0.304346] pci 0000:00:14.4:   bridge window [mem pref disabled]
[    0.304368]   alloc irq_desc for 16 on node -1
[    0.304371]   alloc kstat_irqs on node -1
[    0.304381] pci 0000:00:04.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.304386] pci 0000:00:04.0: setting latency timer to 64
[    0.304394]   alloc irq_desc for 17 on node -1
[    0.304397]   alloc kstat_irqs on node -1
[    0.304403] pci 0000:00:05.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    0.304408] pci 0000:00:05.0: setting latency timer to 64
[    0.304419] pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff]
[    0.304423] pci_bus 0000:00: resource 5 [mem 0x80000000-0xdfffffff]
[    0.304427] pci_bus 0000:00: resource 6 [mem 0xf0000000-0xffffffff]
[    0.304431] pci_bus 0000:00: resource 7 [io  0x0000-0x0cf7]
[    0.304434] pci_bus 0000:00: resource 8 [io  0x0d00-0xffff]
[    0.304438] pci_bus 0000:01: resource 0 [io  0x9000-0x9fff]
[    0.304442] pci_bus 0000:01: resource 1 [mem 0xd0400000-0xd05fffff]
[    0.304446] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff
64bit pref]
[    0.304451] pci_bus 0000:02: resource 0 [io  0xa000-0xbfff]
[    0.304455] pci_bus 0000:02: resource 1 [mem 0x80000000-0x800fffff]
[    0.304459] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd03fffff
64bit pref]
[    0.304463] pci_bus 0000:08: resource 0 [io  0xc000-0xcfff]
[    0.304466] pci_bus 0000:08: resource 1 [mem 0xd0600000-0xd06fffff]
[    0.304471] pci_bus 0000:09: resource 4 [mem 0x000a0000-0x000bffff]
[    0.304475] pci_bus 0000:09: resource 5 [mem 0x80000000-0xdfffffff]
[    0.304479] pci_bus 0000:09: resource 6 [mem 0xf0000000-0xffffffff]
[    0.304485] pci_bus 0000:09: resource 7 [io  0x0000-0x0cf7]
[    0.304489] pci_bus 0000:09: resource 8 [io  0x0d00-0xffff]
[    0.304538] NET: Registered protocol family 2
[    0.304621] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.304935] TCP established hash table entries: 131072 (order: 8,
1048576 bytes)
[    0.305756] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.306221] TCP: Hash tables configured (established 131072 bind 65536)
[    0.306225] TCP reno registered
[    0.306230] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.306245] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.306366] NET: Registered protocol family 1
[    0.306387] pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
[    0.341965] pci 0000:01:05.0: Boot video device
[    0.341983] PCI: CLS 32 bytes, default 64
[    0.342278] cpufreq-nforce2: No nForce2 chipset.
[    0.342315] Scanning for low memory corruption every 60 seconds
[    0.342492] audit: initializing netlink socket (disabled)
[    0.342508] type=2000 audit(1294369916.340:1): initialized
[    0.358258] highmem bounce pool size: 64 pages
[    0.358264] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.360125] VFS: Disk quotas dquot_6.5.2
[    0.360207] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.360990] fuse init (API version 7.14)
[    0.361108] msgmni has been set to 1687
[    0.361561] Block layer SCSI generic (bsg) driver version 0.4
loaded (major 253)
[    0.361566] io scheduler noop registered
[    0.361569] io scheduler deadline registered
[    0.361589] io scheduler cfq registered (default)
[    0.361734] pcieport 0000:00:04.0: setting latency timer to 64
[    0.361768]   alloc irq_desc for 40 on node -1
[    0.361771]   alloc kstat_irqs on node -1
[    0.361782] pcieport 0000:00:04.0: irq 40 for MSI/MSI-X
[    0.361870] pcieport 0000:00:05.0: setting latency timer to 64
[    0.361900]   alloc irq_desc for 41 on node -1
[    0.361902]   alloc kstat_irqs on node -1
[    0.361909] pcieport 0000:00:05.0: irq 41 for MSI/MSI-X
[    0.362013] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.362041] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.363676] ACPI: AC Adapter [ACAD] (on-line)
[    0.363770] input: Power Button as
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.363777] ACPI: Power Button [PWRB]
[    0.363859] input: Lid Switch as
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
[    0.364372] ACPI: Lid Switch [LID]
[    0.364465] input: Power Button as
/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.364472] ACPI: Power Button [PWRF]
[    0.364792] ACPI: acpi_idle registered with cpuidle
[    0.364829] ACPI: processor limited to max C-state 1
[    0.370190] thermal LNXTHERM:01: registered as thermal_zone0
[    0.370206] ACPI: Thermal Zone [TZ00] (41 C)
[    0.370412] [Firmware Bug]: ERST: ERST table is invalid
[    0.370642] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.372489] brd: module loaded
[    0.373169] loop: module loaded
[    0.373831] Fixed MDIO Bus: probed
[    0.373891] PPP generic driver version 2.4.2
[    0.373934] tun: Universal TUN/TAP device driver, 1.6
[    0.373936] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.374041] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.374106] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.374131] ehci_hcd 0000:00:12.2: EHCI Host Controller
[    0.374173] ehci_hcd 0000:00:12.2: new USB bus registered, assigned
bus number 1
[    0.374215] ehci_hcd 0000:00:12.2: debug port 1
[    0.374245] ehci_hcd 0000:00:12.2: irq 17, io mem 0xd0906000
[    0.374371] isapnp: Scanning for PnP cards...
[    0.428833] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    0.429010] hub 1-0:1.0: USB hub found
[    0.429017] hub 1-0:1.0: 5 ports detected
[    0.429135] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.429149] ehci_hcd 0000:00:13.2: EHCI Host Controller
[    0.429192] ehci_hcd 0000:00:13.2: new USB bus registered, assigned
bus number 2
[    0.429228] ehci_hcd 0000:00:13.2: debug port 1
[    0.429242] ehci_hcd 0000:00:13.2: irq 17, io mem 0xd0906400
[    0.478125] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    0.478286] hub 2-0:1.0: USB hub found
[    0.478291] hub 2-0:1.0: 5 ports detected
[    0.478383] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.478424]   alloc irq_desc for 18 on node -1
[    0.478427]   alloc kstat_irqs on node -1
[    0.478436] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.478449] ohci_hcd 0000:00:12.0: OHCI Host Controller
[    0.478500] ohci_hcd 0000:00:12.0: new USB bus registered, assigned
bus number 3
[    0.478536] ohci_hcd 0000:00:12.0: irq 18, io mem 0xd0904000
[    0.580378] hub 3-0:1.0: USB hub found
[    0.580390] hub 3-0:1.0: 5 ports detected
[    0.580469] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.580482] ohci_hcd 0000:00:13.0: OHCI Host Controller
[    0.580523] ohci_hcd 0000:00:13.0: new USB bus registered, assigned
bus number 4
[    0.580551] ohci_hcd 0000:00:13.0: irq 18, io mem 0xd0905000
[    0.675992] hub 4-0:1.0: USB hub found
[    0.676004] hub 4-0:1.0: 5 ports detected
[    0.676088] uhci_hcd: USB Universal Host Controller Interface driver
[    0.676189] PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at
0x60,0x64 irq 1,12
[    0.697065] i8042.c: Detected active multiplexing controller, rev 1.1.
[    0.702697] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.702706] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    0.702742] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    0.702773] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    0.702804] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    0.702957] mice: PS/2 mouse device common for all mice
[    0.703167] rtc_cmos 00:04: RTC can wake from S4
[    0.703212] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    0.703246] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.703383] device-mapper: uevent: version 1.0.3
[    0.710195] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05)
initialised: dm-devel@redhat.com
[    0.794534] isapnp: No Plug & Play device found
[    0.794680] device-mapper: multipath: version 1.1.1 loaded
[    0.794685] device-mapper: multipath round-robin: version 1.0.0 loaded
[    0.794841] EISA: Probing bus 0 at eisa.0
[    0.794844] EISA: Cannot allocate resource for mainboard
[    0.794848] Cannot allocate resource for EISA slot 1
[    0.794851] Cannot allocate resource for EISA slot 2
[    0.794853] Cannot allocate resource for EISA slot 3
[    0.794856] Cannot allocate resource for EISA slot 4
[    0.794859] Cannot allocate resource for EISA slot 5
[    0.794862] Cannot allocate resource for EISA slot 6
[    0.794864] Cannot allocate resource for EISA slot 7
[    0.794867] Cannot allocate resource for EISA slot 8
[    0.794870] EISA: Detected 0 cards.
[    0.794961] cpuidle: using governor ladder
[    0.794964] cpuidle: using governor menu
[    0.795399] TCP cubic registered
[    0.795574] NET: Registered protocol family 10
[    0.796116] lo: Disabled Privacy Extensions
[    0.796453] NET: Registered protocol family 17
[    0.796487] powernow-k8: Found 1 AMD Athlon(tm) II Neo K325
Dual-Core Processor (2 cpu cores) (version 2.20.00)
[    0.796536] powernow-k8:    0 : pstate 0 (1300 MHz)
[    0.796539] powernow-k8:    1 : pstate 1 (1100 MHz)
[    0.796542] powernow-k8:    2 : pstate 2 (800 MHz)
[    0.796861] Using IPI No-Shortcut mode
[    0.796988] PM: Resume from disk failed.
[    0.797010] registered taskstats version 1
[    0.797357]   Magic number: 11:424:158
[    0.797407] wmi ABBC0F40-8EA1-11D1-00A0-C90629100000: hash matches
[    0.797427] acpi device:25: hash matches
[    0.797479] rtc_cmos 00:04: setting system clock to 2011-01-07
03:11:59 UTC (1294369919)
[    0.797484] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.797487] EDD information not available.
[    0.817858] input: AT Translated Set 2 keyboard as
/devices/platform/i8042/serio0/input/input3
[    0.829968] Freeing initrd memory: 15556k freed
[    0.839686] Freeing unused kernel memory: 704k freed
[    0.840412] Write protecting the kernel text: 5092k
[    0.840543] Write protecting the kernel read-only data: 2016k
[    0.853188] ACPI: Battery Slot [BAT1] (battery present)
[    0.853979] usb 1-2: new high speed USB device using ehci_hcd and address 2
[    0.877010] udev[78]: starting version 163
[    1.077638] [Firmware Bug]: ACPI: ACPI brightness control misses
_BQC function
[    1.079294] acpi device:30: registered as cooling_device2
[    1.079513] input: Video Bus as
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:2f/LNXVIDEO:02/input/input4
[    1.079587] ACPI: Video Device [VGA2] (multi-head: yes  rom: no  post: no)
[    1.090750] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    1.090782] r8169 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.090842] r8169 0000:02:00.0: setting latency timer to 64
[    1.090885]   alloc irq_desc for 42 on node -1
[    1.090889]   alloc kstat_irqs on node -1
[    1.090906] r8169 0000:02:00.0: irq 42 for MSI/MSI-X
[    1.091723] r8169 0000:02:00.0: eth0: RTL8168d/8111d at 0xf8524000,
60:eb:69:03:1e:9a, XID 083000c0 IRQ 42
[    1.126040] ahci 0000:00:11.0: version 3.0
[    1.126068]   alloc irq_desc for 19 on node -1
[    1.126072]   alloc kstat_irqs on node -1
[    1.126085] ahci 0000:00:11.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[    1.126143]   alloc irq_desc for 43 on node -1
[    1.126146]   alloc kstat_irqs on node -1
[    1.126161] ahci 0000:00:11.0: irq 43 for MSI/MSI-X
[    1.126246] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 2 ports 3
Gbps 0x3 impl SATA mode
[    1.126253] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led
clo pmp pio slum part sxs
[    1.126885] Initializing USB Mass Storage driver...
[    1.126971] scsi0 : ahci
[    1.127243] scsi2 : ahci
[    1.127500] ata1: SATA max UDMA/133 abar m1024@0xd0906800 port
0xd0906900 irq 43
[    1.127506] ata2: SATA max UDMA/133 abar m1024@0xd0906800 port
0xd0906980 irq 43
[    1.127886] scsi1 : usb-storage 1-2:1.0
[    1.128065] usbcore: registered new interface driver usb-storage
[    1.128069] USB Mass Storage support registered.
[    1.139408] Linux agpgart interface v0.103
[    1.240100] usb 1-5: new high speed USB device using ehci_hcd and address 4
[    1.374185] usb 1-5: config 1 has an invalid interface number: 1 but max is 0
[    1.374193] usb 1-5: config 1 has no interface number 0
[    1.448122] ata2: SATA link down (SStatus 0 SControl 300)
[    1.620135] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.621298] ata1.00: ATA-8: HITACHI HTS545025B9A300, PB2ZC61H, max UDMA/100
[    1.621306] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.622715] ata1.00: configured for UDMA/100
[    1.637398] scsi 0:0:0:0: Direct-Access     ATA      HITACHI
HTS54502 PB2Z PQ: 0 ANSI: 5
[    1.637686] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.637778] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks:
(250 GB/232 GiB)
[    1.637922] sd 0:0:0:0: [sda] Write Protect is off
[    1.637928] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.637987] sd 0:0:0:0: [sda] Write cache: enabled, read cache:
enabled, doesn't support DPO or FUA
[    1.638866]  sda:
[    1.644127] usb 3-4: new full speed USB device using ohci_hcd and address 2
[    1.660163]  sda1 sda2 < sda5 >
[    1.688709] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.726148] [drm] Initialized drm 1.1.0 20060810
[    1.789898] [drm] radeon defaulting to kernel modesetting.
[    1.789904] [drm] radeon kernel modesetting enabled.
[    1.790033] radeon 0000:01:05.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    1.790041] radeon 0000:01:05.0: setting latency timer to 64
[    1.792820] [drm] initializing kernel modesetting (RS880 0x1002:0x9712).
[    1.792989] [drm] register mmio base: 0xD0500000
[    1.792993] [drm] register mmio size: 65536
[    1.793200] ATOM BIOS: Lenovo_PS2A
[    1.793228] [drm] Clocks initialized !
[    1.793244] radeon 0000:01:05.0: VRAM: 256M 0xC0000000 - 0xCFFFFFFF
(256M used)
[    1.793250] radeon 0000:01:05.0: GTT: 512M 0xA0000000 - 0xBFFFFFFF
[    1.793752] [drm] Detected VRAM RAM=256M, BAR=256M
[    1.793760] [drm] RAM width 32bits DDR
[    1.793898] [TTM] Zone  kernel: Available graphics memory: 440076 kiB.
[    1.793905] [TTM] Zone highmem: Available graphics memory: 900140 kiB.
[    1.793909] [TTM] Initializing pool allocator.
[    1.793948] [drm] radeon: 256M of VRAM memory ready
[    1.793952] [drm] radeon: 512M of GTT memory ready.
[    1.794004] [drm] radeon: irq initialized.
[    1.794010] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    1.795262] [drm] Loading RS780 Microcode
[    1.839816] [drm] ring test succeeded in 0 usecs
[    1.840097] [drm] radeon: ib pool ready.
[    1.840216] [drm] ib test succeeded in 0 usecs
[    1.840221] [drm] Enabling audio support
[    1.840583] [drm] Unknown TV standard; defaulting to NTSC
[    1.840829] [drm] Radeon Display Connectors
[    1.840833] [drm] Connector 0:
[    1.840836] [drm]   VGA
[    1.840841] [drm]   DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48
0x7e4c 0x7e4c
[    1.840844] [drm]   Encoders:
[    1.840847] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    1.840850] [drm] Connector 1:
[    1.840852] [drm]   LVDS
[    1.840856] [drm]   DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58
0x7e5c 0x7e5c
[    1.840860] [drm]   Encoders:
[    1.840862] [drm]     LCD1: INTERNAL_KLDSCP_LVTMA
[    1.840865] [drm] Connector 2:
[    1.840868] [drm]   HDMI-A
[    1.840870] [drm]   HPD1
[    1.840874] [drm]   DDC: 0x7e20 0x7e20 0x7e24 0x7e24 0x7e28 0x7e28
0x7e2c 0x7e2c
[    1.840877] [drm]   Encoders:
[    1.840880] [drm]     DFP1: INTERNAL_UNIPHY
[    1.902731] [drm] radeon: power management initialized
[    1.940057] usb 2-2: new high speed USB device using ehci_hcd and address 2
[    1.988180] [drm] fb mappable at 0xC0141000
[    1.988186] [drm] vram apper at 0xC0000000
[    1.988189] [drm] size 4325376
[    1.988192] [drm] fb depth is 24
[    1.988195] [drm]    pitch is 5632
[    2.089292] scsi3 : usb-storage 2-2:1.0
[    2.133608] scsi 1:0:0:0: Direct-Access     USB      Driver
  0.00 PQ: 0 ANSI: 0 CCS
[    2.134978] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    2.136326] sd 1:0:0:0: [sdb] 3913728 512-byte logical blocks:
(2.00 GB/1.86 GiB)
[    2.136920] sd 1:0:0:0: [sdb] Write Protect is off
[    2.136928] sd 1:0:0:0: [sdb] Mode Sense: 23 00 00 00
[    2.136932] sd 1:0:0:0: [sdb] Assuming drive cache: write through
[    2.139591] sd 1:0:0:0: [sdb] Assuming drive cache: write through
[    2.139603]  sdb: sdb1
[    2.142692] sd 1:0:0:0: [sdb] Assuming drive cache: write through
[    2.142701] sd 1:0:0:0: [sdb] Attached SCSI removable disk
[    2.201080] usb 2-3: new high speed USB device using ehci_hcd and address 3
[    2.940570] Console: switching to colour frame buffer device 170x48
[    2.955935] fb0: radeondrmfb frame buffer device
[    2.955938] drm: registered panic notifier
[    2.955965] Slow work thread pool: Starting up
[    2.956100] Slow work thread pool: Ready
[    2.956110] [drm] Initialized radeon 2.5.0 20080528 for
0000:01:05.0 on minor 0
[    3.091585] scsi 3:0:0:0: Direct-Access     Generic- Multi-Card
  1.00 PQ: 0 ANSI: 0 CCS
[    3.092487] sd 3:0:0:0: Attached scsi generic sg2 type 0
[    3.097900] sd 3:0:0:0: [sdc] Attached SCSI removable disk
[    3.467006] EXT4-fs (sda1): mounted filesystem with ordered data
mode. Opts: (null)
[   14.201980] udev[449]: starting version 163
[   14.265615] lp: driver loaded but no devices found
[   14.298076] Adding 9936892k swap on /dev/sda5.  Priority:-1
extents:1 across:9936892k
[   14.382614] shpchp 0000:00:01.0: HPC vendor_id 1022 device_id 9602
ss_vid 1022 ss_did 9602
[   14.382624] shpchp 0000:00:01.0: Cannot reserve MMIO region
[   14.382664] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   14.413302] ACPI: resource piix4_smbus [io  0x8040-0x8047]
conflicts with ACPI region SMB0 [??? 0x00008040-0x0000804f flags 0x30]
[   14.413309] ACPI: If an ACPI driver is available for this device,
you should use it instead of the native driver
[   14.525535] Non-volatile memory driver v1.3
[   14.718003] Linux video capture interface: v2.00
[   14.734712] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   14.751879] Bluetooth: Core ver 2.15
[   14.751959] NET: Registered protocol family 31
[   14.751963] Bluetooth: HCI device and connection manager initialized
[   14.751969] Bluetooth: HCI socket layer initialized
[   14.760604] Bluetooth: Generic Bluetooth USB driver ver 0.6
[   14.761863] uvcvideo: Found UVC 1.00 device Integrated Camera (04f2:b1b4)
[   14.765077] usbcore: registered new interface driver usbserial
[   14.765136] USB Serial support registered for generic
[   14.768300] input: Integrated Camera as
/devices/pci0000:00/0000:00:13.2/usb2/2-3/2-3:1.0/input/input5
[   14.768511] usbcore: registered new interface driver uvcvideo
[   14.768515] USB Video Class driver (v0.1.0)
[   14.776728] usbcore: registered new interface driver btusb
[   14.777567] usbcore: registered new interface driver usbserial_generic
[   14.777572] usbserial: USB Serial Driver core
[   14.818412] USB Serial support registered for Qualcomm USB modem
[   14.818496] qcserial 1-5:1.1: Qualcomm USB modem converter detected
[   14.818762] usb 1-5: Qualcomm USB modem converter now attached to ttyUSB0
[   14.818839] usbcore: registered new interface driver qcserial
[   14.895307] type=1400 audit(1294369933.595:2): apparmor="STATUS"
operation="profile_load" name="/sbin/dhclient3" pid=782
comm="apparmor_parser"
[   14.895846] type=1400 audit(1294369933.595:3): apparmor="STATUS"
operation="profile_load"
name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=782
comm="apparmor_parser"
[   14.896153] type=1400 audit(1294369933.595:4): apparmor="STATUS"
operation="profile_load"
name="/usr/lib/connman/scripts/dhclient-script" pid=782
comm="apparmor_parser"
[   14.992303] thinkpad_acpi: ThinkPad ACPI Extras v0.24
[   14.992309] thinkpad_acpi: http://ibm-acpi.sf.net/
[   14.992313] thinkpad_acpi: ThinkPad BIOS 87ET34WW (1.08 ), EC
87HT20WW-1.165000
[   14.992319] thinkpad_acpi: Lenovo ThinkPad Edge, model 254523U
[   15.006640] thinkpad_acpi: detected a 16-level brightness capable ThinkPad
[   15.007789] thinkpad_acpi: radio switch found; radios are enabled
[   15.007861] thinkpad_acpi: possible tablet mode switch found;
ThinkPad in laptop mode
[   15.007891] thinkpad_acpi: This ThinkPad has standard ACPI
backlight brightness control, supported by the ACPI video driver
[   15.007896] thinkpad_acpi: Disabling thinkpad-acpi brightness
events by default...
[   15.011945] thinkpad_acpi: asked for hotkey mask 0x04000070, but
firmware forced it to 0x00000070
[   15.040283] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio
is unblocked
[   15.067434] thinkpad_acpi: rfkill switch tpacpi_wwan_sw: radio is unblocked
[   15.067531] Registered led device: tpacpi::thinklight
[   15.067569] Registered led device: tpacpi::power
[   15.067599] Registered led device: tpacpi::standby
[   15.067623] Registered led device: tpacpi::thinkvantage
[   15.079219] thinkpad_acpi: Standard ACPI backlight interface
available, not loading native one.
[   15.079384] thinkpad_acpi: Console audio control enabled, mode:
monitor (read only)
[   15.093653] input: ThinkPad Extra Buttons as
/devices/platform/thinkpad_acpi/input/input6
[   15.157239] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level,
low) -> IRQ 16
[   15.235606] HDA Intel 0000:01:05.1: PCI INT B -> GSI 19 (level,
low) -> IRQ 19
[   15.235708] HDA Intel 0000:01:05.1: setting latency timer to 64
[   15.254961] snd_hda_codec_atihdmi: disagrees about version of
symbol snd_hda_delete_codec_preset
[   15.254970] snd_hda_codec_atihdmi: Unknown symbol
snd_hda_delete_codec_preset (err -22)
[   15.255133] snd_hda_codec_atihdmi: disagrees about version of
symbol snd_hda_multi_out_dig_open
[   15.255139] snd_hda_codec_atihdmi: Unknown symbol
snd_hda_multi_out_dig_open (err -22)
[   15.255320] snd_hda_codec_atihdmi: disagrees about version of
symbol snd_hda_multi_out_dig_close
[   15.255326] snd_hda_codec_atihdmi: Unknown symbol
snd_hda_multi_out_dig_close (err -22)
[   15.255493] snd_hda_codec_atihdmi: disagrees about version of
symbol snd_hda_sequence_write
[   15.255498] snd_hda_codec_atihdmi: Unknown symbol
snd_hda_sequence_write (err -22)
[   15.255665] snd_hda_codec_atihdmi: disagrees about version of
symbol snd_hda_codec_write
[   15.255669] snd_hda_codec_atihdmi: Unknown symbol
snd_hda_codec_write (err -22)
[   15.255838] snd_hda_codec_atihdmi: disagrees about version of
symbol snd_hda_add_codec_preset
[   15.255843] snd_hda_codec_atihdmi: Unknown symbol
snd_hda_add_codec_preset (err -22)
[   15.256081] snd_hda_codec_atihdmi: disagrees about version of
symbol snd_hda_create_spdif_out_ctls
[   15.256087] snd_hda_codec_atihdmi: Unknown symbol
snd_hda_create_spdif_out_ctls (err -22)
[   15.256277] snd_hda_codec_atihdmi: disagrees about version of
symbol snd_hda_multi_out_dig_prepare
[   15.256282] snd_hda_codec_atihdmi: Unknown symbol
snd_hda_multi_out_dig_prepare (err -22)
[   15.277247] type=1400 audit(1294369933.979:5): apparmor="STATUS"
operation="profile_replace" name="/sbin/dhclient3" pid=994
comm="apparmor_parser"
[   15.277796] type=1400 audit(1294369933.979:6): apparmor="STATUS"
operation="profile_replace"
name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=994
comm="apparmor_parser"
[   15.278105] type=1400 audit(1294369933.979:7): apparmor="STATUS"
operation="profile_replace"
name="/usr/lib/connman/scripts/dhclient-script" pid=994
comm="apparmor_parser"
[   15.284010] type=1400 audit(1294369933.983:8): apparmor="STATUS"
operation="profile_load" name="/usr/share/gdm/guest-session/Xsession"
pid=993 comm="apparmor_parser"
[   15.318946] type=1400 audit(1294369934.019:9): apparmor="STATUS"
operation="profile_load" name="/usr/bin/evince" pid=999
comm="apparmor_parser"
[   15.330945] type=1400 audit(1294369934.031:10): apparmor="STATUS"
operation="profile_load" name="/usr/lib/cups/backend/cups-pdf"
pid=1010 comm="apparmor_parser"
[   15.331646] type=1400 audit(1294369934.031:11): apparmor="STATUS"
operation="profile_load" name="/usr/sbin/cupsd" pid=1010
comm="apparmor_parser"
[   15.351151] r8169 0000:02:00.0: eth0: link down
[   15.351559] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   15.610863] Synaptics Touchpad, model: 1, fw: 7.4, id: 0x1e0b1,
caps: 0xd047b1/0xb40000/0xa0000
[   15.610873] serio: Synaptics pass-through port at isa0060/serio4/input0
[   15.661451] input: SynPS/2 Synaptics TouchPad as
/devices/platform/i8042/serio4/input/input7
[   15.802107] Bluetooth: L2CAP ver 2.14
[   15.802114] Bluetooth: L2CAP socket layer initialized
[   15.818872] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   15.818878] Bluetooth: BNEP filters: protocol multicast
[   15.834172] Bluetooth: SCO (Voice Link) ver 0.6
[   15.834178] Bluetooth: SCO socket layer initialized
[   15.871607] ppdev: user-space parallel port driver
[   15.943030] Bluetooth: RFCOMM TTY layer initialized
[   15.943039] Bluetooth: RFCOMM socket layer initialized
[   15.943044] Bluetooth: RFCOMM ver 1.11
[   16.820230] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=0
[   18.847072] psmouse serio5: ID: 10 00 64
[   19.327610] hda-intel: IRQ timing workaround is activated for card
#1. Suggest a bigger bdl_pos_adj.
[   19.929294] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=0
[   23.425785] IBM TrackPoint firmware: 0x0e, buttons: 3/3
[   23.725857] input: TPPS/2 IBM TrackPoint as
/devices/platform/i8042/serio4/serio5/input/input8
[   89.163657] audit_printk_skb: 9 callbacks suppressed
[   89.163666] type=1400 audit(1294370007.859:15): apparmor="DENIED"
operation="open" parent=1793 profile="/usr/sbin/cupsd"
name="/dev/ttyUSB0" pid=1794 comm="serial" requested_mask="w"
denied_mask="w" fsuid=0 ouid=0
[  546.725041] usb 1-2: USB disconnect, address 2
[  687.096156] usb 1-2: new high speed USB device using ehci_hcd and address 5
[  687.240271] scsi4 : usb-storage 1-2:1.0
[  688.241869] scsi 4:0:0:0: Direct-Access     USB      Driver
  0.00 PQ: 0 ANSI: 0 CCS
[  688.243993] sd 4:0:0:0: Attached scsi generic sg1 type 0
[  688.473681] sd 4:0:0:0: [sdb] 3913728 512-byte logical blocks:
(2.00 GB/1.86 GiB)
[  688.474336] sd 4:0:0:0: [sdb] Write Protect is off
[  688.474349] sd 4:0:0:0: [sdb] Mode Sense: 23 00 00 00
[  688.474356] sd 4:0:0:0: [sdb] Assuming drive cache: write through
[  688.477701] sd 4:0:0:0: [sdb] Assuming drive cache: write through
[  688.477720]  sdb: sdb1
[  688.480932] sd 4:0:0:0: [sdb] Assuming drive cache: write through
[  688.480945] sd 4:0:0:0: [sdb] Attached SCSI removable disk


On Thu, Jan 13, 2011 at 11:22 AM, Borislav Petkov <bp@amd64.org> wrote:
> On Thu, Jan 13, 2011 at 06:10:01PM +0100, Thomas Gleixner wrote:
>> On Thu, 13 Jan 2011, Matthew Garrett wrote:
>>
>> > On Thu, Jan 13, 2011 at 10:02:22AM -0600, Manoj Iyer wrote:
>> > > Set acpi_skip_timer_override to force ignoring BIOS
>> > > IRQ0 pin2 override. This fixes resume from suspend on
>> > > AMD based ThinkPad Edge 11,13,14 and 15.
>> >
>> > This was originally there because of a quirk in some ati chipsets,
>> > coupled with DSDT insanity on HP's part. The Thinkpad Edges seem to be
>> > Intel machines, so it's not the same underlying issue. Do we have any
>>
>> The patch description above talks explictely about AMD based ThinkPad
>> Edge. So it might be as well the same underlying problem.
>
> Hmm, that's strange, I have an Edge 13 machine here, although not the
> exact same model as the ones listed in the patch, mine is:
>
> Handle 0x0001, DMI type 1, 27 bytes
> System Information
>        Manufacturer: LENOVO
>        Product Name: 01972NG
>        Version: ThinkPad Edge 13"IAL#
>
> and it suspends/resumes just fine.
>
> Manoj, can you send us dmesg and lspci -vv outputs, please?
>
> Thanks.
>
> --
> Regards/Gruss,
> Boris.
>
> Advanced Micro Devices GmbH
> Einsteinring 24, 85609 Dornach
> General Managers: Alberto Bozzo, Andrew Bowd
> Registration: Dornach, Gemeinde Aschheim, Landkreis Muenchen
> Registergericht Muenchen, HRB Nr. 43632
>



-- 
--manjo

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 17:10     ` Thomas Gleixner
  2011-01-13 17:22       ` Borislav Petkov
@ 2011-01-13 17:39       ` Matthew Garrett
       [not found]         ` <AANLkTimk_Y4Q_cxg1SJxZiTT2gT9ywr5UGmsqPqwmeCy@mail.gmail.com>
  1 sibling, 1 reply; 33+ messages in thread
From: Matthew Garrett @ 2011-01-13 17:39 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: Manoj Iyer, linux-kernel, Rafael J. Wysocki

On Thu, Jan 13, 2011 at 06:10:01PM +0100, Thomas Gleixner wrote:
> On Thu, 13 Jan 2011, Matthew Garrett wrote:
> 
> > On Thu, Jan 13, 2011 at 10:02:22AM -0600, Manoj Iyer wrote:
> > > Set acpi_skip_timer_override to force ignoring BIOS
> > > IRQ0 pin2 override. This fixes resume from suspend on
> > > AMD based ThinkPad Edge 11,13,14 and 15.
> > 
> > This was originally there because of a quirk in some ati chipsets, 
> > coupled with DSDT insanity on HP's part. The Thinkpad Edges seem to be 
> > Intel machines, so it's not the same underlying issue. Do we have any 
> 
> The patch description above talks explictely about AMD based ThinkPad
> Edge. So it might be as well the same underlying problem.

I'm sorry, I misread that completely. The reason for the extra quirk on 
the HPs was down to their DSDT setting thermal trip points incorrectly 
if the override weren't ignored - it would trigger at boot time, not 
after suspend/resume. In theory I think that should be handled by the 
chipset-specific quirk code already, with the DMI list as a backup. It 
may be that we need to look at the chipset quirk code?

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

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 17:33         ` Manoj Iyer
@ 2011-01-13 17:55           ` Borislav Petkov
  2011-01-13 18:11             ` Manoj Iyer
  0 siblings, 1 reply; 33+ messages in thread
From: Borislav Petkov @ 2011-01-13 17:55 UTC (permalink / raw)
  To: Manoj Iyer
  Cc: Thomas Gleixner, Matthew Garrett, linux-kernel,
	Rafael J. Wysocki, Herrmann3, Andreas

On Thu, Jan 13, 2011 at 12:33:27PM -0500, Manoj Iyer wrote:
> Borislav,
> 
> Please see below lspci and dmesg output from AMD based ThinkPad Edge 11.
> 
> lspci
> =====
> 00:00.0 Host bridge [0600]: Advanced Micro Devices [AMD] RS780 Host
> Bridge Alternate [1022:9601]
>         Subsystem: Lenovo Device [17aa:21ca]
>         Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
> Stepping- SERR- FastB2B- DisINTx-
>         Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort-
> <TAbort- <MAbort+ >SERR- <PERR- INTx-
>         Latency: 0
>         Capabilities: [c4] HyperTransport: Slave or Primary Interface
>                 Command: BaseUnitID=0 UnitCnt=12 MastHost- DefDir- DUL-
>                 Link Control 0: CFlE- CST- CFE- <LkFail- Init+ EOC- TXO- <CRCErr=0
> IsocEn- LSEn+ ExtCTL- 64b-
>                 Link Config 0: MLWI=16bit DwFcIn- MLWO=16bit DwFcOut- LWI=16bit
> DwFcInEn- LWO=16bit DwFcOutEn-
>                 Link Control 1: CFlE- CST- CFE- <LkFail+ Init- EOC+ TXO+ <CRCErr=0
> IsocEn- LSEn- ExtCTL- 64b-
>                 Link Config 1: MLWI=8bit DwFcIn- MLWO=8bit DwFcOut- LWI=8bit
> DwFcInEn- LWO=8bit DwFcOutEn-
>                 Revision ID: 3.00
>                 Link Frequency 0: 1.0GHz
>                 Link Error 0: <Prot- <Ovfl- <EOC- CTLTm-
>                 Link Frequency Capability 0: 200MHz+ 300MHz- 400MHz+ 500MHz- 600MHz+
> 800MHz+ 1.0GHz+ 1.2GHz- 1.4GHz- 1.6GHz- Vend-
>                 Feature Capability: IsocFC- LDTSTOP+ CRCTM- ECTLT- 64bA- UIDRD-
>                 Link Frequency 1: 200MHz
>                 Link Error 1: <Prot- <Ovfl- <EOC- CTLTm-
>                 Link Frequency Capability 1: 200MHz- 300MHz- 400MHz- 500MHz- 600MHz-
> 800MHz- 1.0GHz- 1.2GHz- 1.4GHz- 1.6GHz- Vend-
>                 Error Handling: PFlE- OFlE- PFE- OFE- EOCFE- RFE- CRCFE- SERRFE- CF-
> RE- PNFE- ONFE- EOCNFE- RNFE- CRCNFE- SERRNFE-
>                 Prefetchable memory behind bridge Upper: 00-00
>                 Bus Number: 00
>         Capabilities: [54] HyperTransport: UnitID Clumping
>         Capabilities: [40] HyperTransport: Retry Mode
>         Capabilities: [9c] HyperTransport: #1a
>         Capabilities: [f8] HyperTransport: #1c
> 
> 00:01.0 PCI bridge [0604]: Advanced Micro Devices [AMD] RS780 PCI to
> PCI bridge (int gfx) [1022:9602] (prog-if 00 [Normal decode])
>         Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
> Stepping- SERR- FastB2B- DisINTx-
>         Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort-
> <TAbort- <MAbort- >SERR- <PERR- INTx-
>         Latency: 64
>         Bus: primary=00, secondary=01, subordinate=01, sec-latency=64
>         I/O behind bridge: 00009000-00009fff
>         Memory behind bridge: d0400000-d05fffff
>         Prefetchable memory behind bridge: 00000000c0000000-00000000cfffffff
>         Secondary status: 66MHz+ FastB2B- ParErr- DEVSEL=medium >TAbort-
> <TAbort- <MAbort+ <SERR- <PERR-
>         BridgeCtl: Parity- SERR- NoISA+ VGA+ MAbort- >Reset- FastB2B-
>                 PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
>         Capabilities: [44] HyperTransport: MSI Mapping Enable+ Fixed+
>         Capabilities: [b0] Subsystem: Advanced Micro Devices [AMD] RS780 PCI
> to PCI bridge (int gfx) [1022:9602]
>         Kernel modules: shpchp
> 
> 00:04.0 PCI bridge [0604]: Advanced Micro Devices [AMD] RS780 PCI to
> PCI bridge (PCIE port 0) [1022:9604] (prog-if 00 [Normal decode])
>         Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
> Stepping- SERR- FastB2B- DisINTx+
>         Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort-
> <TAbort- <MAbort- >SERR- <PERR- INTx-
>         Latency: 0, Cache Line Size: 32 bytes
>         Bus: primary=00, secondary=02, subordinate=07, sec-latency=0
>         I/O behind bridge: 0000a000-0000bfff
>         Memory behind bridge: 80000000-800fffff
>         Prefetchable memory behind bridge: 00000000d0000000-00000000d03fffff
>         Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort-
> <TAbort- <MAbort- <SERR- <PERR-
>         BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
>                 PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
>         Capabilities: [50] Power Management version 3
>                 Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
>                 Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
>         Capabilities: [58] Express (v2) Root Port (Slot+), MSI 00
>                 DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
>                         ExtTag+ RBE+ FLReset-
>                 DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
>                         RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
> 

This doesn't look complete since it shows only 3 PCI devices. Can you do

lspci -vv >> lspci.out

and attach the file instead since the mail client wraps the lines anyway.

Thanks.

-- 
Regards/Gruss,
Boris.

Advanced Micro Devices GmbH
Einsteinring 24, 85609 Dornach
General Managers: Alberto Bozzo, Andrew Bowd
Registration: Dornach, Gemeinde Aschheim, Landkreis Muenchen
Registergericht Muenchen, HRB Nr. 43632

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
       [not found]         ` <AANLkTimk_Y4Q_cxg1SJxZiTT2gT9ywr5UGmsqPqwmeCy@mail.gmail.com>
@ 2011-01-13 17:56           ` Matthew Garrett
  0 siblings, 0 replies; 33+ messages in thread
From: Matthew Garrett @ 2011-01-13 17:56 UTC (permalink / raw)
  To: Manoj Iyer; +Cc: Thomas Gleixner, Rafael J. Wysocki, linux-kernel

On Thu, Jan 13, 2011 at 11:53:46AM -0600, Manoj Iyer wrote:
>    early-quirks.c ignores all rev ids greater than 14. I thought the fix
>    should be more dmi based rather than rev I'd based.

If we're seeing the same problem with later revisions then it's either a 
bug in the quirk or it's something different that has similar behaviour. 
What's the actual failure mode?

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

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 17:55           ` Borislav Petkov
@ 2011-01-13 18:11             ` Manoj Iyer
  2011-01-13 18:30               ` Borislav Petkov
  0 siblings, 1 reply; 33+ messages in thread
From: Manoj Iyer @ 2011-01-13 18:11 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: Thomas Gleixner, Matthew Garrett, linux-kernel,
	Rafael J. Wysocki, Herrmann3, Andreas

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

Borislav,

Please see attached lspci output.

Thanks
Manoj

On Thu, Jan 13, 2011 at 11:55 AM, Borislav Petkov <bp@amd64.org> wrote:
> On Thu, Jan 13, 2011 at 12:33:27PM -0500, Manoj Iyer wrote:
>> Borislav,
>>
>> Please see below lspci and dmesg output from AMD based ThinkPad Edge 11.
>>
>> lspci
>> =====
>> 00:00.0 Host bridge [0600]: Advanced Micro Devices [AMD] RS780 Host
>> Bridge Alternate [1022:9601]
>>         Subsystem: Lenovo Device [17aa:21ca]
>>         Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
>> Stepping- SERR- FastB2B- DisINTx-
>>         Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort-
>> <TAbort- <MAbort+ >SERR- <PERR- INTx-
>>         Latency: 0
>>         Capabilities: [c4] HyperTransport: Slave or Primary Interface
>>                 Command: BaseUnitID=0 UnitCnt=12 MastHost- DefDir- DUL-
>>                 Link Control 0: CFlE- CST- CFE- <LkFail- Init+ EOC- TXO- <CRCErr=0
>> IsocEn- LSEn+ ExtCTL- 64b-
>>                 Link Config 0: MLWI=16bit DwFcIn- MLWO=16bit DwFcOut- LWI=16bit
>> DwFcInEn- LWO=16bit DwFcOutEn-
>>                 Link Control 1: CFlE- CST- CFE- <LkFail+ Init- EOC+ TXO+ <CRCErr=0
>> IsocEn- LSEn- ExtCTL- 64b-
>>                 Link Config 1: MLWI=8bit DwFcIn- MLWO=8bit DwFcOut- LWI=8bit
>> DwFcInEn- LWO=8bit DwFcOutEn-
>>                 Revision ID: 3.00
>>                 Link Frequency 0: 1.0GHz
>>                 Link Error 0: <Prot- <Ovfl- <EOC- CTLTm-
>>                 Link Frequency Capability 0: 200MHz+ 300MHz- 400MHz+ 500MHz- 600MHz+
>> 800MHz+ 1.0GHz+ 1.2GHz- 1.4GHz- 1.6GHz- Vend-
>>                 Feature Capability: IsocFC- LDTSTOP+ CRCTM- ECTLT- 64bA- UIDRD-
>>                 Link Frequency 1: 200MHz
>>                 Link Error 1: <Prot- <Ovfl- <EOC- CTLTm-
>>                 Link Frequency Capability 1: 200MHz- 300MHz- 400MHz- 500MHz- 600MHz-
>> 800MHz- 1.0GHz- 1.2GHz- 1.4GHz- 1.6GHz- Vend-
>>                 Error Handling: PFlE- OFlE- PFE- OFE- EOCFE- RFE- CRCFE- SERRFE- CF-
>> RE- PNFE- ONFE- EOCNFE- RNFE- CRCNFE- SERRNFE-
>>                 Prefetchable memory behind bridge Upper: 00-00
>>                 Bus Number: 00
>>         Capabilities: [54] HyperTransport: UnitID Clumping
>>         Capabilities: [40] HyperTransport: Retry Mode
>>         Capabilities: [9c] HyperTransport: #1a
>>         Capabilities: [f8] HyperTransport: #1c
>>
>> 00:01.0 PCI bridge [0604]: Advanced Micro Devices [AMD] RS780 PCI to
>> PCI bridge (int gfx) [1022:9602] (prog-if 00 [Normal decode])
>>         Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
>> Stepping- SERR- FastB2B- DisINTx-
>>         Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort-
>> <TAbort- <MAbort- >SERR- <PERR- INTx-
>>         Latency: 64
>>         Bus: primary=00, secondary=01, subordinate=01, sec-latency=64
>>         I/O behind bridge: 00009000-00009fff
>>         Memory behind bridge: d0400000-d05fffff
>>         Prefetchable memory behind bridge: 00000000c0000000-00000000cfffffff
>>         Secondary status: 66MHz+ FastB2B- ParErr- DEVSEL=medium >TAbort-
>> <TAbort- <MAbort+ <SERR- <PERR-
>>         BridgeCtl: Parity- SERR- NoISA+ VGA+ MAbort- >Reset- FastB2B-
>>                 PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
>>         Capabilities: [44] HyperTransport: MSI Mapping Enable+ Fixed+
>>         Capabilities: [b0] Subsystem: Advanced Micro Devices [AMD] RS780 PCI
>> to PCI bridge (int gfx) [1022:9602]
>>         Kernel modules: shpchp
>>
>> 00:04.0 PCI bridge [0604]: Advanced Micro Devices [AMD] RS780 PCI to
>> PCI bridge (PCIE port 0) [1022:9604] (prog-if 00 [Normal decode])
>>         Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
>> Stepping- SERR- FastB2B- DisINTx+
>>         Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort-
>> <TAbort- <MAbort- >SERR- <PERR- INTx-
>>         Latency: 0, Cache Line Size: 32 bytes
>>         Bus: primary=00, secondary=02, subordinate=07, sec-latency=0
>>         I/O behind bridge: 0000a000-0000bfff
>>         Memory behind bridge: 80000000-800fffff
>>         Prefetchable memory behind bridge: 00000000d0000000-00000000d03fffff
>>         Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort-
>> <TAbort- <MAbort- <SERR- <PERR-
>>         BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
>>                 PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
>>         Capabilities: [50] Power Management version 3
>>                 Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
>>                 Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
>>         Capabilities: [58] Express (v2) Root Port (Slot+), MSI 00
>>                 DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
>>                         ExtTag+ RBE+ FLReset-
>>                 DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
>>                         RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
>>
>
> This doesn't look complete since it shows only 3 PCI devices. Can you do
>
> lspci -vv >> lspci.out
>
> and attach the file instead since the mail client wraps the lines anyway.
>
> Thanks.
>
> --
> Regards/Gruss,
> Boris.
>
> Advanced Micro Devices GmbH
> Einsteinring 24, 85609 Dornach
> General Managers: Alberto Bozzo, Andrew Bowd
> Registration: Dornach, Gemeinde Aschheim, Landkreis Muenchen
> Registergericht Muenchen, HRB Nr. 43632
>



-- 
--manjo

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

00:00.0 Host bridge [0600]: Advanced Micro Devices [AMD] RS780 Host Bridge Alternate [1022:9601]
	Subsystem: Lenovo Device [17aa:21ca]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ >SERR- <PERR- INTx-
	Latency: 0
	Capabilities: [c4] HyperTransport: Slave or Primary Interface
		Command: BaseUnitID=0 UnitCnt=12 MastHost- DefDir- DUL-
		Link Control 0: CFlE- CST- CFE- <LkFail- Init+ EOC- TXO- <CRCErr=0 IsocEn- LSEn+ ExtCTL- 64b-
		Link Config 0: MLWI=16bit DwFcIn- MLWO=16bit DwFcOut- LWI=16bit DwFcInEn- LWO=16bit DwFcOutEn-
		Link Control 1: CFlE- CST- CFE- <LkFail+ Init- EOC+ TXO+ <CRCErr=0 IsocEn- LSEn- ExtCTL- 64b-
		Link Config 1: MLWI=8bit DwFcIn- MLWO=8bit DwFcOut- LWI=8bit DwFcInEn- LWO=8bit DwFcOutEn-
		Revision ID: 3.00
		Link Frequency 0: 1.0GHz
		Link Error 0: <Prot- <Ovfl- <EOC- CTLTm-
		Link Frequency Capability 0: 200MHz+ 300MHz- 400MHz+ 500MHz- 600MHz+ 800MHz+ 1.0GHz+ 1.2GHz- 1.4GHz- 1.6GHz- Vend-
		Feature Capability: IsocFC- LDTSTOP+ CRCTM- ECTLT- 64bA- UIDRD-
		Link Frequency 1: 200MHz
		Link Error 1: <Prot- <Ovfl- <EOC- CTLTm-
		Link Frequency Capability 1: 200MHz- 300MHz- 400MHz- 500MHz- 600MHz- 800MHz- 1.0GHz- 1.2GHz- 1.4GHz- 1.6GHz- Vend-
		Error Handling: PFlE- OFlE- PFE- OFE- EOCFE- RFE- CRCFE- SERRFE- CF- RE- PNFE- ONFE- EOCNFE- RNFE- CRCNFE- SERRNFE-
		Prefetchable memory behind bridge Upper: 00-00
		Bus Number: 00
	Capabilities: [54] HyperTransport: UnitID Clumping
	Capabilities: [40] HyperTransport: Retry Mode
	Capabilities: [9c] HyperTransport: #1a
	Capabilities: [f8] HyperTransport: #1c

00:01.0 PCI bridge [0604]: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (int gfx) [1022:9602] (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 64
	Bus: primary=00, secondary=01, subordinate=01, sec-latency=64
	I/O behind bridge: 00009000-00009fff
	Memory behind bridge: d0400000-d05fffff
	Prefetchable memory behind bridge: 00000000c0000000-00000000cfffffff
	Secondary status: 66MHz+ FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA+ VGA+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [44] HyperTransport: MSI Mapping Enable+ Fixed+
	Capabilities: [b0] Subsystem: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (int gfx) [1022:9602]
	Kernel modules: shpchp

00:04.0 PCI bridge [0604]: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 0) [1022:9604] (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 32 bytes
	Bus: primary=00, secondary=02, subordinate=07, sec-latency=0
	I/O behind bridge: 0000a000-0000bfff
	Memory behind bridge: 80000000-800fffff
	Prefetchable memory behind bridge: 00000000d0000000-00000000d03fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [58] Express (v2) Root Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag+ RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #1, Speed 5GT/s, Width x1, ASPM L0s L1, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep+ BwNot+
		LnkCtl:	ASPM L0s L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #4, PowerLimit 25.000W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet+ LinkState+
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- ARIFwd-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB
	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit-
		Address: fee0300c  Data: 4149
	Capabilities: [b0] Subsystem: Lenovo Device [17aa:21ca]
	Capabilities: [b8] HyperTransport: MSI Mapping Enable+ Fixed+
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [110 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:05.0 PCI bridge [0604]: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 1) [1022:9605] (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 32 bytes
	Bus: primary=00, secondary=08, subordinate=08, sec-latency=0
	I/O behind bridge: 0000c000-0000cfff
	Memory behind bridge: d0600000-d06fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [58] Express (v2) Root Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag+ RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #2, Speed 5GT/s, Width x1, ASPM L0s L1, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep+ BwNot+
		LnkCtl:	ASPM L0s L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #5, PowerLimit 25.000W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet+ LinkState+
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- ARIFwd-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB
	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit-
		Address: fee0300c  Data: 4151
	Capabilities: [b0] Subsystem: Lenovo Device [17aa:21ca]
	Capabilities: [b8] HyperTransport: MSI Mapping Enable+ Fixed+
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [110 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:11.0 SATA controller [0106]: ATI Technologies Inc SB700/SB800 SATA Controller [AHCI mode] [1002:4391] (prog-if 01 [AHCI 1.0])
	Subsystem: Lenovo Device [17aa:21ca]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 64
	Interrupt: pin A routed to IRQ 43
	Region 0: I/O ports at 8440 [size=8]
	Region 1: I/O ports at 8430 [size=4]
	Region 2: I/O ports at 8420 [size=8]
	Region 3: I/O ports at 8410 [size=4]
	Region 4: I/O ports at 8400 [size=16]
	Region 5: Memory at d0906800 (32-bit, non-prefetchable) [size=1K]
	Capabilities: [50] MSI: Enable+ Count=1/8 Maskable- 64bit+
		Address: 00000000fee0100c  Data: 4171
	Capabilities: [70] SATA HBA v1.0 InCfgSpace
	Capabilities: [a4] PCI Advanced Features
		AFCap: TP+ FLR+
		AFCtrl: FLR-
		AFStatus: TP-
	Kernel driver in use: ahci
	Kernel modules: ahci

00:12.0 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB OHCI0 Controller [1002:4397] (prog-if 10 [OHCI])
	Subsystem: Lenovo Device [17aa:21ca]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 64, Cache Line Size: 32 bytes
	Interrupt: pin A routed to IRQ 18
	Region 0: Memory at d0904000 (32-bit, non-prefetchable) [size=4K]
	Kernel driver in use: ohci_hcd

00:12.2 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB EHCI Controller [1002:4396] (prog-if 20 [EHCI])
	Subsystem: Lenovo Device [17aa:21ca]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 64, Cache Line Size: 32 bytes
	Interrupt: pin B routed to IRQ 17
	Region 0: Memory at d0906000 (32-bit, non-prefetchable) [size=256]
	Capabilities: [c0] Power Management version 2
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold-)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
		Bridge: PM- B3+
	Capabilities: [e4] Debug port: BAR=1 offset=00e0
	Kernel driver in use: ehci_hcd

00:13.0 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB OHCI0 Controller [1002:4397] (prog-if 10 [OHCI])
	Subsystem: Lenovo Device [17aa:21ca]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 64, Cache Line Size: 32 bytes
	Interrupt: pin A routed to IRQ 18
	Region 0: Memory at d0905000 (32-bit, non-prefetchable) [size=4K]
	Kernel driver in use: ohci_hcd

00:13.2 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB EHCI Controller [1002:4396] (prog-if 20 [EHCI])
	Subsystem: Lenovo Device [17aa:21ca]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 64, Cache Line Size: 32 bytes
	Interrupt: pin B routed to IRQ 17
	Region 0: Memory at d0906400 (32-bit, non-prefetchable) [size=256]
	Capabilities: [c0] Power Management version 2
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold-)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
		Bridge: PM- B3+
	Capabilities: [e4] Debug port: BAR=1 offset=00e0
	Kernel driver in use: ehci_hcd

00:14.0 SMBus [0c05]: ATI Technologies Inc SBx00 SMBus Controller [1002:4385] (rev 42)
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel modules: i2c-piix4

00:14.2 Audio device [0403]: ATI Technologies Inc SBx00 Azalia (Intel HDA) [1002:4383] (rev 40)
	Subsystem: Lenovo Device [17aa:21ca]
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=slow >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 64, Cache Line Size: 32 bytes
	Interrupt: pin ? routed to IRQ 16
	Region 0: Memory at d0900000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [50] Power Management version 2
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Kernel driver in use: HDA Intel
	Kernel modules: snd-hda-intel

00:14.3 ISA bridge [0601]: ATI Technologies Inc SB700/SB800 LPC host controller [1002:439d] (rev 40)
	Subsystem: Lenovo Device [17aa:21ca]
	Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0

00:14.4 PCI bridge [0604]: ATI Technologies Inc SBx00 PCI to PCI Bridge [1002:4384] (rev 40) (prog-if 01 [Subtractive decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 64
	Bus: primary=00, secondary=09, subordinate=09, sec-latency=64
	Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-

00:18.0 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor HyperTransport Configuration [1022:1200]
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [80] HyperTransport: Host or Secondary Interface
		Command: WarmRst+ DblEnd- DevNum=0 ChainSide- HostHide+ Slave- <EOCErr- DUL-
		Link Control: CFlE- CST- CFE- <LkFail- Init+ EOC- TXO- <CRCErr=0 IsocEn- LSEn+ ExtCTL- 64b-
		Link Config: MLWI=16bit DwFcIn- MLWO=16bit DwFcOut- LWI=16bit DwFcInEn- LWO=16bit DwFcOutEn-
		Revision ID: 3.00
		Link Frequency: 1.0GHz
		Link Error: <Prot- <Ovfl- <EOC- CTLTm-
		Link Frequency Capability: 200MHz+ 300MHz- 400MHz+ 500MHz- 600MHz+ 800MHz+ 1.0GHz+ 1.2GHz- 1.4GHz- 1.6GHz- Vend-
		Feature Capability: IsocFC+ LDTSTOP+ CRCTM- ECTLT- 64bA+ UIDRD- ExtRS- UCnfE-

00:18.1 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor Address Map [1022:1201]
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:18.2 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor DRAM Controller [1022:1202]
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:18.3 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor Miscellaneous Control [1022:1203]
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [f0] Secure device <?>
	Kernel driver in use: k10temp
	Kernel modules: k10temp

00:18.4 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor Link Control [1022:1204]
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

01:05.0 VGA compatible controller [0300]: ATI Technologies Inc M880G [Mobility Radeon HD 4200] [1002:9712] (prog-if 00 [VGA controller])
	Subsystem: Lenovo Device [17aa:21ca]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 32 bytes
	Interrupt: pin A routed to IRQ 18
	Region 0: Memory at c0000000 (32-bit, prefetchable) [size=256M]
	Region 1: I/O ports at 9000 [size=256]
	Region 2: Memory at d0500000 (32-bit, non-prefetchable) [size=64K]
	Region 5: Memory at d0400000 (32-bit, non-prefetchable) [size=1M]
	Expansion ROM at <unassigned> [disabled]
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [a0] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Kernel driver in use: radeon
	Kernel modules: radeon

01:05.1 Audio device [0403]: ATI Technologies Inc RS880 Audio Device [Radeon HD 4200] [1002:970f]
	Subsystem: ATI Technologies Inc Device [1002:9712]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 32 bytes
	Interrupt: pin B routed to IRQ 19
	Region 0: Memory at d0510000 (32-bit, non-prefetchable) [size=16K]
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [a0] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Kernel driver in use: HDA Intel
	Kernel modules: snd-hda-intel

02:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller [10ec:8168] (rev 03)
	Subsystem: Lenovo Device [17aa:21c6]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 32 bytes
	Interrupt: pin A routed to IRQ 42
	Region 0: I/O ports at bc00 [size=256]
	Region 2: Memory at d0200000 (64-bit, prefetchable) [size=4K]
	Region 4: Memory at d0000000 (64-bit, prefetchable) [size=16K]
	[virtual] Expansion ROM at d0020000 [disabled] [size=128K]
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee0100c  Data: 4161
	Capabilities: [70] Express (v2) Endpoint, MSI 01
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <512ns, L1 <64us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Latency L0 <512ns, L1 <64us
			ClockPM+ Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM L0s L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB
	Capabilities: [ac] MSI-X: Enable- Count=4 Masked-
		Vector table: BAR=4 offset=00000000
		PBA: BAR=4 offset=00000800
	Capabilities: [cc] Vital Product Data
		Unknown small resource type 00, will not decode more.
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr+ BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [140 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [160 v1] Device Serial Number 51-00-00-00-68-4c-e0-00
	Kernel driver in use: r8169
	Kernel modules: r8169

08:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. Device [10ec:8176] (rev 01)
	Subsystem: Realtek Semiconductor Co., Ltd. Device [10ec:8195]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 32 bytes
	Interrupt: pin A routed to IRQ 10
	Region 0: I/O ports at c000 [size=256]
	Region 2: Memory at d0600000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [50] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [70] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <512ns, L1 <64us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Latency L0 <512ns, L1 <64us
			ClockPM+ Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM L0s L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [140 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [160 v1] Device Serial Number 01-91-81-fe-ff-4c-e0-00


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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 18:11             ` Manoj Iyer
@ 2011-01-13 18:30               ` Borislav Petkov
  2011-01-13 18:51                 ` Thomas Gleixner
  2011-01-13 18:57                 ` Manoj Iyer
  0 siblings, 2 replies; 33+ messages in thread
From: Borislav Petkov @ 2011-01-13 18:30 UTC (permalink / raw)
  To: Manoj Iyer
  Cc: Thomas Gleixner, Matthew Garrett, linux-kernel,
	Rafael J. Wysocki, Herrmann3, Andreas

On Thu, Jan 13, 2011 at 01:11:48PM -0500, Manoj Iyer wrote:
> Borislav,
> 
> Please see attached lspci output.

Thanks, that looks better. A stab in the dark:

Can you boot your machine with "nohpet" and try a suspend/resume cycle
to see whether that helps?

If that works, can you then boot normally (i.e. no "nohpet" option on
the command line) and wait ~5mins after resume to see whether your
machine comes out of the hang after all (the idea here is to wait for
the 32bit HPET counter to wrap around).

Thanks.

-- 
Regards/Gruss,
Boris.

Advanced Micro Devices GmbH
Einsteinring 24, 85609 Dornach
General Managers: Alberto Bozzo, Andrew Bowd
Registration: Dornach, Gemeinde Aschheim, Landkreis Muenchen
Registergericht Muenchen, HRB Nr. 43632

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 18:30               ` Borislav Petkov
@ 2011-01-13 18:51                 ` Thomas Gleixner
  2011-01-13 18:58                   ` Matthew Garrett
  2011-01-13 18:57                 ` Manoj Iyer
  1 sibling, 1 reply; 33+ messages in thread
From: Thomas Gleixner @ 2011-01-13 18:51 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: Manoj Iyer, Matthew Garrett, linux-kernel, Rafael J. Wysocki,
	Herrmann3, Andreas

On Thu, 13 Jan 2011, Borislav Petkov wrote:

> On Thu, Jan 13, 2011 at 01:11:48PM -0500, Manoj Iyer wrote:
> > Borislav,
> > 
> > Please see attached lspci output.
> 
> Thanks, that looks better. A stab in the dark:
> 
> Can you boot your machine with "nohpet" and try a suspend/resume cycle
> to see whether that helps?
> 
> If that works, can you then boot normally (i.e. no "nohpet" option on
> the command line) and wait ~5mins after resume to see whether your
> machine comes out of the hang after all (the idea here is to wait for
> the 32bit HPET counter to wrap around).

What's odd is that the machines actually boot. I would have expected
that they do not boot at all if the BIOS IRQ0 pin2 override is
ignored. But it seems that takes effect just when the machine does a
suspend/resume. Weird!

Can we please get a dmesg for a boot with an unpatched kernel and one
with the DMI quirks applied (or acpi_skip_timer_override on the kernel
command line) ?

Thanks,

	tglx

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 18:30               ` Borislav Petkov
  2011-01-13 18:51                 ` Thomas Gleixner
@ 2011-01-13 18:57                 ` Manoj Iyer
  1 sibling, 0 replies; 33+ messages in thread
From: Manoj Iyer @ 2011-01-13 18:57 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: Thomas Gleixner, Matthew Garrett, linux-kernel,
	Rafael J. Wysocki, Herrmann3, Andreas

> Thanks, that looks better. A stab in the dark:
>
> Can you boot your machine with "nohpet" and try a suspend/resume cycle
> to see whether that helps?

with nohpet in the kernel command line the system was able to resumes
from suspend normally.

>
> If that works, can you then boot normally (i.e. no "nohpet" option on
> the command line) and wait ~5mins after resume to see whether your
> machine comes out of the hang after all (the idea here is to wait for
> the 32bit HPET counter to wrap around).

And, yes, with "nohpet", the system comes back from hang after
approximately 5 minutes.

>
> Thanks.
>
> --
> Regards/Gruss,
> Boris.
>
> Advanced Micro Devices GmbH
> Einsteinring 24, 85609 Dornach
> General Managers: Alberto Bozzo, Andrew Bowd
> Registration: Dornach, Gemeinde Aschheim, Landkreis Muenchen
> Registergericht Muenchen, HRB Nr. 43632
>



-- 
--manjo

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 18:51                 ` Thomas Gleixner
@ 2011-01-13 18:58                   ` Matthew Garrett
  2011-01-13 19:07                     ` Borislav Petkov
  2011-01-13 19:11                     ` Thomas Gleixner
  0 siblings, 2 replies; 33+ messages in thread
From: Matthew Garrett @ 2011-01-13 18:58 UTC (permalink / raw)
  To: Thomas Gleixner
  Cc: Borislav Petkov, Manoj Iyer, linux-kernel, Rafael J. Wysocki,
	Herrmann3, Andreas

On Thu, Jan 13, 2011 at 07:51:49PM +0100, Thomas Gleixner wrote:

> What's odd is that the machines actually boot. I would have expected
> that they do not boot at all if the BIOS IRQ0 pin2 override is
> ignored. But it seems that takes effect just when the machine does a
> suspend/resume. Weird!

The only thing that springs to mind is some BIOS code making incorrect 
assumptions about timer setup when we trap into it. Is reprogramming the 
timer back to the boot state over suspend plausible? If so, that'd 
probably be a more general fix.

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

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 18:58                   ` Matthew Garrett
@ 2011-01-13 19:07                     ` Borislav Petkov
  2011-01-13 19:13                       ` Thomas Gleixner
  2011-01-13 19:11                     ` Thomas Gleixner
  1 sibling, 1 reply; 33+ messages in thread
From: Borislav Petkov @ 2011-01-13 19:07 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: Thomas Gleixner, Manoj Iyer, linux-kernel, Rafael J. Wysocki,
	Herrmann3, Andreas

On Thu, Jan 13, 2011 at 06:58:07PM +0000, Matthew Garrett wrote:
> On Thu, Jan 13, 2011 at 07:51:49PM +0100, Thomas Gleixner wrote:
> 
> > What's odd is that the machines actually boot. I would have expected
> > that they do not boot at all if the BIOS IRQ0 pin2 override is
> > ignored. But it seems that takes effect just when the machine does a
> > suspend/resume. Weird!
> 
> The only thing that springs to mind is some BIOS code making incorrect 
> assumptions about timer setup when we trap into it. Is reprogramming the 
> timer back to the boot state over suspend plausible? If so, that'd 
> probably be a more general fix.

Well, Andreas did boot with 'hpet=verbose' on an affected machine here
and did a suspend/resume and the hpet config registers looked ok before
suspend and after resume. It might be that the HPET is temporarily
"insane" while resume lasts but we don't have any hard facts confirming
that so far. We've contemplated switching to the pit timer before
suspend and back to hpet after resume, as a brown-paper bag solution.
And this issue pertains only to SB800, that's why my machine here wasn't
affected - it has an SB700.

-- 
Regards/Gruss,
Boris.

Advanced Micro Devices GmbH
Einsteinring 24, 85609 Dornach
General Managers: Alberto Bozzo, Andrew Bowd
Registration: Dornach, Gemeinde Aschheim, Landkreis Muenchen
Registergericht Muenchen, HRB Nr. 43632

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 18:58                   ` Matthew Garrett
  2011-01-13 19:07                     ` Borislav Petkov
@ 2011-01-13 19:11                     ` Thomas Gleixner
  1 sibling, 0 replies; 33+ messages in thread
From: Thomas Gleixner @ 2011-01-13 19:11 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: Borislav Petkov, Manoj Iyer, linux-kernel, Rafael J. Wysocki,
	Herrmann3, Andreas

On Thu, 13 Jan 2011, Matthew Garrett wrote:

> On Thu, Jan 13, 2011 at 07:51:49PM +0100, Thomas Gleixner wrote:
> 
> > What's odd is that the machines actually boot. I would have expected
> > that they do not boot at all if the BIOS IRQ0 pin2 override is
> > ignored. But it seems that takes effect just when the machine does a
> > suspend/resume. Weird!
> 
> The only thing that springs to mind is some BIOS code making incorrect 
> assumptions about timer setup when we trap into it. Is reprogramming the 
> timer back to the boot state over suspend plausible? If so, that'd 
> probably be a more general fix.

Well, it's even more odd that it comes back after 5 minutes with the
HPET enabled. How the hell is this related to the irq pin routing?

I'm really curious to see what differences we get for the irq pin
routing with and w/o the dmi quirk.

Thanks,

	tglx

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 19:07                     ` Borislav Petkov
@ 2011-01-13 19:13                       ` Thomas Gleixner
  2011-01-13 19:28                         ` Borislav Petkov
  0 siblings, 1 reply; 33+ messages in thread
From: Thomas Gleixner @ 2011-01-13 19:13 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: Matthew Garrett, Manoj Iyer, linux-kernel, Rafael J. Wysocki,
	Herrmann3, Andreas

On Thu, 13 Jan 2011, Borislav Petkov wrote:

> On Thu, Jan 13, 2011 at 06:58:07PM +0000, Matthew Garrett wrote:
> > On Thu, Jan 13, 2011 at 07:51:49PM +0100, Thomas Gleixner wrote:
> > 
> > > What's odd is that the machines actually boot. I would have expected
> > > that they do not boot at all if the BIOS IRQ0 pin2 override is
> > > ignored. But it seems that takes effect just when the machine does a
> > > suspend/resume. Weird!
> > 
> > The only thing that springs to mind is some BIOS code making incorrect 
> > assumptions about timer setup when we trap into it. Is reprogramming the 
> > timer back to the boot state over suspend plausible? If so, that'd 
> > probably be a more general fix.
> 
> Well, Andreas did boot with 'hpet=verbose' on an affected machine here
> and did a suspend/resume and the hpet config registers looked ok before
> suspend and after resume. It might be that the HPET is temporarily
> "insane" while resume lasts but we don't have any hard facts confirming

And you have no explanation at all why applying the irq pin routing
quirk makes HPETs temporal insanity go away magically :)

Thanks,

	tglx

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 19:13                       ` Thomas Gleixner
@ 2011-01-13 19:28                         ` Borislav Petkov
  2011-01-13 19:41                           ` Thomas Gleixner
  0 siblings, 1 reply; 33+ messages in thread
From: Borislav Petkov @ 2011-01-13 19:28 UTC (permalink / raw)
  To: Thomas Gleixner
  Cc: Matthew Garrett, Manoj Iyer, linux-kernel, Rafael J. Wysocki,
	Herrmann3, Andreas

On Thu, Jan 13, 2011 at 08:13:42PM +0100, Thomas Gleixner wrote:
> > Well, Andreas did boot with 'hpet=verbose' on an affected machine here
> > and did a suspend/resume and the hpet config registers looked ok before
> > suspend and after resume. It might be that the HPET is temporarily
> > "insane" while resume lasts but we don't have any hard facts confirming
> 
> And you have no explanation at all why applying the irq pin routing
> quirk makes HPETs temporal insanity go away magically :)

But after the HPET counter wraps around, the machine is alive again.
Which means that the IRQ0 pin2 override is only temporarily needed after
resume... Strange.

-- 
Regards/Gruss,
Boris.

Advanced Micro Devices GmbH
Einsteinring 24, 85609 Dornach
General Managers: Alberto Bozzo, Andrew Bowd
Registration: Dornach, Gemeinde Aschheim, Landkreis Muenchen
Registergericht Muenchen, HRB Nr. 43632

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 19:28                         ` Borislav Petkov
@ 2011-01-13 19:41                           ` Thomas Gleixner
  2011-01-13 20:33                             ` Manoj Iyer
  2011-01-13 21:09                             ` Borislav Petkov
  0 siblings, 2 replies; 33+ messages in thread
From: Thomas Gleixner @ 2011-01-13 19:41 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: Matthew Garrett, Manoj Iyer, linux-kernel, Rafael J. Wysocki,
	Herrmann3, Andreas

On Thu, 13 Jan 2011, Borislav Petkov wrote:

> On Thu, Jan 13, 2011 at 08:13:42PM +0100, Thomas Gleixner wrote:
> > > Well, Andreas did boot with 'hpet=verbose' on an affected machine here
> > > and did a suspend/resume and the hpet config registers looked ok before
> > > suspend and after resume. It might be that the HPET is temporarily
> > > "insane" while resume lasts but we don't have any hard facts confirming
> > 
> > And you have no explanation at all why applying the irq pin routing
> > quirk makes HPETs temporal insanity go away magically :)
> 
> But after the HPET counter wraps around, the machine is alive again.
> Which means that the IRQ0 pin2 override is only temporarily needed after
> resume... Strange.

Thinking more about it:

Case 1:	IRQ0 pin2 override applied

     Resume hangs until HPET wraps around and issues another interrupt

Case 2: IRQ0 pin2 override ignored via quirk

     Resume just works

So the question is what is restored _AFTER_ the HPET is reprogrammed
in the resume path ?

The HPET reprogramming happens via timekeeping_resume() which is in
the sysdev part of resume. ioapic, apic, iommus etc. are also resumed
via the sysdev_class. So what makes sure that the ordering of these is
correct?

AFAICT nothing :)

We need information about the resume order of sysdev_class and the
difference of the pin routings in the quirk non/quirk case.

Thanks,

	tglx

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 19:41                           ` Thomas Gleixner
@ 2011-01-13 20:33                             ` Manoj Iyer
  2011-01-13 21:12                               ` Manoj Iyer
  2011-01-13 21:09                             ` Borislav Petkov
  1 sibling, 1 reply; 33+ messages in thread
From: Manoj Iyer @ 2011-01-13 20:33 UTC (permalink / raw)
  To: Thomas Gleixner
  Cc: Borislav Petkov, Matthew Garrett, linux-kernel,
	Rafael J. Wysocki, Herrmann3, Andreas

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

I have attached 4 dmesg outputs from AMD based thinkpad Edge 11.

1. dmesg output with kernel parameter acpi_skip_timer_override after
suspend/resume
2. dmesg output with kernel parameter acpi_skip_timer_override after system boot
3. dmesg output with nohpet kernel parameter after system boot
4. dmesg output of stock kernel with no kernel parameters.

I also noticed certain inaccuracies in my patch, but once we decide
what the right approach to the problem is I will be happy to send out
a new patch.

Many thanks
Manoj Iyer

On Thu, Jan 13, 2011 at 1:41 PM, Thomas Gleixner <tglx@linutronix.de> wrote:
> On Thu, 13 Jan 2011, Borislav Petkov wrote:
>
>> On Thu, Jan 13, 2011 at 08:13:42PM +0100, Thomas Gleixner wrote:
>> > > Well, Andreas did boot with 'hpet=verbose' on an affected machine here
>> > > and did a suspend/resume and the hpet config registers looked ok before
>> > > suspend and after resume. It might be that the HPET is temporarily
>> > > "insane" while resume lasts but we don't have any hard facts confirming
>> >
>> > And you have no explanation at all why applying the irq pin routing
>> > quirk makes HPETs temporal insanity go away magically :)
>>
>> But after the HPET counter wraps around, the machine is alive again.
>> Which means that the IRQ0 pin2 override is only temporarily needed after
>> resume... Strange.
>
> Thinking more about it:
>
> Case 1: IRQ0 pin2 override applied
>
>     Resume hangs until HPET wraps around and issues another interrupt
>
> Case 2: IRQ0 pin2 override ignored via quirk
>
>     Resume just works
>
> So the question is what is restored _AFTER_ the HPET is reprogrammed
> in the resume path ?
>
> The HPET reprogramming happens via timekeeping_resume() which is in
> the sysdev part of resume. ioapic, apic, iommus etc. are also resumed
> via the sysdev_class. So what makes sure that the ordering of these is
> correct?
>
> AFAICT nothing :)
>
> We need information about the resume order of sysdev_class and the
> difference of the pin routings in the quirk non/quirk case.
>
> Thanks,
>
>        tglx
>



-- 
--manjo

[-- Attachment #2: dmesg.acpi_skip_timer_override-after-sr --]
[-- Type: application/octet-stream, Size: 91909 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.35-24-generic-pae (buildd@platinum) (gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5) ) #42sutton03-Ubuntu SMP Thu Dec 16 03:27:29 UTC 2010 (Ubuntu 2.6.35-24.42sutton03-generic-pae 2.6.35.8)
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009dc00 (usable)
[    0.000000]  BIOS-e820: 000000000009dc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000d0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000006fe8e000 (usable)
[    0.000000]  BIOS-e820: 000000006fe8e000 - 000000006fea0000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000006fea0000 - 000000006feb1000 (ACPI data)
[    0.000000]  BIOS-e820: 000000006feb1000 - 000000006feb3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000006feb3000 - 000000006feff000 (reserved)
[    0.000000]  BIOS-e820: 000000006ff00000 - 0000000080000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI present.
[    0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x6fe8e max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-DFFFF write-back
[    0.000000]   E0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFFC0000000 write-back
[    0.000000]   1 base 000040000000 mask FFFFE0000000 write-back
[    0.000000]   2 base 000060000000 mask FFFFF0000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820 update range: 0000000000002000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (reserved)
[    0.000000]  modified: 0000000000001000 - 0000000000002000 (usable)
[    0.000000]  modified: 0000000000002000 - 0000000000010000 (reserved)
[    0.000000]  modified: 0000000000010000 - 000000000009dc00 (usable)
[    0.000000]  modified: 000000000009dc00 - 00000000000a0000 (reserved)
[    0.000000]  modified: 00000000000d0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 000000006fe8e000 (usable)
[    0.000000]  modified: 000000006fe8e000 - 000000006fea0000 (ACPI NVS)
[    0.000000]  modified: 000000006fea0000 - 000000006feb1000 (ACPI data)
[    0.000000]  modified: 000000006feb1000 - 000000006feb3000 (ACPI NVS)
[    0.000000]  modified: 000000006feb3000 - 000000006feff000 (reserved)
[    0.000000]  modified: 000000006ff00000 - 0000000080000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 00000000fec10000 (reserved)
[    0.000000]  modified: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  modified: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] initial memory mapped : 0 - 00e00000
[    0.000000] found SMP MP-table at [c00f7970] f7970
[    0.000000] init_memory_mapping: 0000000000000000-0000000037bfe000
[    0.000000]  0000000000 - 0000200000 page 4k
[    0.000000]  0000200000 - 0037a00000 page 2M
[    0.000000]  0037a00000 - 0037bfe000 page 4k
[    0.000000] kernel direct mapping tables up to 37bfe000 @ 15000-1a000
[    0.000000] RAMDISK: 370c3000 - 37ff0000
[    0.000000] Allocated new RAMDISK: 00a05000 - 0193123e
[    0.000000] Move RAMDISK from 00000000370c3000 - 0000000037fef23d to 00a05000 - 0193123d
[    0.000000] ACPI: RSDP 000f78c0 00024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 6fea234c 00084 (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: FACP 6feb0083 000F4 (v03 LENOVO TP-87    00001080 AMD  000F4240)
[    0.000000] ACPI: DSDT 6fea23d0 0DCB3 (v01 LENOVO TP-87    00001080 MSFT 03000001)
[    0.000000] ACPI: FACS 6feb2fc0 00040
[    0.000000] ACPI: TCPA 6feb01eb 00032 (v02 LENOVO TP-87    00001080 PTEC 00000000)
[    0.000000] ACPI: EINJ 6feb021d 001B0 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: HEST 6feb03cd 002E4 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: BERT 6feb06b1 00030 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: SSDT 6feb06e1 000E1 (v01 LENOVO TP-87    00001080 INTL 20050624)
[    0.000000] ACPI: ERST 6feb07c2 00270 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: SSDT 6feb0a32 00386 (v01 LENOVO TP-87    00001080 AMD  00000001)
[    0.000000] ACPI: APIC 6feb0db8 0005E (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: MCFG 6feb0e16 0003C (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: HPET 6feb0e52 00038 (v01 LENOVO TP-87    00001080  LTP 00000001)
[    0.000000] ACPI: SLIC 6feb0e8a 00176 (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 898MB HIGHMEM available.
[    0.000000] 891MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 37bfe000
[    0.000000]   low ram: 0 - 37bfe000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000001 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x00037bfe
[    0.000000]   HighMem  0x00037bfe -> 0x0006fe8e
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000001 -> 0x00000002
[    0.000000]     0: 0x00000010 -> 0x0000009d
[    0.000000]     0: 0x00000100 -> 0x0006fe8e
[    0.000000] On node 0 totalpages: 458268
[    0.000000] free_area_init_node: node 0, pgdat c0840a00, node_mem_map c1933020
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3950 pages, LIFO batch:0
[    0.000000]   Normal zone: 1752 pages used for memmap
[    0.000000]   Normal zone: 222502 pages, LIFO batch:31
[    0.000000]   HighMem zone: 1798 pages used for memmap
[    0.000000]   HighMem zone: 228234 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x8008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 low level)
[    0.000000] ACPI: BIOS IRQ0 pin2 override ignored.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x43538210 base: 0xfed00000
[    0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] early_res array is doubled to 64 at [16000 - 167ff]
[    0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000010000
[    0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
[    0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d0000
[    0.000000] PM: Registered nosave memory: 00000000000d0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:7ec00000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] PERCPU: Embedded 15 pages/cpu @c2800000 s39872 r0 d21568 u1048576
[    0.000000] pcpu-alloc: s39872 r0 d21568 u1048576 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 454686
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-24-generic-pae root=UUID=d5c705ef-5eb6-40af-9c36-2dccfbec5452 ro acpi_skip_timer_override quiet splash
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Enabling fast FPU save and restore... done.
[    0.000000] Enabling unmasked SIMD FPU exception support... done.
[    0.000000] Initializing CPU#0
[    0.000000] allocated 9167620 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Subtract (52 early reservations)
[    0.000000]   #1 [0000001000 - 0000002000]   EX TRAMPOLINE
[    0.000000]   #2 [0000100000 - 00009fc65c]   TEXT DATA BSS
[    0.000000]   #3 [00009fd000 - 0000a04130]             BRK
[    0.000000]   #4 [00000f7980 - 0000100000]   BIOS reserved
[    0.000000]   #5 [00000f7970 - 00000f7980]    MP-table mpf
[    0.000000]   #6 [000009dc00 - 000009e071]   BIOS reserved
[    0.000000]   #7 [000009e1bd - 00000f7970]   BIOS reserved
[    0.000000]   #8 [000009e071 - 000009e1bd]    MP-table mpc
[    0.000000]   #9 [0000010000 - 0000011000]      TRAMPOLINE
[    0.000000]   #10 [0000011000 - 0000015000]     ACPI WAKEUP
[    0.000000]   #11 [0000015000 - 0000016000]         PGTABLE
[    0.000000]   #12 [0000a05000 - 0001932000]     NEW RAMDISK
[    0.000000]   #13 [0001932000 - 0001933000]         BOOTMEM
[    0.000000]   #14 [0001933000 - 0002733000]         BOOTMEM
[    0.000000]   #15 [0002733000 - 0002733004]         BOOTMEM
[    0.000000]   #16 [0002733040 - 0002733100]         BOOTMEM
[    0.000000]   #17 [0002733100 - 00027331a8]         BOOTMEM
[    0.000000]   #18 [00027331c0 - 00027361c0]         BOOTMEM
[    0.000000]   #19 [00027361c0 - 000273626c]         BOOTMEM
[    0.000000]   #20 [0002736280 - 0002739280]         BOOTMEM
[    0.000000]   #21 [0002739280 - 00027392ad]         BOOTMEM
[    0.000000]   #22 [00027392c0 - 00027392ef]         BOOTMEM
[    0.000000]   #23 [0002739300 - 000273951c]         BOOTMEM
[    0.000000]   #24 [0002739540 - 0002739580]         BOOTMEM
[    0.000000]   #25 [0002739580 - 00027395c0]         BOOTMEM
[    0.000000]   #26 [00027395c0 - 0002739600]         BOOTMEM
[    0.000000]   #27 [0002739600 - 0002739640]         BOOTMEM
[    0.000000]   #28 [0002739640 - 0002739680]         BOOTMEM
[    0.000000]   #29 [0002739680 - 00027396c0]         BOOTMEM
[    0.000000]   #30 [00027396c0 - 0002739700]         BOOTMEM
[    0.000000]   #31 [0002739700 - 0002739740]         BOOTMEM
[    0.000000]   #32 [0002739740 - 0002739780]         BOOTMEM
[    0.000000]   #33 [0002739780 - 00027397c0]         BOOTMEM
[    0.000000]   #34 [00027397c0 - 0002739800]         BOOTMEM
[    0.000000]   #35 [0002739800 - 0002739840]         BOOTMEM
[    0.000000]   #36 [0002739840 - 0002739850]         BOOTMEM
[    0.000000]   #37 [0002739880 - 0002739890]         BOOTMEM
[    0.000000]   #38 [00027398c0 - 0002739947]         BOOTMEM
[    0.000000]   #39 [0002739980 - 0002739a07]         BOOTMEM
[    0.000000]   #40 [0002800000 - 000280f000]         BOOTMEM
[    0.000000]   #41 [0002900000 - 000290f000]         BOOTMEM
[    0.000000]   #42 [000273ba40 - 000273ba44]         BOOTMEM
[    0.000000]   #43 [000273ba80 - 000273ba84]         BOOTMEM
[    0.000000]   #44 [000273bac0 - 000273bac8]         BOOTMEM
[    0.000000]   #45 [000273bb00 - 000273bb08]         BOOTMEM
[    0.000000]   #46 [000273bb40 - 000273bbe0]         BOOTMEM
[    0.000000]   #47 [000273bc00 - 000273bc48]         BOOTMEM
[    0.000000]   #48 [000273bc80 - 000273fc80]         BOOTMEM
[    0.000000]   #49 [000273fc80 - 00027bfc80]         BOOTMEM
[    0.000000]   #50 [00027bfc80 - 00027ffc80]         BOOTMEM
[    0.000000]   #51 [000290f000 - 00031cd304]         BOOTMEM
[    0.000000] Initializing HighMem for node 0 (00037bfe:0006fe8e)
[    0.000000] Memory: 1784036k/1833528k available (5088k kernel code, 49036k reserved, 2437k data, 704k init, 920128k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff16000 - 0xfffff000   ( 932 kB)
[    0.000000]     pkmap   : 0xffc00000 - 0xffe00000   (2048 kB)
[    0.000000]     vmalloc : 0xf83fe000 - 0xffbfe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf7bfe000   ( 891 MB)
[    0.000000]       .init : 0xc085a000 - 0xc090a000   ( 704 kB)
[    0.000000]       .data : 0xc05f80da - 0xc0859648   (2437 kB)
[    0.000000]       .text : 0xc0100000 - 0xc05f80da   (5088 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU-based detection of stalled CPUs is disabled.
[    0.000000] 	Verbose stalled-CPUs detection is disabled.
[    0.000000] NR_IRQS:2304 nr_irqs:512
[    0.000000] Extended CMOS year: 2000
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1296.831 MHz processor.
[    0.004007] Calibrating delay loop (skipped), value calculated using timer frequency.. 2593.66 BogoMIPS (lpj=5187324)
[    0.004014] pid_max: default: 32768 minimum: 301
[    0.004037] Security Framework initialized
[    0.004058] AppArmor: AppArmor initialized
[    0.004061] Yama: becoming mindful.
[    0.004134] Mount-cache hash table entries: 512
[    0.004280] Initializing cgroup subsys ns
[    0.004285] Initializing cgroup subsys cpuacct
[    0.004291] Initializing cgroup subsys memory
[    0.004302] Initializing cgroup subsys devices
[    0.004306] Initializing cgroup subsys freezer
[    0.004309] Initializing cgroup subsys net_cls
[    0.004339] CPU: Physical Processor ID: 0
[    0.004342] CPU: Processor Core ID: 0
[    0.004346] mce: CPU supports 6 MCE banks
[    0.004360] using C1E aware idle routine
[    0.004370] Performance Events: AMD PMU driver.
[    0.004376] ... version:                0
[    0.004378] ... bit width:              48
[    0.004381] ... generic registers:      4
[    0.004384] ... value mask:             0000ffffffffffff
[    0.004387] ... max period:             00007fffffffffff
[    0.004390] ... fixed-purpose events:   0
[    0.004392] ... event mask:             000000000000000f
[    0.011486] ACPI: Core revision 20100428
[    0.032030] ftrace: converting mcount calls to 0f 1f 44 00 00
[    0.032043] ftrace: allocating 22392 entries in 44 pages
[    0.036104] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.036455] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
[    0.040000] ..MP-BIOS bug: 8254 timer not connected to IO-APIC
[    0.040000] ...trying to set up timer (IRQ0) through the 8259A ...
[    0.040000] ..... (found apic 0 pin 0) ...
[    0.080021] ....... works.
[    0.080024] CPU0: AMD Athlon(tm) II Neo K325 Dual-Core Processor stepping 03
[    0.084000] Booting Node   0, Processors  #1 Ok.
[    0.008000] Initializing CPU#1
[    0.172013] Brought up 2 CPUs
[    0.172017] Total of 2 processors activated (5187.20 BogoMIPS).
[    0.172029] System has AMD C1E enabled
[    0.172049] Switch to broadcast mode on CPU1
[    0.172422] Switch to broadcast mode on CPU0
[    0.172422] devtmpfs: initialized
[    0.173521] regulator: core version 0.5
[    0.173587] Time: 20:00:59  Date: 01/13/11
[    0.173644] NET: Registered protocol family 16
[    0.173704] Trying to unpack rootfs image as initramfs...
[    0.173817] EISA bus registered
[    0.173825] node 0 link 0: io port [1000, ffff]
[    0.173831] TOM: 0000000080000000 aka 2048M
[    0.173834] Fam 10h mmconf [e0000000, efffffff]
[    0.173838] node 0 link 0: mmio [80000000, bfffffff]
[    0.173843] node 0 link 0: mmio [c0000000, cfffffff]
[    0.173848] node 0 link 0: mmio [d0000000, d03fffff]
[    0.173852] node 0 link 0: mmio [d0400000, d05fffff]
[    0.173857] node 0 link 0: mmio [d0600000, dfffffff]
[    0.173861] node 0 link 0: mmio [e0000000, efffffff] ==> none
[    0.173866] node 0 link 0: mmio [f0000000, febfffff]
[    0.173871] node 0 link 0: mmio [fec00000, ffffffff]
[    0.173875] bus: [00, 1f] on node 0 link 0
[    0.173880] bus: 00 index 0 [io  0x0000-0xffff]
[    0.173884] bus: 00 index 1 [mem 0x80000000-0xdfffffff]
[    0.173887] bus: 00 index 2 [mem 0xf0000000-0xfcffffffff]
[    0.173901] ACPI: bus type pci registered
[    0.174032] PCI: MMCONFIG for domain 0000 [bus 00-08] at [mem 0xe0000000-0xe08fffff] (base 0xe0000000)
[    0.174037] PCI: not using MMCONFIG
[    0.174396] PCI: PCI BIOS revision 2.10 entry at 0xfdc8a, last bus=9
[    0.174400] PCI: Using configuration type 1 for base access
[    0.174402] PCI: Using configuration type 1 for extended access
[    0.174427] mtrr: your CPUs had inconsistent fixed MTRR settings
[    0.174430] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.174432] mtrr: probably your BIOS does not setup all CPUs.
[    0.174435] mtrr: corrected configuration.
[    0.180259] bio: create slab <bio-0> at 0
[    0.183306] ACPI: EC: Look up EC in DSDT
[    0.183708] \_SB_:_OSC evaluation returned wrong type
[    0.183708] _OSC request data:1 7 
[    0.192000] ACPI: BIOS _OSI(Linux) query ignored
[    0.192696] ACPI: OEMN 6feb1ab3 00131 (v01 AMD    NAHP     00000001 MSFT 03000001)
[    0.193547] ACPI: Enabled 1 new runtime GPEs, added 0 new wakeup GPEs
[    0.193554] ACPI: Dynamic OEM Table Load:
[    0.193558] ACPI: OEMN (null) 00131 (v01 AMD    NAHP     00000001 MSFT 03000001)
[    0.200266] ACPI: Interpreter enabled
[    0.200274] ACPI: (supports S0 S3 S4 S5)
[    0.200309] ACPI: Using IOAPIC for interrupt routing
[    0.200877] PCI: MMCONFIG for domain 0000 [bus 00-08] at [mem 0xe0000000-0xe08fffff] (base 0xe0000000)
[    0.201759] [Firmware Bug]: PCI: MMCONFIG at [mem 0xe0000000-0xe08fffff] not reserved in ACPI motherboard resources
[    0.201763] PCI: not using MMCONFIG
[    0.202379] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.202713] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.206651] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.212512] ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
[    0.212535] ACPI: No dock devices found.
[    0.212541] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.215028] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.219164] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.219171] pci_root PNP0A08:00: host bridge window [mem 0x80000000-0xdfffffff]
[    0.219175] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xffffffff]
[    0.219181] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.219184] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    0.219353] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
[    0.219358] pci 0000:00:04.0: PME# disabled
[    0.219415] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
[    0.219419] pci 0000:00:05.0: PME# disabled
[    0.219488] pci 0000:00:11.0: reg 10: [io  0x8440-0x8447]
[    0.219497] pci 0000:00:11.0: reg 14: [io  0x8430-0x8433]
[    0.219506] pci 0000:00:11.0: reg 18: [io  0x8420-0x8427]
[    0.219514] pci 0000:00:11.0: reg 1c: [io  0x8410-0x8413]
[    0.219523] pci 0000:00:11.0: reg 20: [io  0x8400-0x840f]
[    0.219532] pci 0000:00:11.0: reg 24: [mem 0xd0906800-0xd0906bff]
[    0.219606] pci 0000:00:12.0: reg 10: [mem 0xd0904000-0xd0904fff]
[    0.219684] pci 0000:00:12.2: reg 10: [mem 0xd0906000-0xd09060ff]
[    0.219744] pci 0000:00:12.2: supports D1 D2
[    0.219747] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.219753] pci 0000:00:12.2: PME# disabled
[    0.219789] pci 0000:00:13.0: reg 10: [mem 0xd0905000-0xd0905fff]
[    0.219866] pci 0000:00:13.2: reg 10: [mem 0xd0906400-0xd09064ff]
[    0.219925] pci 0000:00:13.2: supports D1 D2
[    0.219928] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.219934] pci 0000:00:13.2: PME# disabled
[    0.220085] pci 0000:00:14.2: reg 10: [mem 0xd0900000-0xd0903fff 64bit]
[    0.220135] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.220141] pci 0000:00:14.2: PME# disabled
[    0.220421] pci 0000:01:05.0: reg 10: [mem 0xc0000000-0xcfffffff pref]
[    0.220427] pci 0000:01:05.0: reg 14: [io  0x9000-0x90ff]
[    0.220434] pci 0000:01:05.0: reg 18: [mem 0xd0500000-0xd050ffff]
[    0.220445] pci 0000:01:05.0: reg 24: [mem 0xd0400000-0xd04fffff]
[    0.220465] pci 0000:01:05.0: supports D1 D2
[    0.220489] pci 0000:01:05.1: reg 10: [mem 0xd0510000-0xd0513fff]
[    0.220522] pci 0000:01:05.1: supports D1 D2
[    0.220570] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.220576] pci 0000:00:01.0:   bridge window [io  0x9000-0x9fff]
[    0.220581] pci 0000:00:01.0:   bridge window [mem 0xd0400000-0xd05fffff]
[    0.220588] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.220654] pci 0000:02:00.0: reg 10: [io  0xbc00-0xbcff]
[    0.220674] pci 0000:02:00.0: reg 18: [mem 0xd0200000-0xd0200fff 64bit pref]
[    0.220689] pci 0000:02:00.0: reg 20: [mem 0xd0000000-0xd0003fff 64bit pref]
[    0.220699] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[    0.220737] pci 0000:02:00.0: supports D1 D2
[    0.220740] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.220746] pci 0000:02:00.0: PME# disabled
[    0.228043] pci 0000:00:04.0: PCI bridge to [bus 02-07]
[    0.228054] pci 0000:00:04.0:   bridge window [io  0xa000-0xbfff]
[    0.228060] pci 0000:00:04.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.228068] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.228148] pci 0000:08:00.0: reg 10: [io  0xc000-0xc0ff]
[    0.228172] pci 0000:08:00.0: reg 18: [mem 0xd0600000-0xd0603fff 64bit]
[    0.228234] pci 0000:08:00.0: supports D1 D2
[    0.228238] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.228245] pci 0000:08:00.0: PME# disabled
[    0.236046] pci 0000:00:05.0: PCI bridge to [bus 08-08]
[    0.236056] pci 0000:00:05.0:   bridge window [io  0xc000-0xcfff]
[    0.236062] pci 0000:00:05.0:   bridge window [mem 0xd0600000-0xd06fffff]
[    0.236068] pci 0000:00:05.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.236152] pci 0000:00:14.4: PCI bridge to [bus 09-09] (subtractive decode)
[    0.236158] pci 0000:00:14.4:   bridge window [io  0xf000-0x0000] (disabled)
[    0.236165] pci 0000:00:14.4:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.236171] pci 0000:00:14.4:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.236176] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.236181] pci 0000:00:14.4:   bridge window [mem 0x80000000-0xdfffffff] (subtractive decode)
[    0.236185] pci 0000:00:14.4:   bridge window [mem 0xf0000000-0xffffffff] (subtractive decode)
[    0.236189] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.236193] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.236213] pci_bus 0000:00: on NUMA node 0
[    0.236225] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.236613] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB4_._PRT]
[    0.236742] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB5_._PRT]
[    0.236934] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
[    0.237086] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
[    0.244064] ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11) *0
[    0.244405] ACPI: PCI Interrupt Link [LNKB] (IRQs 10 11) *0
[    0.244727] ACPI: PCI Interrupt Link [LNKC] (IRQs 10 11) *0
[    0.245083] ACPI: PCI Interrupt Link [LNKD] (IRQs 10 11) *0
[    0.245403] ACPI: PCI Interrupt Link [LNKE] (IRQs 10 11) *0
[    0.245627] ACPI: PCI Interrupt Link [LNKF] (IRQs 10 11) *0
[    0.245852] ACPI: PCI Interrupt Link [LNKG] (IRQs 10 11) *0
[    0.246078] ACPI: PCI Interrupt Link [LNKH] (IRQs 10 11) *0
[    0.246259] HEST: HEST table parsing is initialized.
[    0.246372] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    0.246377] vgaarb: loaded
[    0.246575] SCSI subsystem initialized
[    0.248000] libata version 3.00 loaded.
[    0.248000] usbcore: registered new interface driver usbfs
[    0.248000] usbcore: registered new interface driver hub
[    0.248000] usbcore: registered new device driver usb
[    0.248000] ACPI: WMI: Mapper loaded
[    0.248000] PCI: Using ACPI for IRQ routing
[    0.248000] PCI: pci_cache_line_size set to 64 bytes
[    0.248000] reserve RAM buffer: 0000000000002000 - 000000000000ffff 
[    0.248000] reserve RAM buffer: 000000000009dc00 - 000000000009ffff 
[    0.248000] reserve RAM buffer: 000000006fe8e000 - 000000006fffffff 
[    0.248000] NetLabel: Initializing
[    0.248000] NetLabel:  domain hash size = 128
[    0.248000] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.248000] NetLabel:  unlabeled traffic allowed by default
[    0.248000] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.248000] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.249042] Switching to clocksource tsc
[    0.264261] AppArmor: AppArmor Filesystem Enabled
[    0.264284] pnp: PnP ACPI init
[    0.264311] ACPI: bus type pnp registered
[    0.271604] pnp: PnP ACPI: found 10 devices
[    0.271610] ACPI: ACPI bus type pnp unregistered
[    0.271616] PnPBIOS: Disabled by ACPI PNP
[    0.271643] system 00:01: [io  0x0f50-0x0f51] has been reserved
[    0.271650] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.271655] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.271670] system 00:08: [io  0x0220-0x022f] has been reserved
[    0.271675] system 00:08: [io  0x040b] has been reserved
[    0.271680] system 00:08: [io  0x04d0-0x04d1] has been reserved
[    0.271684] system 00:08: [io  0x04d6] has been reserved
[    0.271689] system 00:08: [io  0x0530-0x0537] has been reserved
[    0.271693] system 00:08: [io  0x0c00-0x0c01] has been reserved
[    0.271697] system 00:08: [io  0x0c14] has been reserved
[    0.271702] system 00:08: [io  0x0c50-0x0c52] has been reserved
[    0.271706] system 00:08: [io  0x0c6c] has been reserved
[    0.271710] system 00:08: [io  0x0c6f] has been reserved
[    0.271715] system 00:08: [io  0x0cd0-0x0cd1] has been reserved
[    0.271719] system 00:08: [io  0x0cd2-0x0cd3] has been reserved
[    0.271724] system 00:08: [io  0x0cd4-0x0cd5] has been reserved
[    0.271728] system 00:08: [io  0x0cd6-0x0cd7] has been reserved
[    0.271732] system 00:08: [io  0x0cd8-0x0cdf] has been reserved
[    0.271737] system 00:08: [io  0x8000-0x805f] has been reserved
[    0.271742] system 00:08: [io  0x8100-0x81ff window] has been reserved
[    0.271747] system 00:08: [io  0x8200-0x82ff window] has been reserved
[    0.271751] system 00:08: [io  0x0f40-0x0f47] has been reserved
[    0.271756] system 00:08: [io  0x087f] has been reserved
[    0.271766] system 00:09: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.271771] system 00:09: [mem 0xffe00000-0xffffffff] could not be reserved
[    0.271776] system 00:09: [mem 0xfec10000-0xfec1001f] has been reserved
[    0.271780] system 00:09: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.271785] system 00:09: [mem 0xfed61000-0xfed613ff] has been reserved
[    0.271789] system 00:09: [mem 0xfed80000-0xfed80fff] has been reserved
[    0.271794] system 00:09: [mem 0xfffffd00-0x10001fcff] could not be reserved
[    0.308428] pci 0000:00:04.0: BAR 14: assigned [mem 0x80000000-0x800fffff]
[    0.308434] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.308439] pci 0000:00:01.0:   bridge window [io  0x9000-0x9fff]
[    0.308445] pci 0000:00:01.0:   bridge window [mem 0xd0400000-0xd05fffff]
[    0.308450] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.308458] pci 0000:02:00.0: BAR 6: assigned [mem 0xd0020000-0xd003ffff pref]
[    0.308462] pci 0000:00:04.0: PCI bridge to [bus 02-07]
[    0.308466] pci 0000:00:04.0:   bridge window [io  0xa000-0xbfff]
[    0.308472] pci 0000:00:04.0:   bridge window [mem 0x80000000-0x800fffff]
[    0.308477] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.308484] pci 0000:00:05.0: PCI bridge to [bus 08-08]
[    0.308488] pci 0000:00:05.0:   bridge window [io  0xc000-0xcfff]
[    0.308494] pci 0000:00:05.0:   bridge window [mem 0xd0600000-0xd06fffff]
[    0.308498] pci 0000:00:05.0:   bridge window [mem pref disabled]
[    0.308504] pci 0000:00:14.4: PCI bridge to [bus 09-09]
[    0.308507] pci 0000:00:14.4:   bridge window [io  disabled]
[    0.308514] pci 0000:00:14.4:   bridge window [mem disabled]
[    0.308519] pci 0000:00:14.4:   bridge window [mem pref disabled]
[    0.308541]   alloc irq_desc for 16 on node -1
[    0.308544]   alloc kstat_irqs on node -1
[    0.308554] pci 0000:00:04.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.308559] pci 0000:00:04.0: setting latency timer to 64
[    0.308567]   alloc irq_desc for 17 on node -1
[    0.308570]   alloc kstat_irqs on node -1
[    0.308576] pci 0000:00:05.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    0.308581] pci 0000:00:05.0: setting latency timer to 64
[    0.308592] pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff]
[    0.308596] pci_bus 0000:00: resource 5 [mem 0x80000000-0xdfffffff]
[    0.308600] pci_bus 0000:00: resource 6 [mem 0xf0000000-0xffffffff]
[    0.308604] pci_bus 0000:00: resource 7 [io  0x0000-0x0cf7]
[    0.308607] pci_bus 0000:00: resource 8 [io  0x0d00-0xffff]
[    0.308611] pci_bus 0000:01: resource 0 [io  0x9000-0x9fff]
[    0.308615] pci_bus 0000:01: resource 1 [mem 0xd0400000-0xd05fffff]
[    0.308619] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.308624] pci_bus 0000:02: resource 0 [io  0xa000-0xbfff]
[    0.308627] pci_bus 0000:02: resource 1 [mem 0x80000000-0x800fffff]
[    0.308632] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.308636] pci_bus 0000:08: resource 0 [io  0xc000-0xcfff]
[    0.308639] pci_bus 0000:08: resource 1 [mem 0xd0600000-0xd06fffff]
[    0.308646] pci_bus 0000:09: resource 4 [mem 0x000a0000-0x000bffff]
[    0.308651] pci_bus 0000:09: resource 5 [mem 0x80000000-0xdfffffff]
[    0.308655] pci_bus 0000:09: resource 6 [mem 0xf0000000-0xffffffff]
[    0.308658] pci_bus 0000:09: resource 7 [io  0x0000-0x0cf7]
[    0.308662] pci_bus 0000:09: resource 8 [io  0x0d00-0xffff]
[    0.308714] NET: Registered protocol family 2
[    0.308800] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.309110] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.309932] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.310382] TCP: Hash tables configured (established 131072 bind 65536)
[    0.310386] TCP reno registered
[    0.310391] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.310406] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.310532] NET: Registered protocol family 1
[    0.310552] pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
[    0.342232] pci 0000:01:05.0: Boot video device
[    0.342249] PCI: CLS 32 bytes, default 64
[    0.342541] cpufreq-nforce2: No nForce2 chipset.
[    0.342577] Scanning for low memory corruption every 60 seconds
[    0.342759] audit: initializing netlink socket (disabled)
[    0.342774] type=2000 audit(1294948858.340:1): initialized
[    0.358517] highmem bounce pool size: 64 pages
[    0.358523] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.360397] VFS: Disk quotas dquot_6.5.2
[    0.360478] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.361271] fuse init (API version 7.14)
[    0.361391] msgmni has been set to 1687
[    0.361844] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.361849] io scheduler noop registered
[    0.361852] io scheduler deadline registered
[    0.361872] io scheduler cfq registered (default)
[    0.362018] pcieport 0000:00:04.0: setting latency timer to 64
[    0.362051]   alloc irq_desc for 40 on node -1
[    0.362054]   alloc kstat_irqs on node -1
[    0.362065] pcieport 0000:00:04.0: irq 40 for MSI/MSI-X
[    0.362152] pcieport 0000:00:05.0: setting latency timer to 64
[    0.362182]   alloc irq_desc for 41 on node -1
[    0.362185]   alloc kstat_irqs on node -1
[    0.362192] pcieport 0000:00:05.0: irq 41 for MSI/MSI-X
[    0.362293] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.362322] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.363025] ACPI: AC Adapter [ACAD] (off-line)
[    0.363111] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.363118] ACPI: Power Button [PWRB]
[    0.363197] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
[    0.363703] ACPI: Lid Switch [LID]
[    0.363796] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.363803] ACPI: Power Button [PWRF]
[    0.364120] ACPI: acpi_idle registered with cpuidle
[    0.364154] ACPI: processor limited to max C-state 1
[    0.369473] thermal LNXTHERM:01: registered as thermal_zone0
[    0.369489] ACPI: Thermal Zone [TZ00] (49 C)
[    0.369694] [Firmware Bug]: ERST: ERST table is invalid
[    0.369970] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.371785] brd: module loaded
[    0.372475] loop: module loaded
[    0.373138] Fixed MDIO Bus: probed
[    0.373180] PPP generic driver version 2.4.2
[    0.373223] tun: Universal TUN/TAP device driver, 1.6
[    0.373226] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.373335] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.373397] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.373423] ehci_hcd 0000:00:12.2: EHCI Host Controller
[    0.373464] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
[    0.373506] ehci_hcd 0000:00:12.2: debug port 1
[    0.373536] ehci_hcd 0000:00:12.2: irq 17, io mem 0xd0906000
[    0.373668] isapnp: Scanning for PnP cards...
[    0.428094] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    0.428270] hub 1-0:1.0: USB hub found
[    0.428277] hub 1-0:1.0: 5 ports detected
[    0.428369] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.428409] ehci_hcd 0000:00:13.2: EHCI Host Controller
[    0.428449] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
[    0.428486] ehci_hcd 0000:00:13.2: debug port 1
[    0.428499] ehci_hcd 0000:00:13.2: irq 17, io mem 0xd0906400
[    0.477380] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    0.477538] hub 2-0:1.0: USB hub found
[    0.477543] hub 2-0:1.0: 5 ports detected
[    0.477635] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.477676]   alloc irq_desc for 18 on node -1
[    0.477679]   alloc kstat_irqs on node -1
[    0.477688] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.477702] ohci_hcd 0000:00:12.0: OHCI Host Controller
[    0.477751] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
[    0.477788] ohci_hcd 0000:00:12.0: irq 18, io mem 0xd0904000
[    0.579691] hub 3-0:1.0: USB hub found
[    0.579739] hub 3-0:1.0: 5 ports detected
[    0.579819] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.579832] ohci_hcd 0000:00:13.0: OHCI Host Controller
[    0.579893] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 4
[    0.579914] ohci_hcd 0000:00:13.0: irq 18, io mem 0xd0905000
[    0.675453] hub 4-0:1.0: USB hub found
[    0.675461] hub 4-0:1.0: 5 ports detected
[    0.675544] uhci_hcd: USB Universal Host Controller Interface driver
[    0.675644] PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12
[    0.691234] i8042.c: Detected active multiplexing controller, rev 1.1.
[    0.698749] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.698757] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    0.698793] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    0.698824] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    0.698853] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    0.698990] mice: PS/2 mouse device common for all mice
[    0.699195] rtc_cmos 00:04: RTC can wake from S4
[    0.699241] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    0.699276] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.699415] device-mapper: uevent: version 1.0.3
[    0.706528] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com
[    0.790161] isapnp: No Plug & Play device found
[    0.790310] device-mapper: multipath: version 1.1.1 loaded
[    0.790314] device-mapper: multipath round-robin: version 1.0.0 loaded
[    0.790476] EISA: Probing bus 0 at eisa.0
[    0.790479] EISA: Cannot allocate resource for mainboard
[    0.790482] Cannot allocate resource for EISA slot 1
[    0.790485] Cannot allocate resource for EISA slot 2
[    0.790488] Cannot allocate resource for EISA slot 3
[    0.790491] Cannot allocate resource for EISA slot 4
[    0.790493] Cannot allocate resource for EISA slot 5
[    0.790496] Cannot allocate resource for EISA slot 6
[    0.790499] Cannot allocate resource for EISA slot 7
[    0.790502] Cannot allocate resource for EISA slot 8
[    0.790504] EISA: Detected 0 cards.
[    0.790596] cpuidle: using governor ladder
[    0.790599] cpuidle: using governor menu
[    0.791027] TCP cubic registered
[    0.791198] NET: Registered protocol family 10
[    0.791701] lo: Disabled Privacy Extensions
[    0.792104] NET: Registered protocol family 17
[    0.792139] powernow-k8: Found 1 AMD Athlon(tm) II Neo K325 Dual-Core Processor (2 cpu cores) (version 2.20.00)
[    0.792185] powernow-k8:    0 : pstate 0 (1300 MHz)
[    0.792188] powernow-k8:    1 : pstate 1 (1100 MHz)
[    0.792191] powernow-k8:    2 : pstate 2 (800 MHz)
[    0.792685] Using IPI No-Shortcut mode
[    0.792813] PM: Resume from disk failed.
[    0.792832] registered taskstats version 1
[    0.793152]   Magic number: 11:29:43
[    0.793292] rtc_cmos 00:04: setting system clock to 2011-01-13 20:01:00 UTC (1294948860)
[    0.793297] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.793300] EDD information not available.
[    0.815739] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    0.833567] Freeing initrd memory: 15540k freed
[    0.842960] Freeing unused kernel memory: 704k freed
[    0.843639] Write protecting the kernel text: 5092k
[    0.843754] Write protecting the kernel read-only data: 2016k
[    0.851095] ACPI: Battery Slot [BAT1] (battery present)
[    0.876074] udev[78]: starting version 163
[    0.962150] usb 1-5: new high speed USB device using ehci_hcd and address 3
[    1.052978] Linux agpgart interface v0.103
[    1.053430] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    1.053459] r8169 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.053513] r8169 0000:02:00.0: setting latency timer to 64
[    1.053557]   alloc irq_desc for 42 on node -1
[    1.053560]   alloc kstat_irqs on node -1
[    1.053578] r8169 0000:02:00.0: irq 42 for MSI/MSI-X
[    1.054314] r8169 0000:02:00.0: eth0: RTL8168d/8111d at 0xf84e0000, 60:eb:69:03:1e:9a, XID 083000c0 IRQ 42
[    1.070147] ahci 0000:00:11.0: version 3.0
[    1.070202]   alloc irq_desc for 19 on node -1
[    1.070206]   alloc kstat_irqs on node -1
[    1.070217] ahci 0000:00:11.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[    1.070275]   alloc irq_desc for 43 on node -1
[    1.070278]   alloc kstat_irqs on node -1
[    1.070290] ahci 0000:00:11.0: irq 43 for MSI/MSI-X
[    1.070375] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[    1.070381] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part sxs 
[    1.093055] scsi0 : ahci
[    1.093314] scsi1 : ahci
[    1.093555] ata1: SATA max UDMA/133 abar m1024@0xd0906800 port 0xd0906900 irq 43
[    1.093561] ata2: SATA max UDMA/133 abar m1024@0xd0906800 port 0xd0906980 irq 43
[    1.094471] [drm] Initialized drm 1.1.0 20060810
[    1.115084] usb 1-5: config 1 has an invalid interface number: 1 but max is 0
[    1.115091] usb 1-5: config 1 has no interface number 0
[    1.148609] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    1.150336] acpi device:30: registered as cooling_device2
[    1.150735] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:2f/LNXVIDEO:02/input/input4
[    1.150801] ACPI: Video Device [VGA2] (multi-head: yes  rom: no  post: no)
[    1.228093] usb 2-2: new high speed USB device using ehci_hcd and address 2
[    1.386522] Initializing USB Mass Storage driver...
[    1.386683] scsi2 : usb-storage 2-2:1.0
[    1.386801] usbcore: registered new interface driver usb-storage
[    1.386804] USB Mass Storage support registered.
[    1.413117] ata2: SATA link down (SStatus 0 SControl 300)
[    1.484103] usb 2-3: new high speed USB device using ehci_hcd and address 3
[    1.584082] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.585205] ata1.00: ATA-8: HITACHI HTS545025B9A300, PB2ZC61H, max UDMA/100
[    1.585212] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.586613] ata1.00: configured for UDMA/100
[    1.601362] scsi 0:0:0:0: Direct-Access     ATA      HITACHI HTS54502 PB2Z PQ: 0 ANSI: 5
[    1.601621] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.601698] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    1.601882] sd 0:0:0:0: [sda] Write Protect is off
[    1.601887] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.601938] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.602778]  sda:
[    1.884088] usb 3-4: new full speed USB device using ohci_hcd and address 2
[    1.936453]  sda1 sda2
[    1.955349] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.009823] [drm] radeon defaulting to kernel modesetting.
[    2.009828] [drm] radeon kernel modesetting enabled.
[    2.009932] radeon 0000:01:05.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.009939] radeon 0000:01:05.0: setting latency timer to 64
[    2.012221] [drm] initializing kernel modesetting (RS880 0x1002:0x9712).
[    2.012375] [drm] register mmio base: 0xD0500000
[    2.012379] [drm] register mmio size: 65536
[    2.012569] ATOM BIOS: Lenovo_PS2A
[    2.012596] [drm] Clocks initialized !
[    2.012609] radeon 0000:01:05.0: VRAM: 256M 0xC0000000 - 0xCFFFFFFF (256M used)
[    2.012614] radeon 0000:01:05.0: GTT: 512M 0xA0000000 - 0xBFFFFFFF
[    2.013086] [drm] Detected VRAM RAM=256M, BAR=256M
[    2.013093] [drm] RAM width 32bits DDR
[    2.013217] [TTM] Zone  kernel: Available graphics memory: 440076 kiB.
[    2.013223] [TTM] Zone highmem: Available graphics memory: 900140 kiB.
[    2.013226] [TTM] Initializing pool allocator.
[    2.013255] [drm] radeon: 256M of VRAM memory ready
[    2.013258] [drm] radeon: 512M of GTT memory ready.
[    2.013306] [drm] radeon: irq initialized.
[    2.013310] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    2.014456] [drm] Loading RS780 Microcode
[    2.058232] [drm] ring test succeeded in 0 usecs
[    2.058489] [drm] radeon: ib pool ready.
[    2.058586] [drm] ib test succeeded in 0 usecs
[    2.058590] [drm] Enabling audio support
[    2.058902] [drm] Unknown TV standard; defaulting to NTSC
[    2.059135] [drm] Radeon Display Connectors
[    2.059138] [drm] Connector 0:
[    2.059140] [drm]   VGA
[    2.059144] [drm]   DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
[    2.059147] [drm]   Encoders:
[    2.059150] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    2.059152] [drm] Connector 1:
[    2.059154] [drm]   LVDS
[    2.059158] [drm]   DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
[    2.059160] [drm]   Encoders:
[    2.059163] [drm]     LCD1: INTERNAL_KLDSCP_LVTMA
[    2.059165] [drm] Connector 2:
[    2.059167] [drm]   HDMI-A
[    2.059169] [drm]   HPD1
[    2.059173] [drm]   DDC: 0x7e20 0x7e20 0x7e24 0x7e24 0x7e28 0x7e28 0x7e2c 0x7e2c
[    2.059176] [drm]   Encoders:
[    2.059178] [drm]     DFP1: INTERNAL_UNIPHY
[    2.119991] [drm] radeon: power management initialized
[    2.202314] [drm] fb mappable at 0xC0141000
[    2.202318] [drm] vram apper at 0xC0000000
[    2.202321] [drm] size 4325376
[    2.202324] [drm] fb depth is 24
[    2.202326] [drm]    pitch is 5632
[    2.387621] scsi 2:0:0:0: Direct-Access     Generic- Multi-Card       1.00 PQ: 0 ANSI: 0 CCS
[    2.388557] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    2.394704] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[    3.155648] Console: switching to colour frame buffer device 170x48
[    3.171186] fb0: radeondrmfb frame buffer device
[    3.171189] drm: registered panic notifier
[    3.171215] Slow work thread pool: Starting up
[    3.171382] Slow work thread pool: Ready
[    3.171399] [drm] Initialized radeon 2.5.0 20080528 for 0000:01:05.0 on minor 0
[    3.997733] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   12.954460] udev[422]: starting version 163
[   13.060244] Adding 7807584k swap on /dev/sda2.  Priority:-1 extents:1 across:7807584k 
[   13.072256] lp: driver loaded but no devices found
[   13.153184] shpchp 0000:00:01.0: HPC vendor_id 1022 device_id 9602 ss_vid 1022 ss_did 9602
[   13.153192] shpchp 0000:00:01.0: Cannot reserve MMIO region
[   13.153272] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   13.212216] ACPI: resource piix4_smbus [io  0x8040-0x8047] conflicts with ACPI region SMB0 [??? 0x00008040-0x0000804f flags 0x30]
[   13.212223] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   13.387610] Non-volatile memory driver v1.3
[   13.429707] Bluetooth: Core ver 2.15
[   13.429825] NET: Registered protocol family 31
[   13.429829] Bluetooth: HCI device and connection manager initialized
[   13.429834] Bluetooth: HCI socket layer initialized
[   13.432729] Bluetooth: Generic Bluetooth USB driver ver 0.6
[   13.435312] EXT4-fs (sda1): warning: maximal mount count reached, running e2fsck is recommended
[   13.446134] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   13.449284] usbcore: registered new interface driver usbserial
[   13.449339] USB Serial support registered for generic
[   13.449777] Linux video capture interface: v2.00
[   13.455618] uvcvideo: Found UVC 1.00 device Integrated Camera (04f2:b1b4)
[   13.456235] usbcore: registered new interface driver btusb
[   13.457345] usbcore: registered new interface driver usbserial_generic
[   13.457352] usbserial: USB Serial Driver core
[   13.496820] USB Serial support registered for Qualcomm USB modem
[   13.497126] qcserial 1-5:1.1: Qualcomm USB modem converter detected
[   13.497180] input: Integrated Camera as /devices/pci0000:00/0000:00:13.2/usb2/2-3/2-3:1.0/input/input5
[   13.497303] usbcore: registered new interface driver uvcvideo
[   13.497307] USB Video Class driver (v0.1.0)
[   13.498397] usb 1-5: Qualcomm USB modem converter now attached to ttyUSB0
[   13.498430] usbcore: registered new interface driver qcserial
[   13.500108] type=1400 audit(1294948873.204:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient3" pid=717 comm="apparmor_parser"
[   13.500566] type=1400 audit(1294948873.204:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=717 comm="apparmor_parser"
[   13.500827] type=1400 audit(1294948873.204:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=717 comm="apparmor_parser"
[   13.835431] thinkpad_acpi: ThinkPad ACPI Extras v0.24
[   13.835436] thinkpad_acpi: http://ibm-acpi.sf.net/
[   13.835440] thinkpad_acpi: ThinkPad BIOS 87ET34WW (1.08 ), EC 87HT20WW-1.165000
[   13.835444] thinkpad_acpi: Lenovo ThinkPad Edge, model 254523U
[   13.840149] thinkpad_acpi: detected a 16-level brightness capable ThinkPad
[   13.843061] thinkpad_acpi: radio switch found; radios are enabled
[   13.843127] thinkpad_acpi: possible tablet mode switch found; ThinkPad in laptop mode
[   13.843155] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
[   13.843159] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
[   13.846456] thinkpad_acpi: asked for hotkey mask 0x04000070, but firmware forced it to 0x00000070
[   13.866931] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
[   13.885848] thinkpad_acpi: rfkill switch tpacpi_wwan_sw: radio is unblocked
[   13.885924] Registered led device: tpacpi::thinklight
[   13.885956] Registered led device: tpacpi::power
[   13.885984] Registered led device: tpacpi::standby
[   13.886005] Registered led device: tpacpi::thinkvantage
[   13.911284] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one.
[   13.911426] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
[   13.922022] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input6
[   13.969425] type=1400 audit(1294948873.672:5): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=949 comm="apparmor_parser"
[   13.974262] type=1400 audit(1294948873.676:6): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=950 comm="apparmor_parser"
[   13.974725] type=1400 audit(1294948873.676:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=950 comm="apparmor_parser"
[   13.974986] type=1400 audit(1294948873.676:8): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=950 comm="apparmor_parser"
[   13.986153] type=1400 audit(1294948873.688:9): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=951 comm="apparmor_parser"
[   13.996446] type=1400 audit(1294948873.700:10): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=953 comm="apparmor_parser"
[   13.997067] type=1400 audit(1294948873.700:11): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=953 comm="apparmor_parser"
[   14.072883] r8169 0000:02:00.0: eth0: link down
[   14.073231] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   14.207715] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   14.207791] ALSA hda_intel.c:2561: chipset global capabilities = 0x4401
[   14.237061] ALSA hda_intel.c:914: codec_mask = 0x1
[   14.246294] ALSA hda_intel.c:1354: codec #0 probed OK
[   14.274848] Bluetooth: L2CAP ver 2.14
[   14.274853] Bluetooth: L2CAP socket layer initialized
[   14.291676] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   14.291682] Bluetooth: BNEP filters: protocol multicast
[   14.300909] Bluetooth: SCO (Voice Link) ver 0.6
[   14.300915] Bluetooth: SCO socket layer initialized
[   14.368041] ALSA hda_codec.c:3726: hda_codec: model 'ideapad' is selected for config 17aa:0 (Lenovo)
[   14.368142] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input7
[   14.368496] ALSA patch_conexant.c:3044: CXT5066: init
[   14.369103] Synaptics Touchpad, model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd047b1/0xb40000/0xa0000
[   14.369115] serio: Synaptics pass-through port at isa0060/serio4/input0
[   14.369369] ALSA patch_conexant.c:2386: CXT5066: hp automute portA=0 portD=0 present=0
[   14.369375] ALSA patch_conexant.c:2125: CXT5066: update speaker, hp_present=0, cur_eapd=0
[   14.369531] ALSA patch_conexant.c:2310: CXT5066: external microphone absent
[   14.369907] HDA Intel 0000:01:05.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[   14.369967] HDA Intel 0000:01:05.1: setting latency timer to 64
[   14.369973] ALSA hda_intel.c:2561: chipset global capabilities = 0x1001
[   14.384036] ALSA hda_intel.c:914: codec_mask = 0x1
[   14.385238] ALSA hda_intel.c:1354: codec #0 probed OK
[   14.415849] Bluetooth: RFCOMM TTY layer initialized
[   14.415858] Bluetooth: RFCOMM socket layer initialized
[   14.415862] Bluetooth: RFCOMM ver 1.11
[   14.418781] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input8
[   14.616961] ppdev: user-space parallel port driver
[   14.685100] ALSA patch_conexant.c:2125: CXT5066: update speaker, hp_present=0, cur_eapd=1
[   15.105801] ALSA patch_conexant.c:2125: CXT5066: update speaker, hp_present=0, cur_eapd=0
[   15.317510] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=600
[   16.568384] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.568413] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   16.576066] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.576081] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   16.577863] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   16.577925] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   16.582048] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   16.582064] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   16.582087] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   16.582096] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   16.637510] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.637747] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.638108] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.638646] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.638863] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.639074] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.639394] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.639918] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.640136] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.640348] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.640664] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.641207] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.641423] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.641632] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.641946] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.642470] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.642686] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.642899] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.643217] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.643729] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.644536] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.644551] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   16.649127] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.649144] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   16.649603] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.649841] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.650196] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.650735] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.651492] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.651506] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   16.660147] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.660163] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   16.660223] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.660248] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.661333] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.662533] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.663079] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.663560] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.664265] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.665169] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.665649] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.666117] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.666780] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.667667] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.668159] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.668627] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.669293] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.670182] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.670657] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.671127] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.671789] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.672706] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.673181] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.673648] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.674310] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.675196] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.675612] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.676039] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.676471] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.676904] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.677310] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.677711] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.678133] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.678565] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.678969] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.679372] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.679795] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.680242] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.680643] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.681045] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.681530] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.681958] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.682363] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.682766] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.683191] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.683625] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.687879] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.688339] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.688772] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.689206] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.689620] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.690034] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.690456] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.690886] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.691297] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.691698] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.692177] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.692608] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.693013] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.693373] hda-intel: IRQ timing workaround is activated for card #1. Suggest a bigger bdl_pos_adj.
[   16.693418] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.693839] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.694269] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.694674] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.695070] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.695490] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.695915] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.696423] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.696898] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.697574] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.698472] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.698950] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.699423] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.700124] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.701019] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.701503] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.701973] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.702645] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.703537] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.704044] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.704525] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.705194] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.706085] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.706562] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.707031] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.707698] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.708614] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.709101] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.709577] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.710249] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.711142] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.711623] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.712115] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.712782] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.713672] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.714160] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.714632] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.715297] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.716207] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.716686] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.717165] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.717835] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.718732] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.719213] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.719684] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.720373] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.721262] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.728244] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.728462] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.728787] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.729301] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.730009] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.730023] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   16.730071] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.730082] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   16.730102] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.730119] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.733075] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   16.733092] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   16.733134] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   16.733146] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   16.746867] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   16.746883] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   16.746925] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   16.746936] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   17.642229] psmouse serio5: ID: 10 00 64
[   17.899237] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=600
[   22.106556] IBM TrackPoint firmware: 0x0e, buttons: 3/3
[   22.116677] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   22.116704] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   22.118091] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   22.118150] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   22.399157] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio4/serio5/input/input9
[   23.748793] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   23.748842] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.840941] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   28.840959] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   28.840986] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   28.840995] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   28.842537] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   28.842585] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   28.846951] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   28.846966] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   28.846989] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   28.846998] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   29.052113] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.052448] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.052906] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.053584] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.053898] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.054201] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.054610] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.055213] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.055523] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.055826] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.056234] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.056839] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.057180] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.057481] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.057888] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.058488] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.058794] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.059095] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.059500] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.060103] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.060955] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   29.060970] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   29.061020] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   29.061037] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   29.061363] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.061673] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.062051] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.062592] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.063309] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   29.063322] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   29.063350] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   29.063361] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   29.063383] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.063406] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.064362] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.064389] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.064910] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.065442] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.066141] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.067063] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.067573] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.068073] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.068769] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.069708] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.070218] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.070721] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.071417] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.072336] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.072842] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.073570] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.074279] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.075195] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.075701] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.076201] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.076894] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.077833] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.078277] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.078705] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.079151] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.079605] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.080038] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.080456] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.080902] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.081571] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.082006] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.082438] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.082885] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.083343] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.083773] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.084208] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.084654] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.085135] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.085568] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.085993] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.086438] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.086893] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.087328] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.087752] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.088209] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.088662] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.089116] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.089544] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.089992] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.090450] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.090884] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.091309] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.091757] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.092212] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.092641] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.093098] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.093548] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.094003] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.094431] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.094856] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.095310] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.095762] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.096279] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.096784] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.097490] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.098414] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.098926] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.099428] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.100127] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.101102] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.101613] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.102118] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.102816] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.103731] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.104242] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.104744] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.105554] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.106474] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.106981] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.107477] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.108174] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.109107] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.109610] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.110108] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.110797] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.111710] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.112214] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.112711] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.113428] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.114344] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.114849] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.115346] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.116039] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.116956] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.118239] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.118777] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.119481] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.120393] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.120900] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.121547] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.122247] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.123161] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.131170] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.131406] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.131743] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.132291] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.133057] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   29.133072] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   29.133118] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   29.133129] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   29.133156] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.133179] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.136161] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   29.136178] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   29.136221] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   29.136233] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   29.161225] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   29.161242] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   29.161283] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   29.161295] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   34.561951] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   34.561982] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   34.564454] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   34.564536] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   43.426404] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   43.426448] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   72.883903] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=0
[   73.973673] usb 3-4: USB disconnect, address 2
[   73.974045] btusb_intr_complete: hci0 urb f3428280 failed to resubmit (19)
[   73.974057] btusb_bulk_complete: hci0 urb f3428300 failed to resubmit (19)
[   73.975053] btusb_bulk_complete: hci0 urb f3428400 failed to resubmit (19)
[   73.975392] btusb_send_frame: hci0 urb f2559e00 submission failed
[   74.373640] PM: Syncing filesystems ... done.
[   74.376523] PM: Preparing system for mem sleep
[   74.576526] Freezing user space processes ... (elapsed 0.01 seconds) done.
[   74.592098] Freezing remaining freezable tasks ... (elapsed 0.09 seconds) done.
[   74.688094] PM: Entering mem sleep
[   74.688119] Suspending console(s) (use no_console_suspend to debug)
[   74.865469] PM: suspend of drv:psmouse dev:serio5 complete after 177.089 msecs
[   74.865717] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[   74.865832] sd 0:0:0:0: [sda] Stopping disk
[   74.926285] ACPI handle has no context!
[   74.927030] ohci_hcd 0000:00:13.0: PCI INT A disabled
[   74.927121] ohci_hcd 0000:00:12.0: PCI INT A disabled
[   74.940100] ehci_hcd 0000:00:12.2: PCI INT B disabled
[   74.940119] ehci_hcd 0000:00:13.2: PCI INT B disabled
[   75.029087] HDA Intel 0000:01:05.1: PCI INT B disabled
[   75.029110] ACPI handle has no context!
[   75.032900] HDA Intel 0000:00:14.2: PCI INT A disabled
[   75.045067] PM: suspend of drv:HDA Intel dev:0000:01:05.1 complete after 118.673 msecs
[   75.045138] PM: suspend of drv:HDA Intel dev:0000:00:14.2 complete after 118.281 msecs
[   75.311724] PM: suspend of drv:sd dev:0:0:0:0 complete after 446.008 msecs
[   75.311767] PM: suspend of drv:scsi dev:target0:0:0 complete after 445.993 msecs
[   75.311791] PM: suspend of drv:scsi dev:host0 complete after 445.881 msecs
[   75.357170] PM: suspend of drv:ahci dev:0000:00:11.0 complete after 430.003 msecs
[   75.955598] [drm] Disabling audio support
[   76.071467] radeon 0000:01:05.0: PCI INT A disabled
[   76.088079] PM: suspend of drv:radeon dev:0000:01:05.0 complete after 1161.650 msecs
[   76.088123] PM: suspend of drv:pci dev:0000:00:01.0 complete after 1160.834 msecs
[   76.088151] PM: suspend of drv: dev:pci0000:00 complete after 1160.783 msecs
[   76.088161] PM: suspend of devices complete after 1399.797 msecs
[   76.088166] PM: suspend devices took 1.396 seconds
[   76.088386] r8169 0000:02:00.0: PME# enabled
[   76.088403] pcieport 0000:00:04.0: wake-up capability enabled by ACPI
[   76.132159] PM: late suspend of devices complete after 43.983 msecs
[   76.152172] ACPI: Preparing to enter system sleep state S3
[   76.264239] PM: Saving platform NVS memory
[   76.266858] Disabling non-boot CPUs ...
[   76.267039] Broke affinity for irq 1
[   76.267057] Broke affinity for irq 9
[   76.267065] Broke affinity for irq 12
[   76.268099] CPU 1 is now offline
[   76.268103] SMP alternatives: switching to UP code
[   76.275669] Extended CMOS year: 2000
[   76.275669] Back to C!
[   76.275669] PM: Restoring platform NVS memory
[   76.275669] Extended CMOS year: 2000
[   76.275669] Enabling non-boot CPUs ...
[   76.275669] SMP alternatives: switching to SMP code
[   76.282910] Booting Node 0 Processor 1 APIC 0x1
[   76.275152] Initializing CPU#1
[   76.392238] Switch to broadcast mode on CPU1
[   76.424477] CPU1 is up
[   76.424799] ACPI: Waking up from system sleep state S3
[   76.597346] pci 0000:00:01.0: restoring config space at offset 0x9 (was 0x10001, writing 0xcff1c001)
[   76.597382] pcieport 0000:00:04.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10008)
[   76.597425] pcieport 0000:00:05.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10008)
[   76.597482] ahci 0000:00:11.0: restoring config space at offset 0x1 (was 0x2300007, writing 0x2300407)
[   76.612079] ehci_hcd 0000:00:12.2: BAR 0: set to [mem 0xd0906000-0xd09060ff] (PCI address [0xd0906000-0xd09060ff]
[   76.612118] ehci_hcd 0000:00:12.2: restoring config space at offset 0x1 (was 0x2b00000, writing 0x2b00013)
[   76.628083] ehci_hcd 0000:00:13.2: BAR 0: set to [mem 0xd0906400-0xd09064ff] (PCI address [0xd0906400-0xd09064ff]
[   76.628122] ehci_hcd 0000:00:13.2: restoring config space at offset 0x1 (was 0x2b00000, writing 0x2b00013)
[   76.628175] HDA Intel 0000:00:14.2: restoring config space at offset 0xf (was 0x10b, writing 0xb)
[   76.628198] HDA Intel 0000:00:14.2: restoring config space at offset 0x1 (was 0x4100006, writing 0x4100002)
[   76.628335] HDA Intel 0000:01:05.1: restoring config space at offset 0xf (was 0x2ff, writing 0x205)
[   76.628349] HDA Intel 0000:01:05.1: restoring config space at offset 0x4 (was 0x0, writing 0xd0510000)
[   76.628354] HDA Intel 0000:01:05.1: restoring config space at offset 0x3 (was 0x800000, writing 0x800008)
[   76.628361] HDA Intel 0000:01:05.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100003)
[   76.628395] r8169 0000:02:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10b)
[   76.628410] r8169 0000:02:00.0: restoring config space at offset 0x8 (was 0xc, writing 0xd000000c)
[   76.628418] r8169 0000:02:00.0: restoring config space at offset 0x6 (was 0xc, writing 0xd020000c)
[   76.628426] r8169 0000:02:00.0: restoring config space at offset 0x4 (was 0x1, writing 0xbc01)
[   76.628432] r8169 0000:02:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x8)
[   76.628440] r8169 0000:02:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[   76.628507] pci 0000:08:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10a)
[   76.628527] pci 0000:08:00.0: restoring config space at offset 0x6 (was 0x4, writing 0xd0600004)
[   76.628536] pci 0000:08:00.0: restoring config space at offset 0x4 (was 0x1, writing 0xc001)
[   76.628544] pci 0000:08:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x8)
[   76.628554] pci 0000:08:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[   76.628665] PM: early resume of devices complete after 31.386 msecs
[   76.628878] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[   76.628906] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[   76.629028] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[   76.629108] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[   76.629118] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   76.629189] radeon 0000:01:05.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[   76.629195] HDA Intel 0000:01:05.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[   76.629200] radeon 0000:01:05.0: setting latency timer to 64
[   76.629204] HDA Intel 0000:01:05.1: setting latency timer to 64
[   76.629243] pcieport 0000:00:04.0: wake-up capability disabled by ACPI
[   76.629249] r8169 0000:02:00.0: PME# disabled
[   76.630083] [drm] Clocks initialized !
[   76.632608] sd 0:0:0:0: [sda] Starting disk
[   76.704756] [drm] ring test succeeded in 0 usecs
[   76.704779] [drm] ib test succeeded in 0 usecs
[   76.704782] [drm] Enabling audio support
[   76.736121] PM: resume of drv:usb dev:usb3 complete after 103.712 msecs
[   76.736156] PM: resume of drv:usb dev:usb4 complete after 103.713 msecs
[   76.736167] PM: resume of drv:hub dev:4-0:1.0 complete after 103.704 msecs
[   76.736180] PM: resume of drv:hub dev:3-0:1.0 complete after 103.756 msecs
[   76.785047] PM: resume of drv:usb dev:usb2 complete after 153.612 msecs
[   76.785076] PM: resume of drv:usb dev:usb1 complete after 155.820 msecs
[   76.785123] PM: resume of drv:hub dev:1-0:1.0 complete after 155.485 msecs
[   76.785174] PM: resume of drv:hub dev:2-0:1.0 complete after 152.795 msecs
[   76.898034] usb 1-5: reset high speed USB device using ehci_hcd and address 3
[   76.952073] ata2: SATA link down (SStatus 0 SControl 300)
[   77.031901] qcserial 1-5:1.1: no reset_resume for driver qcserial?
[   77.032060] qcserial ttyUSB0: Qualcomm USB modem converter now disconnected from ttyUSB0
[   77.032074] qcserial 1-5:1.1: device disconnected
[   77.032083] PM: resume of drv:usb dev:1-5 complete after 399.596 msecs
[   77.032120] PM: resume of drv:usb dev:1-5:1.1 complete after 399.608 msecs
[   77.032142] PM: resume of drv: dev:ep_81 complete after 235.251 msecs
[   77.141093] usb 2-3: reset high speed USB device using ehci_hcd and address 3
[   77.345098] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[   77.353719] ata1.00: configured for UDMA/100
[   77.385090] usb 2-2: reset high speed USB device using ehci_hcd and address 2
[   77.395679] PM: resume of drv:sd dev:0:0:0:0 complete after 763.069 msecs
[   77.395717] PM: resume of drv:scsi_device dev:0:0:0:0 complete after 763.056 msecs
[   77.530254] PM: resume of drv:usb dev:2-2 complete after 897.724 msecs
[   77.530294] PM: resume of drv:usb-storage dev:2-2:1.0 complete after 897.744 msecs
[   77.530316] PM: resume of drv:scsi dev:host2 complete after 897.752 msecs
[   77.530334] PM: resume of drv: dev:ep_01 complete after 498.178 msecs
[   77.530340] PM: resume of drv:scsi dev:target2:0:0 complete after 897.607 msecs
[   77.530353] PM: resume of drv:scsi_host dev:host2 complete after 897.769 msecs
[   77.530360] PM: resume of drv:sd dev:2:0:0:0 complete after 897.607 msecs
[   77.530373] PM: resume of drv:scsi_device dev:2:0:0:0 complete after 897.609 msecs
[   77.799218] PM: resume of drv:usb dev:2-3 complete after 1166.535 msecs
[   77.799251] PM: resume of drv:uvcvideo dev:2-3:1.1 complete after 1166.536 msecs
[   77.799262] PM: resume of drv:uvcvideo dev:2-3:1.0 complete after 1166.559 msecs
[   77.799282] PM: resume of drv: dev:ep_83 complete after 268.934 msecs
[   77.925070] [drm:atom_op_jump] *ERROR* atombios stuck in loop for more than 1sec aborting
[   77.925079] [drm:atom_execute_table_locked] *ERROR* atombios stuck executing E96A (len 498, WS 0, PS 4) @ 0xE9AB
[   78.941070] [drm:atom_op_jump] *ERROR* atombios stuck in loop for more than 1sec aborting
[   78.941078] [drm:atom_execute_table_locked] *ERROR* atombios stuck executing E96A (len 498, WS 0, PS 4) @ 0xE9AB
[   78.953117] PM: resume of drv:radeon dev:0000:01:05.0 complete after 2323.928 msecs
[   78.953157] PM: resume of drv:drm dev:controlD64 complete after 1153.857 msecs
[   78.961637] PM: resume of devices complete after 2332.899 msecs
[   78.961733] qcserial 1-5:1.1: Qualcomm USB modem converter detected
[   78.962169] usb 1-5: Qualcomm USB modem converter now attached to ttyUSB1
[   78.962334] PM: resume devices took 2.332 seconds
[   78.963183] PM: Finishing wakeup.
[   78.963186] Restarting tasks ... done.
[   78.988061] video LNXVIDEO:02: Restoring backlight state
[   78.989283] psmouse.c: bad data from KBC - timeout
[   78.989301] psmouse.c: Failed to deactivate mouse on isa0060/serio4
[   79.012596] ALSA patch_conexant.c:3044: CXT5066: init
[   79.014200] ALSA patch_conexant.c:2386: CXT5066: hp automute portA=0 portD=0 present=0
[   79.014207] ALSA patch_conexant.c:2125: CXT5066: update speaker, hp_present=0, cur_eapd=0
[   79.014324] ALSA patch_conexant.c:2310: CXT5066: external microphone absent
[   79.027241] [drm:drm_mode_getfb] *ERROR* invalid framebuffer id
[   79.119286] r8169 0000:02:00.0: eth0: link down
[   79.119732] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   79.772123] usb 3-4: new full speed USB device using ohci_hcd and address 3
[   80.435827] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=600
[   82.409909] psmouse serio5: ID: 10 00 64
[   87.044837] IBM TrackPoint firmware: 0x0e, buttons: 3/3
[   87.325963] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio4/serio5/input/input10

[-- Attachment #3: dmesg.acpi_skip_timer_override-boot --]
[-- Type: application/octet-stream, Size: 80193 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.35-24-generic-pae (buildd@platinum) (gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5) ) #42sutton03-Ubuntu SMP Thu Dec 16 03:27:29 UTC 2010 (Ubuntu 2.6.35-24.42sutton03-generic-pae 2.6.35.8)
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009dc00 (usable)
[    0.000000]  BIOS-e820: 000000000009dc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000d0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000006fe8e000 (usable)
[    0.000000]  BIOS-e820: 000000006fe8e000 - 000000006fea0000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000006fea0000 - 000000006feb1000 (ACPI data)
[    0.000000]  BIOS-e820: 000000006feb1000 - 000000006feb3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000006feb3000 - 000000006feff000 (reserved)
[    0.000000]  BIOS-e820: 000000006ff00000 - 0000000080000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI present.
[    0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x6fe8e max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-DFFFF write-back
[    0.000000]   E0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFFC0000000 write-back
[    0.000000]   1 base 000040000000 mask FFFFE0000000 write-back
[    0.000000]   2 base 000060000000 mask FFFFF0000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820 update range: 0000000000002000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (reserved)
[    0.000000]  modified: 0000000000001000 - 0000000000002000 (usable)
[    0.000000]  modified: 0000000000002000 - 0000000000010000 (reserved)
[    0.000000]  modified: 0000000000010000 - 000000000009dc00 (usable)
[    0.000000]  modified: 000000000009dc00 - 00000000000a0000 (reserved)
[    0.000000]  modified: 00000000000d0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 000000006fe8e000 (usable)
[    0.000000]  modified: 000000006fe8e000 - 000000006fea0000 (ACPI NVS)
[    0.000000]  modified: 000000006fea0000 - 000000006feb1000 (ACPI data)
[    0.000000]  modified: 000000006feb1000 - 000000006feb3000 (ACPI NVS)
[    0.000000]  modified: 000000006feb3000 - 000000006feff000 (reserved)
[    0.000000]  modified: 000000006ff00000 - 0000000080000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 00000000fec10000 (reserved)
[    0.000000]  modified: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  modified: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] initial memory mapped : 0 - 00e00000
[    0.000000] found SMP MP-table at [c00f7970] f7970
[    0.000000] init_memory_mapping: 0000000000000000-0000000037bfe000
[    0.000000]  0000000000 - 0000200000 page 4k
[    0.000000]  0000200000 - 0037a00000 page 2M
[    0.000000]  0037a00000 - 0037bfe000 page 4k
[    0.000000] kernel direct mapping tables up to 37bfe000 @ 15000-1a000
[    0.000000] RAMDISK: 370c3000 - 37ff0000
[    0.000000] Allocated new RAMDISK: 00a05000 - 0193123e
[    0.000000] Move RAMDISK from 00000000370c3000 - 0000000037fef23d to 00a05000 - 0193123d
[    0.000000] ACPI: RSDP 000f78c0 00024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 6fea234c 00084 (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: FACP 6feb0083 000F4 (v03 LENOVO TP-87    00001080 AMD  000F4240)
[    0.000000] ACPI: DSDT 6fea23d0 0DCB3 (v01 LENOVO TP-87    00001080 MSFT 03000001)
[    0.000000] ACPI: FACS 6feb2fc0 00040
[    0.000000] ACPI: TCPA 6feb01eb 00032 (v02 LENOVO TP-87    00001080 PTEC 00000000)
[    0.000000] ACPI: EINJ 6feb021d 001B0 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: HEST 6feb03cd 002E4 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: BERT 6feb06b1 00030 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: SSDT 6feb06e1 000E1 (v01 LENOVO TP-87    00001080 INTL 20050624)
[    0.000000] ACPI: ERST 6feb07c2 00270 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: SSDT 6feb0a32 00386 (v01 LENOVO TP-87    00001080 AMD  00000001)
[    0.000000] ACPI: APIC 6feb0db8 0005E (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: MCFG 6feb0e16 0003C (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: HPET 6feb0e52 00038 (v01 LENOVO TP-87    00001080  LTP 00000001)
[    0.000000] ACPI: SLIC 6feb0e8a 00176 (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 898MB HIGHMEM available.
[    0.000000] 891MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 37bfe000
[    0.000000]   low ram: 0 - 37bfe000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000001 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x00037bfe
[    0.000000]   HighMem  0x00037bfe -> 0x0006fe8e
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000001 -> 0x00000002
[    0.000000]     0: 0x00000010 -> 0x0000009d
[    0.000000]     0: 0x00000100 -> 0x0006fe8e
[    0.000000] On node 0 totalpages: 458268
[    0.000000] free_area_init_node: node 0, pgdat c0840a00, node_mem_map c1933020
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3950 pages, LIFO batch:0
[    0.000000]   Normal zone: 1752 pages used for memmap
[    0.000000]   Normal zone: 222502 pages, LIFO batch:31
[    0.000000]   HighMem zone: 1798 pages used for memmap
[    0.000000]   HighMem zone: 228234 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x8008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 low level)
[    0.000000] ACPI: BIOS IRQ0 pin2 override ignored.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x43538210 base: 0xfed00000
[    0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] early_res array is doubled to 64 at [16000 - 167ff]
[    0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000010000
[    0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
[    0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d0000
[    0.000000] PM: Registered nosave memory: 00000000000d0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:7ec00000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] PERCPU: Embedded 15 pages/cpu @c2800000 s39872 r0 d21568 u1048576
[    0.000000] pcpu-alloc: s39872 r0 d21568 u1048576 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 454686
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-24-generic-pae root=UUID=d5c705ef-5eb6-40af-9c36-2dccfbec5452 ro acpi_skip_timer_override quiet splash
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Enabling fast FPU save and restore... done.
[    0.000000] Enabling unmasked SIMD FPU exception support... done.
[    0.000000] Initializing CPU#0
[    0.000000] allocated 9167620 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Subtract (52 early reservations)
[    0.000000]   #1 [0000001000 - 0000002000]   EX TRAMPOLINE
[    0.000000]   #2 [0000100000 - 00009fc65c]   TEXT DATA BSS
[    0.000000]   #3 [00009fd000 - 0000a04130]             BRK
[    0.000000]   #4 [00000f7980 - 0000100000]   BIOS reserved
[    0.000000]   #5 [00000f7970 - 00000f7980]    MP-table mpf
[    0.000000]   #6 [000009dc00 - 000009e071]   BIOS reserved
[    0.000000]   #7 [000009e1bd - 00000f7970]   BIOS reserved
[    0.000000]   #8 [000009e071 - 000009e1bd]    MP-table mpc
[    0.000000]   #9 [0000010000 - 0000011000]      TRAMPOLINE
[    0.000000]   #10 [0000011000 - 0000015000]     ACPI WAKEUP
[    0.000000]   #11 [0000015000 - 0000016000]         PGTABLE
[    0.000000]   #12 [0000a05000 - 0001932000]     NEW RAMDISK
[    0.000000]   #13 [0001932000 - 0001933000]         BOOTMEM
[    0.000000]   #14 [0001933000 - 0002733000]         BOOTMEM
[    0.000000]   #15 [0002733000 - 0002733004]         BOOTMEM
[    0.000000]   #16 [0002733040 - 0002733100]         BOOTMEM
[    0.000000]   #17 [0002733100 - 00027331a8]         BOOTMEM
[    0.000000]   #18 [00027331c0 - 00027361c0]         BOOTMEM
[    0.000000]   #19 [00027361c0 - 000273626c]         BOOTMEM
[    0.000000]   #20 [0002736280 - 0002739280]         BOOTMEM
[    0.000000]   #21 [0002739280 - 00027392ad]         BOOTMEM
[    0.000000]   #22 [00027392c0 - 00027392ef]         BOOTMEM
[    0.000000]   #23 [0002739300 - 000273951c]         BOOTMEM
[    0.000000]   #24 [0002739540 - 0002739580]         BOOTMEM
[    0.000000]   #25 [0002739580 - 00027395c0]         BOOTMEM
[    0.000000]   #26 [00027395c0 - 0002739600]         BOOTMEM
[    0.000000]   #27 [0002739600 - 0002739640]         BOOTMEM
[    0.000000]   #28 [0002739640 - 0002739680]         BOOTMEM
[    0.000000]   #29 [0002739680 - 00027396c0]         BOOTMEM
[    0.000000]   #30 [00027396c0 - 0002739700]         BOOTMEM
[    0.000000]   #31 [0002739700 - 0002739740]         BOOTMEM
[    0.000000]   #32 [0002739740 - 0002739780]         BOOTMEM
[    0.000000]   #33 [0002739780 - 00027397c0]         BOOTMEM
[    0.000000]   #34 [00027397c0 - 0002739800]         BOOTMEM
[    0.000000]   #35 [0002739800 - 0002739840]         BOOTMEM
[    0.000000]   #36 [0002739840 - 0002739850]         BOOTMEM
[    0.000000]   #37 [0002739880 - 0002739890]         BOOTMEM
[    0.000000]   #38 [00027398c0 - 0002739947]         BOOTMEM
[    0.000000]   #39 [0002739980 - 0002739a07]         BOOTMEM
[    0.000000]   #40 [0002800000 - 000280f000]         BOOTMEM
[    0.000000]   #41 [0002900000 - 000290f000]         BOOTMEM
[    0.000000]   #42 [000273ba40 - 000273ba44]         BOOTMEM
[    0.000000]   #43 [000273ba80 - 000273ba84]         BOOTMEM
[    0.000000]   #44 [000273bac0 - 000273bac8]         BOOTMEM
[    0.000000]   #45 [000273bb00 - 000273bb08]         BOOTMEM
[    0.000000]   #46 [000273bb40 - 000273bbe0]         BOOTMEM
[    0.000000]   #47 [000273bc00 - 000273bc48]         BOOTMEM
[    0.000000]   #48 [000273bc80 - 000273fc80]         BOOTMEM
[    0.000000]   #49 [000273fc80 - 00027bfc80]         BOOTMEM
[    0.000000]   #50 [00027bfc80 - 00027ffc80]         BOOTMEM
[    0.000000]   #51 [000290f000 - 00031cd304]         BOOTMEM
[    0.000000] Initializing HighMem for node 0 (00037bfe:0006fe8e)
[    0.000000] Memory: 1784036k/1833528k available (5088k kernel code, 49036k reserved, 2437k data, 704k init, 920128k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff16000 - 0xfffff000   ( 932 kB)
[    0.000000]     pkmap   : 0xffc00000 - 0xffe00000   (2048 kB)
[    0.000000]     vmalloc : 0xf83fe000 - 0xffbfe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf7bfe000   ( 891 MB)
[    0.000000]       .init : 0xc085a000 - 0xc090a000   ( 704 kB)
[    0.000000]       .data : 0xc05f80da - 0xc0859648   (2437 kB)
[    0.000000]       .text : 0xc0100000 - 0xc05f80da   (5088 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU-based detection of stalled CPUs is disabled.
[    0.000000] 	Verbose stalled-CPUs detection is disabled.
[    0.000000] NR_IRQS:2304 nr_irqs:512
[    0.000000] Extended CMOS year: 2000
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1296.831 MHz processor.
[    0.004007] Calibrating delay loop (skipped), value calculated using timer frequency.. 2593.66 BogoMIPS (lpj=5187324)
[    0.004014] pid_max: default: 32768 minimum: 301
[    0.004037] Security Framework initialized
[    0.004058] AppArmor: AppArmor initialized
[    0.004061] Yama: becoming mindful.
[    0.004134] Mount-cache hash table entries: 512
[    0.004280] Initializing cgroup subsys ns
[    0.004285] Initializing cgroup subsys cpuacct
[    0.004291] Initializing cgroup subsys memory
[    0.004302] Initializing cgroup subsys devices
[    0.004306] Initializing cgroup subsys freezer
[    0.004309] Initializing cgroup subsys net_cls
[    0.004339] CPU: Physical Processor ID: 0
[    0.004342] CPU: Processor Core ID: 0
[    0.004346] mce: CPU supports 6 MCE banks
[    0.004360] using C1E aware idle routine
[    0.004370] Performance Events: AMD PMU driver.
[    0.004376] ... version:                0
[    0.004378] ... bit width:              48
[    0.004381] ... generic registers:      4
[    0.004384] ... value mask:             0000ffffffffffff
[    0.004387] ... max period:             00007fffffffffff
[    0.004390] ... fixed-purpose events:   0
[    0.004392] ... event mask:             000000000000000f
[    0.011486] ACPI: Core revision 20100428
[    0.032030] ftrace: converting mcount calls to 0f 1f 44 00 00
[    0.032043] ftrace: allocating 22392 entries in 44 pages
[    0.036104] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.036455] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
[    0.040000] ..MP-BIOS bug: 8254 timer not connected to IO-APIC
[    0.040000] ...trying to set up timer (IRQ0) through the 8259A ...
[    0.040000] ..... (found apic 0 pin 0) ...
[    0.080021] ....... works.
[    0.080024] CPU0: AMD Athlon(tm) II Neo K325 Dual-Core Processor stepping 03
[    0.084000] Booting Node   0, Processors  #1 Ok.
[    0.008000] Initializing CPU#1
[    0.172013] Brought up 2 CPUs
[    0.172017] Total of 2 processors activated (5187.20 BogoMIPS).
[    0.172029] System has AMD C1E enabled
[    0.172049] Switch to broadcast mode on CPU1
[    0.172422] Switch to broadcast mode on CPU0
[    0.172422] devtmpfs: initialized
[    0.173521] regulator: core version 0.5
[    0.173587] Time: 20:00:59  Date: 01/13/11
[    0.173644] NET: Registered protocol family 16
[    0.173704] Trying to unpack rootfs image as initramfs...
[    0.173817] EISA bus registered
[    0.173825] node 0 link 0: io port [1000, ffff]
[    0.173831] TOM: 0000000080000000 aka 2048M
[    0.173834] Fam 10h mmconf [e0000000, efffffff]
[    0.173838] node 0 link 0: mmio [80000000, bfffffff]
[    0.173843] node 0 link 0: mmio [c0000000, cfffffff]
[    0.173848] node 0 link 0: mmio [d0000000, d03fffff]
[    0.173852] node 0 link 0: mmio [d0400000, d05fffff]
[    0.173857] node 0 link 0: mmio [d0600000, dfffffff]
[    0.173861] node 0 link 0: mmio [e0000000, efffffff] ==> none
[    0.173866] node 0 link 0: mmio [f0000000, febfffff]
[    0.173871] node 0 link 0: mmio [fec00000, ffffffff]
[    0.173875] bus: [00, 1f] on node 0 link 0
[    0.173880] bus: 00 index 0 [io  0x0000-0xffff]
[    0.173884] bus: 00 index 1 [mem 0x80000000-0xdfffffff]
[    0.173887] bus: 00 index 2 [mem 0xf0000000-0xfcffffffff]
[    0.173901] ACPI: bus type pci registered
[    0.174032] PCI: MMCONFIG for domain 0000 [bus 00-08] at [mem 0xe0000000-0xe08fffff] (base 0xe0000000)
[    0.174037] PCI: not using MMCONFIG
[    0.174396] PCI: PCI BIOS revision 2.10 entry at 0xfdc8a, last bus=9
[    0.174400] PCI: Using configuration type 1 for base access
[    0.174402] PCI: Using configuration type 1 for extended access
[    0.174427] mtrr: your CPUs had inconsistent fixed MTRR settings
[    0.174430] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.174432] mtrr: probably your BIOS does not setup all CPUs.
[    0.174435] mtrr: corrected configuration.
[    0.180259] bio: create slab <bio-0> at 0
[    0.183306] ACPI: EC: Look up EC in DSDT
[    0.183708] \_SB_:_OSC evaluation returned wrong type
[    0.183708] _OSC request data:1 7 
[    0.192000] ACPI: BIOS _OSI(Linux) query ignored
[    0.192696] ACPI: OEMN 6feb1ab3 00131 (v01 AMD    NAHP     00000001 MSFT 03000001)
[    0.193547] ACPI: Enabled 1 new runtime GPEs, added 0 new wakeup GPEs
[    0.193554] ACPI: Dynamic OEM Table Load:
[    0.193558] ACPI: OEMN (null) 00131 (v01 AMD    NAHP     00000001 MSFT 03000001)
[    0.200266] ACPI: Interpreter enabled
[    0.200274] ACPI: (supports S0 S3 S4 S5)
[    0.200309] ACPI: Using IOAPIC for interrupt routing
[    0.200877] PCI: MMCONFIG for domain 0000 [bus 00-08] at [mem 0xe0000000-0xe08fffff] (base 0xe0000000)
[    0.201759] [Firmware Bug]: PCI: MMCONFIG at [mem 0xe0000000-0xe08fffff] not reserved in ACPI motherboard resources
[    0.201763] PCI: not using MMCONFIG
[    0.202379] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.202713] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.206651] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.212512] ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
[    0.212535] ACPI: No dock devices found.
[    0.212541] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.215028] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.219164] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.219171] pci_root PNP0A08:00: host bridge window [mem 0x80000000-0xdfffffff]
[    0.219175] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xffffffff]
[    0.219181] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.219184] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    0.219353] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
[    0.219358] pci 0000:00:04.0: PME# disabled
[    0.219415] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
[    0.219419] pci 0000:00:05.0: PME# disabled
[    0.219488] pci 0000:00:11.0: reg 10: [io  0x8440-0x8447]
[    0.219497] pci 0000:00:11.0: reg 14: [io  0x8430-0x8433]
[    0.219506] pci 0000:00:11.0: reg 18: [io  0x8420-0x8427]
[    0.219514] pci 0000:00:11.0: reg 1c: [io  0x8410-0x8413]
[    0.219523] pci 0000:00:11.0: reg 20: [io  0x8400-0x840f]
[    0.219532] pci 0000:00:11.0: reg 24: [mem 0xd0906800-0xd0906bff]
[    0.219606] pci 0000:00:12.0: reg 10: [mem 0xd0904000-0xd0904fff]
[    0.219684] pci 0000:00:12.2: reg 10: [mem 0xd0906000-0xd09060ff]
[    0.219744] pci 0000:00:12.2: supports D1 D2
[    0.219747] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.219753] pci 0000:00:12.2: PME# disabled
[    0.219789] pci 0000:00:13.0: reg 10: [mem 0xd0905000-0xd0905fff]
[    0.219866] pci 0000:00:13.2: reg 10: [mem 0xd0906400-0xd09064ff]
[    0.219925] pci 0000:00:13.2: supports D1 D2
[    0.219928] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.219934] pci 0000:00:13.2: PME# disabled
[    0.220085] pci 0000:00:14.2: reg 10: [mem 0xd0900000-0xd0903fff 64bit]
[    0.220135] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.220141] pci 0000:00:14.2: PME# disabled
[    0.220421] pci 0000:01:05.0: reg 10: [mem 0xc0000000-0xcfffffff pref]
[    0.220427] pci 0000:01:05.0: reg 14: [io  0x9000-0x90ff]
[    0.220434] pci 0000:01:05.0: reg 18: [mem 0xd0500000-0xd050ffff]
[    0.220445] pci 0000:01:05.0: reg 24: [mem 0xd0400000-0xd04fffff]
[    0.220465] pci 0000:01:05.0: supports D1 D2
[    0.220489] pci 0000:01:05.1: reg 10: [mem 0xd0510000-0xd0513fff]
[    0.220522] pci 0000:01:05.1: supports D1 D2
[    0.220570] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.220576] pci 0000:00:01.0:   bridge window [io  0x9000-0x9fff]
[    0.220581] pci 0000:00:01.0:   bridge window [mem 0xd0400000-0xd05fffff]
[    0.220588] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.220654] pci 0000:02:00.0: reg 10: [io  0xbc00-0xbcff]
[    0.220674] pci 0000:02:00.0: reg 18: [mem 0xd0200000-0xd0200fff 64bit pref]
[    0.220689] pci 0000:02:00.0: reg 20: [mem 0xd0000000-0xd0003fff 64bit pref]
[    0.220699] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[    0.220737] pci 0000:02:00.0: supports D1 D2
[    0.220740] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.220746] pci 0000:02:00.0: PME# disabled
[    0.228043] pci 0000:00:04.0: PCI bridge to [bus 02-07]
[    0.228054] pci 0000:00:04.0:   bridge window [io  0xa000-0xbfff]
[    0.228060] pci 0000:00:04.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.228068] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.228148] pci 0000:08:00.0: reg 10: [io  0xc000-0xc0ff]
[    0.228172] pci 0000:08:00.0: reg 18: [mem 0xd0600000-0xd0603fff 64bit]
[    0.228234] pci 0000:08:00.0: supports D1 D2
[    0.228238] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.228245] pci 0000:08:00.0: PME# disabled
[    0.236046] pci 0000:00:05.0: PCI bridge to [bus 08-08]
[    0.236056] pci 0000:00:05.0:   bridge window [io  0xc000-0xcfff]
[    0.236062] pci 0000:00:05.0:   bridge window [mem 0xd0600000-0xd06fffff]
[    0.236068] pci 0000:00:05.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.236152] pci 0000:00:14.4: PCI bridge to [bus 09-09] (subtractive decode)
[    0.236158] pci 0000:00:14.4:   bridge window [io  0xf000-0x0000] (disabled)
[    0.236165] pci 0000:00:14.4:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.236171] pci 0000:00:14.4:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.236176] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.236181] pci 0000:00:14.4:   bridge window [mem 0x80000000-0xdfffffff] (subtractive decode)
[    0.236185] pci 0000:00:14.4:   bridge window [mem 0xf0000000-0xffffffff] (subtractive decode)
[    0.236189] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.236193] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.236213] pci_bus 0000:00: on NUMA node 0
[    0.236225] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.236613] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB4_._PRT]
[    0.236742] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB5_._PRT]
[    0.236934] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
[    0.237086] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
[    0.244064] ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11) *0
[    0.244405] ACPI: PCI Interrupt Link [LNKB] (IRQs 10 11) *0
[    0.244727] ACPI: PCI Interrupt Link [LNKC] (IRQs 10 11) *0
[    0.245083] ACPI: PCI Interrupt Link [LNKD] (IRQs 10 11) *0
[    0.245403] ACPI: PCI Interrupt Link [LNKE] (IRQs 10 11) *0
[    0.245627] ACPI: PCI Interrupt Link [LNKF] (IRQs 10 11) *0
[    0.245852] ACPI: PCI Interrupt Link [LNKG] (IRQs 10 11) *0
[    0.246078] ACPI: PCI Interrupt Link [LNKH] (IRQs 10 11) *0
[    0.246259] HEST: HEST table parsing is initialized.
[    0.246372] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    0.246377] vgaarb: loaded
[    0.246575] SCSI subsystem initialized
[    0.248000] libata version 3.00 loaded.
[    0.248000] usbcore: registered new interface driver usbfs
[    0.248000] usbcore: registered new interface driver hub
[    0.248000] usbcore: registered new device driver usb
[    0.248000] ACPI: WMI: Mapper loaded
[    0.248000] PCI: Using ACPI for IRQ routing
[    0.248000] PCI: pci_cache_line_size set to 64 bytes
[    0.248000] reserve RAM buffer: 0000000000002000 - 000000000000ffff 
[    0.248000] reserve RAM buffer: 000000000009dc00 - 000000000009ffff 
[    0.248000] reserve RAM buffer: 000000006fe8e000 - 000000006fffffff 
[    0.248000] NetLabel: Initializing
[    0.248000] NetLabel:  domain hash size = 128
[    0.248000] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.248000] NetLabel:  unlabeled traffic allowed by default
[    0.248000] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.248000] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.249042] Switching to clocksource tsc
[    0.264261] AppArmor: AppArmor Filesystem Enabled
[    0.264284] pnp: PnP ACPI init
[    0.264311] ACPI: bus type pnp registered
[    0.271604] pnp: PnP ACPI: found 10 devices
[    0.271610] ACPI: ACPI bus type pnp unregistered
[    0.271616] PnPBIOS: Disabled by ACPI PNP
[    0.271643] system 00:01: [io  0x0f50-0x0f51] has been reserved
[    0.271650] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.271655] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.271670] system 00:08: [io  0x0220-0x022f] has been reserved
[    0.271675] system 00:08: [io  0x040b] has been reserved
[    0.271680] system 00:08: [io  0x04d0-0x04d1] has been reserved
[    0.271684] system 00:08: [io  0x04d6] has been reserved
[    0.271689] system 00:08: [io  0x0530-0x0537] has been reserved
[    0.271693] system 00:08: [io  0x0c00-0x0c01] has been reserved
[    0.271697] system 00:08: [io  0x0c14] has been reserved
[    0.271702] system 00:08: [io  0x0c50-0x0c52] has been reserved
[    0.271706] system 00:08: [io  0x0c6c] has been reserved
[    0.271710] system 00:08: [io  0x0c6f] has been reserved
[    0.271715] system 00:08: [io  0x0cd0-0x0cd1] has been reserved
[    0.271719] system 00:08: [io  0x0cd2-0x0cd3] has been reserved
[    0.271724] system 00:08: [io  0x0cd4-0x0cd5] has been reserved
[    0.271728] system 00:08: [io  0x0cd6-0x0cd7] has been reserved
[    0.271732] system 00:08: [io  0x0cd8-0x0cdf] has been reserved
[    0.271737] system 00:08: [io  0x8000-0x805f] has been reserved
[    0.271742] system 00:08: [io  0x8100-0x81ff window] has been reserved
[    0.271747] system 00:08: [io  0x8200-0x82ff window] has been reserved
[    0.271751] system 00:08: [io  0x0f40-0x0f47] has been reserved
[    0.271756] system 00:08: [io  0x087f] has been reserved
[    0.271766] system 00:09: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.271771] system 00:09: [mem 0xffe00000-0xffffffff] could not be reserved
[    0.271776] system 00:09: [mem 0xfec10000-0xfec1001f] has been reserved
[    0.271780] system 00:09: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.271785] system 00:09: [mem 0xfed61000-0xfed613ff] has been reserved
[    0.271789] system 00:09: [mem 0xfed80000-0xfed80fff] has been reserved
[    0.271794] system 00:09: [mem 0xfffffd00-0x10001fcff] could not be reserved
[    0.308428] pci 0000:00:04.0: BAR 14: assigned [mem 0x80000000-0x800fffff]
[    0.308434] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.308439] pci 0000:00:01.0:   bridge window [io  0x9000-0x9fff]
[    0.308445] pci 0000:00:01.0:   bridge window [mem 0xd0400000-0xd05fffff]
[    0.308450] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.308458] pci 0000:02:00.0: BAR 6: assigned [mem 0xd0020000-0xd003ffff pref]
[    0.308462] pci 0000:00:04.0: PCI bridge to [bus 02-07]
[    0.308466] pci 0000:00:04.0:   bridge window [io  0xa000-0xbfff]
[    0.308472] pci 0000:00:04.0:   bridge window [mem 0x80000000-0x800fffff]
[    0.308477] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.308484] pci 0000:00:05.0: PCI bridge to [bus 08-08]
[    0.308488] pci 0000:00:05.0:   bridge window [io  0xc000-0xcfff]
[    0.308494] pci 0000:00:05.0:   bridge window [mem 0xd0600000-0xd06fffff]
[    0.308498] pci 0000:00:05.0:   bridge window [mem pref disabled]
[    0.308504] pci 0000:00:14.4: PCI bridge to [bus 09-09]
[    0.308507] pci 0000:00:14.4:   bridge window [io  disabled]
[    0.308514] pci 0000:00:14.4:   bridge window [mem disabled]
[    0.308519] pci 0000:00:14.4:   bridge window [mem pref disabled]
[    0.308541]   alloc irq_desc for 16 on node -1
[    0.308544]   alloc kstat_irqs on node -1
[    0.308554] pci 0000:00:04.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.308559] pci 0000:00:04.0: setting latency timer to 64
[    0.308567]   alloc irq_desc for 17 on node -1
[    0.308570]   alloc kstat_irqs on node -1
[    0.308576] pci 0000:00:05.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    0.308581] pci 0000:00:05.0: setting latency timer to 64
[    0.308592] pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff]
[    0.308596] pci_bus 0000:00: resource 5 [mem 0x80000000-0xdfffffff]
[    0.308600] pci_bus 0000:00: resource 6 [mem 0xf0000000-0xffffffff]
[    0.308604] pci_bus 0000:00: resource 7 [io  0x0000-0x0cf7]
[    0.308607] pci_bus 0000:00: resource 8 [io  0x0d00-0xffff]
[    0.308611] pci_bus 0000:01: resource 0 [io  0x9000-0x9fff]
[    0.308615] pci_bus 0000:01: resource 1 [mem 0xd0400000-0xd05fffff]
[    0.308619] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.308624] pci_bus 0000:02: resource 0 [io  0xa000-0xbfff]
[    0.308627] pci_bus 0000:02: resource 1 [mem 0x80000000-0x800fffff]
[    0.308632] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.308636] pci_bus 0000:08: resource 0 [io  0xc000-0xcfff]
[    0.308639] pci_bus 0000:08: resource 1 [mem 0xd0600000-0xd06fffff]
[    0.308646] pci_bus 0000:09: resource 4 [mem 0x000a0000-0x000bffff]
[    0.308651] pci_bus 0000:09: resource 5 [mem 0x80000000-0xdfffffff]
[    0.308655] pci_bus 0000:09: resource 6 [mem 0xf0000000-0xffffffff]
[    0.308658] pci_bus 0000:09: resource 7 [io  0x0000-0x0cf7]
[    0.308662] pci_bus 0000:09: resource 8 [io  0x0d00-0xffff]
[    0.308714] NET: Registered protocol family 2
[    0.308800] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.309110] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.309932] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.310382] TCP: Hash tables configured (established 131072 bind 65536)
[    0.310386] TCP reno registered
[    0.310391] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.310406] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.310532] NET: Registered protocol family 1
[    0.310552] pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
[    0.342232] pci 0000:01:05.0: Boot video device
[    0.342249] PCI: CLS 32 bytes, default 64
[    0.342541] cpufreq-nforce2: No nForce2 chipset.
[    0.342577] Scanning for low memory corruption every 60 seconds
[    0.342759] audit: initializing netlink socket (disabled)
[    0.342774] type=2000 audit(1294948858.340:1): initialized
[    0.358517] highmem bounce pool size: 64 pages
[    0.358523] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.360397] VFS: Disk quotas dquot_6.5.2
[    0.360478] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.361271] fuse init (API version 7.14)
[    0.361391] msgmni has been set to 1687
[    0.361844] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.361849] io scheduler noop registered
[    0.361852] io scheduler deadline registered
[    0.361872] io scheduler cfq registered (default)
[    0.362018] pcieport 0000:00:04.0: setting latency timer to 64
[    0.362051]   alloc irq_desc for 40 on node -1
[    0.362054]   alloc kstat_irqs on node -1
[    0.362065] pcieport 0000:00:04.0: irq 40 for MSI/MSI-X
[    0.362152] pcieport 0000:00:05.0: setting latency timer to 64
[    0.362182]   alloc irq_desc for 41 on node -1
[    0.362185]   alloc kstat_irqs on node -1
[    0.362192] pcieport 0000:00:05.0: irq 41 for MSI/MSI-X
[    0.362293] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.362322] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.363025] ACPI: AC Adapter [ACAD] (off-line)
[    0.363111] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.363118] ACPI: Power Button [PWRB]
[    0.363197] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
[    0.363703] ACPI: Lid Switch [LID]
[    0.363796] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.363803] ACPI: Power Button [PWRF]
[    0.364120] ACPI: acpi_idle registered with cpuidle
[    0.364154] ACPI: processor limited to max C-state 1
[    0.369473] thermal LNXTHERM:01: registered as thermal_zone0
[    0.369489] ACPI: Thermal Zone [TZ00] (49 C)
[    0.369694] [Firmware Bug]: ERST: ERST table is invalid
[    0.369970] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.371785] brd: module loaded
[    0.372475] loop: module loaded
[    0.373138] Fixed MDIO Bus: probed
[    0.373180] PPP generic driver version 2.4.2
[    0.373223] tun: Universal TUN/TAP device driver, 1.6
[    0.373226] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.373335] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.373397] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.373423] ehci_hcd 0000:00:12.2: EHCI Host Controller
[    0.373464] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
[    0.373506] ehci_hcd 0000:00:12.2: debug port 1
[    0.373536] ehci_hcd 0000:00:12.2: irq 17, io mem 0xd0906000
[    0.373668] isapnp: Scanning for PnP cards...
[    0.428094] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    0.428270] hub 1-0:1.0: USB hub found
[    0.428277] hub 1-0:1.0: 5 ports detected
[    0.428369] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.428409] ehci_hcd 0000:00:13.2: EHCI Host Controller
[    0.428449] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
[    0.428486] ehci_hcd 0000:00:13.2: debug port 1
[    0.428499] ehci_hcd 0000:00:13.2: irq 17, io mem 0xd0906400
[    0.477380] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    0.477538] hub 2-0:1.0: USB hub found
[    0.477543] hub 2-0:1.0: 5 ports detected
[    0.477635] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.477676]   alloc irq_desc for 18 on node -1
[    0.477679]   alloc kstat_irqs on node -1
[    0.477688] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.477702] ohci_hcd 0000:00:12.0: OHCI Host Controller
[    0.477751] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
[    0.477788] ohci_hcd 0000:00:12.0: irq 18, io mem 0xd0904000
[    0.579691] hub 3-0:1.0: USB hub found
[    0.579739] hub 3-0:1.0: 5 ports detected
[    0.579819] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.579832] ohci_hcd 0000:00:13.0: OHCI Host Controller
[    0.579893] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 4
[    0.579914] ohci_hcd 0000:00:13.0: irq 18, io mem 0xd0905000
[    0.675453] hub 4-0:1.0: USB hub found
[    0.675461] hub 4-0:1.0: 5 ports detected
[    0.675544] uhci_hcd: USB Universal Host Controller Interface driver
[    0.675644] PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12
[    0.691234] i8042.c: Detected active multiplexing controller, rev 1.1.
[    0.698749] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.698757] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    0.698793] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    0.698824] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    0.698853] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    0.698990] mice: PS/2 mouse device common for all mice
[    0.699195] rtc_cmos 00:04: RTC can wake from S4
[    0.699241] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    0.699276] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.699415] device-mapper: uevent: version 1.0.3
[    0.706528] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com
[    0.790161] isapnp: No Plug & Play device found
[    0.790310] device-mapper: multipath: version 1.1.1 loaded
[    0.790314] device-mapper: multipath round-robin: version 1.0.0 loaded
[    0.790476] EISA: Probing bus 0 at eisa.0
[    0.790479] EISA: Cannot allocate resource for mainboard
[    0.790482] Cannot allocate resource for EISA slot 1
[    0.790485] Cannot allocate resource for EISA slot 2
[    0.790488] Cannot allocate resource for EISA slot 3
[    0.790491] Cannot allocate resource for EISA slot 4
[    0.790493] Cannot allocate resource for EISA slot 5
[    0.790496] Cannot allocate resource for EISA slot 6
[    0.790499] Cannot allocate resource for EISA slot 7
[    0.790502] Cannot allocate resource for EISA slot 8
[    0.790504] EISA: Detected 0 cards.
[    0.790596] cpuidle: using governor ladder
[    0.790599] cpuidle: using governor menu
[    0.791027] TCP cubic registered
[    0.791198] NET: Registered protocol family 10
[    0.791701] lo: Disabled Privacy Extensions
[    0.792104] NET: Registered protocol family 17
[    0.792139] powernow-k8: Found 1 AMD Athlon(tm) II Neo K325 Dual-Core Processor (2 cpu cores) (version 2.20.00)
[    0.792185] powernow-k8:    0 : pstate 0 (1300 MHz)
[    0.792188] powernow-k8:    1 : pstate 1 (1100 MHz)
[    0.792191] powernow-k8:    2 : pstate 2 (800 MHz)
[    0.792685] Using IPI No-Shortcut mode
[    0.792813] PM: Resume from disk failed.
[    0.792832] registered taskstats version 1
[    0.793152]   Magic number: 11:29:43
[    0.793292] rtc_cmos 00:04: setting system clock to 2011-01-13 20:01:00 UTC (1294948860)
[    0.793297] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.793300] EDD information not available.
[    0.815739] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    0.833567] Freeing initrd memory: 15540k freed
[    0.842960] Freeing unused kernel memory: 704k freed
[    0.843639] Write protecting the kernel text: 5092k
[    0.843754] Write protecting the kernel read-only data: 2016k
[    0.851095] ACPI: Battery Slot [BAT1] (battery present)
[    0.876074] udev[78]: starting version 163
[    0.962150] usb 1-5: new high speed USB device using ehci_hcd and address 3
[    1.052978] Linux agpgart interface v0.103
[    1.053430] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    1.053459] r8169 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.053513] r8169 0000:02:00.0: setting latency timer to 64
[    1.053557]   alloc irq_desc for 42 on node -1
[    1.053560]   alloc kstat_irqs on node -1
[    1.053578] r8169 0000:02:00.0: irq 42 for MSI/MSI-X
[    1.054314] r8169 0000:02:00.0: eth0: RTL8168d/8111d at 0xf84e0000, 60:eb:69:03:1e:9a, XID 083000c0 IRQ 42
[    1.070147] ahci 0000:00:11.0: version 3.0
[    1.070202]   alloc irq_desc for 19 on node -1
[    1.070206]   alloc kstat_irqs on node -1
[    1.070217] ahci 0000:00:11.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[    1.070275]   alloc irq_desc for 43 on node -1
[    1.070278]   alloc kstat_irqs on node -1
[    1.070290] ahci 0000:00:11.0: irq 43 for MSI/MSI-X
[    1.070375] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[    1.070381] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part sxs 
[    1.093055] scsi0 : ahci
[    1.093314] scsi1 : ahci
[    1.093555] ata1: SATA max UDMA/133 abar m1024@0xd0906800 port 0xd0906900 irq 43
[    1.093561] ata2: SATA max UDMA/133 abar m1024@0xd0906800 port 0xd0906980 irq 43
[    1.094471] [drm] Initialized drm 1.1.0 20060810
[    1.115084] usb 1-5: config 1 has an invalid interface number: 1 but max is 0
[    1.115091] usb 1-5: config 1 has no interface number 0
[    1.148609] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    1.150336] acpi device:30: registered as cooling_device2
[    1.150735] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:2f/LNXVIDEO:02/input/input4
[    1.150801] ACPI: Video Device [VGA2] (multi-head: yes  rom: no  post: no)
[    1.228093] usb 2-2: new high speed USB device using ehci_hcd and address 2
[    1.386522] Initializing USB Mass Storage driver...
[    1.386683] scsi2 : usb-storage 2-2:1.0
[    1.386801] usbcore: registered new interface driver usb-storage
[    1.386804] USB Mass Storage support registered.
[    1.413117] ata2: SATA link down (SStatus 0 SControl 300)
[    1.484103] usb 2-3: new high speed USB device using ehci_hcd and address 3
[    1.584082] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.585205] ata1.00: ATA-8: HITACHI HTS545025B9A300, PB2ZC61H, max UDMA/100
[    1.585212] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.586613] ata1.00: configured for UDMA/100
[    1.601362] scsi 0:0:0:0: Direct-Access     ATA      HITACHI HTS54502 PB2Z PQ: 0 ANSI: 5
[    1.601621] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.601698] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    1.601882] sd 0:0:0:0: [sda] Write Protect is off
[    1.601887] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.601938] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.602778]  sda:
[    1.884088] usb 3-4: new full speed USB device using ohci_hcd and address 2
[    1.936453]  sda1 sda2
[    1.955349] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.009823] [drm] radeon defaulting to kernel modesetting.
[    2.009828] [drm] radeon kernel modesetting enabled.
[    2.009932] radeon 0000:01:05.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.009939] radeon 0000:01:05.0: setting latency timer to 64
[    2.012221] [drm] initializing kernel modesetting (RS880 0x1002:0x9712).
[    2.012375] [drm] register mmio base: 0xD0500000
[    2.012379] [drm] register mmio size: 65536
[    2.012569] ATOM BIOS: Lenovo_PS2A
[    2.012596] [drm] Clocks initialized !
[    2.012609] radeon 0000:01:05.0: VRAM: 256M 0xC0000000 - 0xCFFFFFFF (256M used)
[    2.012614] radeon 0000:01:05.0: GTT: 512M 0xA0000000 - 0xBFFFFFFF
[    2.013086] [drm] Detected VRAM RAM=256M, BAR=256M
[    2.013093] [drm] RAM width 32bits DDR
[    2.013217] [TTM] Zone  kernel: Available graphics memory: 440076 kiB.
[    2.013223] [TTM] Zone highmem: Available graphics memory: 900140 kiB.
[    2.013226] [TTM] Initializing pool allocator.
[    2.013255] [drm] radeon: 256M of VRAM memory ready
[    2.013258] [drm] radeon: 512M of GTT memory ready.
[    2.013306] [drm] radeon: irq initialized.
[    2.013310] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    2.014456] [drm] Loading RS780 Microcode
[    2.058232] [drm] ring test succeeded in 0 usecs
[    2.058489] [drm] radeon: ib pool ready.
[    2.058586] [drm] ib test succeeded in 0 usecs
[    2.058590] [drm] Enabling audio support
[    2.058902] [drm] Unknown TV standard; defaulting to NTSC
[    2.059135] [drm] Radeon Display Connectors
[    2.059138] [drm] Connector 0:
[    2.059140] [drm]   VGA
[    2.059144] [drm]   DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
[    2.059147] [drm]   Encoders:
[    2.059150] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    2.059152] [drm] Connector 1:
[    2.059154] [drm]   LVDS
[    2.059158] [drm]   DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
[    2.059160] [drm]   Encoders:
[    2.059163] [drm]     LCD1: INTERNAL_KLDSCP_LVTMA
[    2.059165] [drm] Connector 2:
[    2.059167] [drm]   HDMI-A
[    2.059169] [drm]   HPD1
[    2.059173] [drm]   DDC: 0x7e20 0x7e20 0x7e24 0x7e24 0x7e28 0x7e28 0x7e2c 0x7e2c
[    2.059176] [drm]   Encoders:
[    2.059178] [drm]     DFP1: INTERNAL_UNIPHY
[    2.119991] [drm] radeon: power management initialized
[    2.202314] [drm] fb mappable at 0xC0141000
[    2.202318] [drm] vram apper at 0xC0000000
[    2.202321] [drm] size 4325376
[    2.202324] [drm] fb depth is 24
[    2.202326] [drm]    pitch is 5632
[    2.387621] scsi 2:0:0:0: Direct-Access     Generic- Multi-Card       1.00 PQ: 0 ANSI: 0 CCS
[    2.388557] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    2.394704] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[    3.155648] Console: switching to colour frame buffer device 170x48
[    3.171186] fb0: radeondrmfb frame buffer device
[    3.171189] drm: registered panic notifier
[    3.171215] Slow work thread pool: Starting up
[    3.171382] Slow work thread pool: Ready
[    3.171399] [drm] Initialized radeon 2.5.0 20080528 for 0000:01:05.0 on minor 0
[    3.997733] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   12.954460] udev[422]: starting version 163
[   13.060244] Adding 7807584k swap on /dev/sda2.  Priority:-1 extents:1 across:7807584k 
[   13.072256] lp: driver loaded but no devices found
[   13.153184] shpchp 0000:00:01.0: HPC vendor_id 1022 device_id 9602 ss_vid 1022 ss_did 9602
[   13.153192] shpchp 0000:00:01.0: Cannot reserve MMIO region
[   13.153272] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   13.212216] ACPI: resource piix4_smbus [io  0x8040-0x8047] conflicts with ACPI region SMB0 [??? 0x00008040-0x0000804f flags 0x30]
[   13.212223] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   13.387610] Non-volatile memory driver v1.3
[   13.429707] Bluetooth: Core ver 2.15
[   13.429825] NET: Registered protocol family 31
[   13.429829] Bluetooth: HCI device and connection manager initialized
[   13.429834] Bluetooth: HCI socket layer initialized
[   13.432729] Bluetooth: Generic Bluetooth USB driver ver 0.6
[   13.435312] EXT4-fs (sda1): warning: maximal mount count reached, running e2fsck is recommended
[   13.446134] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   13.449284] usbcore: registered new interface driver usbserial
[   13.449339] USB Serial support registered for generic
[   13.449777] Linux video capture interface: v2.00
[   13.455618] uvcvideo: Found UVC 1.00 device Integrated Camera (04f2:b1b4)
[   13.456235] usbcore: registered new interface driver btusb
[   13.457345] usbcore: registered new interface driver usbserial_generic
[   13.457352] usbserial: USB Serial Driver core
[   13.496820] USB Serial support registered for Qualcomm USB modem
[   13.497126] qcserial 1-5:1.1: Qualcomm USB modem converter detected
[   13.497180] input: Integrated Camera as /devices/pci0000:00/0000:00:13.2/usb2/2-3/2-3:1.0/input/input5
[   13.497303] usbcore: registered new interface driver uvcvideo
[   13.497307] USB Video Class driver (v0.1.0)
[   13.498397] usb 1-5: Qualcomm USB modem converter now attached to ttyUSB0
[   13.498430] usbcore: registered new interface driver qcserial
[   13.500108] type=1400 audit(1294948873.204:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient3" pid=717 comm="apparmor_parser"
[   13.500566] type=1400 audit(1294948873.204:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=717 comm="apparmor_parser"
[   13.500827] type=1400 audit(1294948873.204:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=717 comm="apparmor_parser"
[   13.835431] thinkpad_acpi: ThinkPad ACPI Extras v0.24
[   13.835436] thinkpad_acpi: http://ibm-acpi.sf.net/
[   13.835440] thinkpad_acpi: ThinkPad BIOS 87ET34WW (1.08 ), EC 87HT20WW-1.165000
[   13.835444] thinkpad_acpi: Lenovo ThinkPad Edge, model 254523U
[   13.840149] thinkpad_acpi: detected a 16-level brightness capable ThinkPad
[   13.843061] thinkpad_acpi: radio switch found; radios are enabled
[   13.843127] thinkpad_acpi: possible tablet mode switch found; ThinkPad in laptop mode
[   13.843155] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
[   13.843159] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
[   13.846456] thinkpad_acpi: asked for hotkey mask 0x04000070, but firmware forced it to 0x00000070
[   13.866931] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
[   13.885848] thinkpad_acpi: rfkill switch tpacpi_wwan_sw: radio is unblocked
[   13.885924] Registered led device: tpacpi::thinklight
[   13.885956] Registered led device: tpacpi::power
[   13.885984] Registered led device: tpacpi::standby
[   13.886005] Registered led device: tpacpi::thinkvantage
[   13.911284] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one.
[   13.911426] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
[   13.922022] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input6
[   13.969425] type=1400 audit(1294948873.672:5): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=949 comm="apparmor_parser"
[   13.974262] type=1400 audit(1294948873.676:6): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=950 comm="apparmor_parser"
[   13.974725] type=1400 audit(1294948873.676:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=950 comm="apparmor_parser"
[   13.974986] type=1400 audit(1294948873.676:8): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=950 comm="apparmor_parser"
[   13.986153] type=1400 audit(1294948873.688:9): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=951 comm="apparmor_parser"
[   13.996446] type=1400 audit(1294948873.700:10): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=953 comm="apparmor_parser"
[   13.997067] type=1400 audit(1294948873.700:11): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=953 comm="apparmor_parser"
[   14.072883] r8169 0000:02:00.0: eth0: link down
[   14.073231] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   14.207715] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   14.207791] ALSA hda_intel.c:2561: chipset global capabilities = 0x4401
[   14.237061] ALSA hda_intel.c:914: codec_mask = 0x1
[   14.246294] ALSA hda_intel.c:1354: codec #0 probed OK
[   14.274848] Bluetooth: L2CAP ver 2.14
[   14.274853] Bluetooth: L2CAP socket layer initialized
[   14.291676] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   14.291682] Bluetooth: BNEP filters: protocol multicast
[   14.300909] Bluetooth: SCO (Voice Link) ver 0.6
[   14.300915] Bluetooth: SCO socket layer initialized
[   14.368041] ALSA hda_codec.c:3726: hda_codec: model 'ideapad' is selected for config 17aa:0 (Lenovo)
[   14.368142] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input7
[   14.368496] ALSA patch_conexant.c:3044: CXT5066: init
[   14.369103] Synaptics Touchpad, model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd047b1/0xb40000/0xa0000
[   14.369115] serio: Synaptics pass-through port at isa0060/serio4/input0
[   14.369369] ALSA patch_conexant.c:2386: CXT5066: hp automute portA=0 portD=0 present=0
[   14.369375] ALSA patch_conexant.c:2125: CXT5066: update speaker, hp_present=0, cur_eapd=0
[   14.369531] ALSA patch_conexant.c:2310: CXT5066: external microphone absent
[   14.369907] HDA Intel 0000:01:05.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[   14.369967] HDA Intel 0000:01:05.1: setting latency timer to 64
[   14.369973] ALSA hda_intel.c:2561: chipset global capabilities = 0x1001
[   14.384036] ALSA hda_intel.c:914: codec_mask = 0x1
[   14.385238] ALSA hda_intel.c:1354: codec #0 probed OK
[   14.415849] Bluetooth: RFCOMM TTY layer initialized
[   14.415858] Bluetooth: RFCOMM socket layer initialized
[   14.415862] Bluetooth: RFCOMM ver 1.11
[   14.418781] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input8
[   14.616961] ppdev: user-space parallel port driver
[   14.685100] ALSA patch_conexant.c:2125: CXT5066: update speaker, hp_present=0, cur_eapd=1
[   15.105801] ALSA patch_conexant.c:2125: CXT5066: update speaker, hp_present=0, cur_eapd=0
[   15.317510] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=600
[   16.568384] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.568413] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   16.576066] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.576081] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   16.577863] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   16.577925] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   16.582048] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   16.582064] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   16.582087] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   16.582096] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   16.637510] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.637747] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.638108] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.638646] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.638863] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.639074] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.639394] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.639918] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.640136] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.640348] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.640664] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.641207] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.641423] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.641632] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.641946] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.642470] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.642686] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.642899] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.643217] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.643729] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.644536] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.644551] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   16.649127] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.649144] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   16.649603] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.649841] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.650196] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.650735] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.651492] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.651506] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   16.660147] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.660163] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   16.660223] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.660248] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.661333] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.662533] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.663079] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.663560] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.664265] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.665169] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.665649] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.666117] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.666780] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.667667] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.668159] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.668627] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.669293] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.670182] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.670657] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.671127] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.671789] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.672706] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.673181] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.673648] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.674310] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.675196] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.675612] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.676039] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.676471] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.676904] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.677310] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.677711] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.678133] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.678565] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.678969] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.679372] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.679795] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.680242] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.680643] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.681045] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.681530] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.681958] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.682363] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.682766] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.683191] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.683625] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.687879] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.688339] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.688772] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.689206] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.689620] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.690034] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.690456] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.690886] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.691297] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.691698] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.692177] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.692608] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.693013] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.693373] hda-intel: IRQ timing workaround is activated for card #1. Suggest a bigger bdl_pos_adj.
[   16.693418] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.693839] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.694269] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.694674] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.695070] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.695490] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.695915] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.696423] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.696898] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.697574] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.698472] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.698950] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.699423] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.700124] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.701019] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.701503] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.701973] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.702645] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.703537] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.704044] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.704525] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.705194] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.706085] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.706562] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.707031] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.707698] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.708614] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.709101] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.709577] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.710249] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.711142] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.711623] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.712115] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.712782] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.713672] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.714160] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.714632] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.715297] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.716207] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.716686] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.717165] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.717835] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.718732] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.719213] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.719684] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.720373] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.721262] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.728244] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.728462] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.728787] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.729301] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.730009] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.730023] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   16.730071] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.730082] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   16.730102] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.730119] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.733075] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   16.733092] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   16.733134] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   16.733146] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   16.746867] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   16.746883] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   16.746925] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   16.746936] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   17.642229] psmouse serio5: ID: 10 00 64
[   17.899237] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=600
[   22.106556] IBM TrackPoint firmware: 0x0e, buttons: 3/3
[   22.116677] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   22.116704] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   22.118091] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   22.118150] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   22.399157] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio4/serio5/input/input9
[   23.748793] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   23.748842] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.840941] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   28.840959] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   28.840986] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   28.840995] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   28.842537] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   28.842585] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   28.846951] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   28.846966] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   28.846989] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   28.846998] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   29.052113] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.052448] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.052906] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.053584] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.053898] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.054201] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.054610] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.055213] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.055523] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.055826] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.056234] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.056839] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.057180] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.057481] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.057888] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.058488] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.058794] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.059095] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.059500] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.060103] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.060955] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   29.060970] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   29.061020] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   29.061037] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   29.061363] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.061673] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.062051] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.062592] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.063309] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   29.063322] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   29.063350] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   29.063361] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   29.063383] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.063406] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.064362] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.064389] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.064910] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.065442] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.066141] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.067063] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.067573] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.068073] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.068769] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.069708] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.070218] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.070721] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.071417] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.072336] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.072842] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.073570] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.074279] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.075195] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.075701] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.076201] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.076894] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.077833] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.078277] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.078705] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.079151] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.079605] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.080038] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.080456] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.080902] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.081571] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.082006] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.082438] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.082885] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.083343] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.083773] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.084208] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.084654] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.085135] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.085568] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.085993] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.086438] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.086893] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.087328] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.087752] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.088209] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.088662] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.089116] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.089544] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.089992] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.090450] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.090884] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.091309] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.091757] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.092212] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.092641] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.093098] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.093548] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.094003] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.094431] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.094856] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.095310] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.095762] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.096279] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.096784] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.097490] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.098414] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.098926] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.099428] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.100127] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.101102] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.101613] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.102118] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.102816] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.103731] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.104242] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.104744] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.105554] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.106474] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.106981] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.107477] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.108174] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.109107] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.109610] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.110108] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.110797] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.111710] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.112214] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.112711] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.113428] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.114344] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.114849] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.115346] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.116039] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.116956] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.118239] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.118777] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.119481] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.120393] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.120900] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.121547] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.122247] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.123161] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.131170] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.131406] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.131743] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.132291] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.133057] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   29.133072] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   29.133118] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   29.133129] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   29.133156] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.133179] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.136161] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   29.136178] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   29.136221] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   29.136233] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   29.161225] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   29.161242] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   29.161283] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   29.161295] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   34.561951] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   34.561982] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   34.564454] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   34.564536] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   43.426404] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   43.426448] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10

[-- Attachment #4: dmesg.nohpet-kernel --]
[-- Type: application/octet-stream, Size: 79728 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.35-24-generic-pae (buildd@platinum) (gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5) ) #42sutton03-Ubuntu SMP Thu Dec 16 03:27:29 UTC 2010 (Ubuntu 2.6.35-24.42sutton03-generic-pae 2.6.35.8)
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009dc00 (usable)
[    0.000000]  BIOS-e820: 000000000009dc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000d0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000006fe8e000 (usable)
[    0.000000]  BIOS-e820: 000000006fe8e000 - 000000006fea0000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000006fea0000 - 000000006feb1000 (ACPI data)
[    0.000000]  BIOS-e820: 000000006feb1000 - 000000006feb3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000006feb3000 - 000000006feff000 (reserved)
[    0.000000]  BIOS-e820: 000000006ff00000 - 0000000080000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI present.
[    0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x6fe8e max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-DFFFF write-back
[    0.000000]   E0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFFC0000000 write-back
[    0.000000]   1 base 000040000000 mask FFFFE0000000 write-back
[    0.000000]   2 base 000060000000 mask FFFFF0000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820 update range: 0000000000002000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (reserved)
[    0.000000]  modified: 0000000000001000 - 0000000000002000 (usable)
[    0.000000]  modified: 0000000000002000 - 0000000000010000 (reserved)
[    0.000000]  modified: 0000000000010000 - 000000000009dc00 (usable)
[    0.000000]  modified: 000000000009dc00 - 00000000000a0000 (reserved)
[    0.000000]  modified: 00000000000d0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 000000006fe8e000 (usable)
[    0.000000]  modified: 000000006fe8e000 - 000000006fea0000 (ACPI NVS)
[    0.000000]  modified: 000000006fea0000 - 000000006feb1000 (ACPI data)
[    0.000000]  modified: 000000006feb1000 - 000000006feb3000 (ACPI NVS)
[    0.000000]  modified: 000000006feb3000 - 000000006feff000 (reserved)
[    0.000000]  modified: 000000006ff00000 - 0000000080000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 00000000fec10000 (reserved)
[    0.000000]  modified: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  modified: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] initial memory mapped : 0 - 00e00000
[    0.000000] found SMP MP-table at [c00f7970] f7970
[    0.000000] init_memory_mapping: 0000000000000000-0000000037bfe000
[    0.000000]  0000000000 - 0000200000 page 4k
[    0.000000]  0000200000 - 0037a00000 page 2M
[    0.000000]  0037a00000 - 0037bfe000 page 4k
[    0.000000] kernel direct mapping tables up to 37bfe000 @ 15000-1a000
[    0.000000] RAMDISK: 370c3000 - 37ff0000
[    0.000000] Allocated new RAMDISK: 00a05000 - 0193123e
[    0.000000] Move RAMDISK from 00000000370c3000 - 0000000037fef23d to 00a05000 - 0193123d
[    0.000000] ACPI: RSDP 000f78c0 00024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 6fea234c 00084 (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: FACP 6feb0083 000F4 (v03 LENOVO TP-87    00001080 AMD  000F4240)
[    0.000000] ACPI: DSDT 6fea23d0 0DCB3 (v01 LENOVO TP-87    00001080 MSFT 03000001)
[    0.000000] ACPI: FACS 6feb2fc0 00040
[    0.000000] ACPI: TCPA 6feb01eb 00032 (v02 LENOVO TP-87    00001080 PTEC 00000000)
[    0.000000] ACPI: EINJ 6feb021d 001B0 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: HEST 6feb03cd 002E4 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: BERT 6feb06b1 00030 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: SSDT 6feb06e1 000E1 (v01 LENOVO TP-87    00001080 INTL 20050624)
[    0.000000] ACPI: ERST 6feb07c2 00270 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: SSDT 6feb0a32 00386 (v01 LENOVO TP-87    00001080 AMD  00000001)
[    0.000000] ACPI: APIC 6feb0db8 0005E (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: MCFG 6feb0e16 0003C (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: HPET 6feb0e52 00038 (v01 LENOVO TP-87    00001080  LTP 00000001)
[    0.000000] ACPI: SLIC 6feb0e8a 00176 (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 898MB HIGHMEM available.
[    0.000000] 891MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 37bfe000
[    0.000000]   low ram: 0 - 37bfe000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000001 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x00037bfe
[    0.000000]   HighMem  0x00037bfe -> 0x0006fe8e
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000001 -> 0x00000002
[    0.000000]     0: 0x00000010 -> 0x0000009d
[    0.000000]     0: 0x00000100 -> 0x0006fe8e
[    0.000000] On node 0 totalpages: 458268
[    0.000000] free_area_init_node: node 0, pgdat c0840a00, node_mem_map c1933020
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3950 pages, LIFO batch:0
[    0.000000]   Normal zone: 1752 pages used for memmap
[    0.000000]   Normal zone: 222502 pages, LIFO batch:31
[    0.000000]   HighMem zone: 1798 pages used for memmap
[    0.000000]   HighMem zone: 228234 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x8008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 low level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x43538210 base: 0xfed00000
[    0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] early_res array is doubled to 64 at [16000 - 167ff]
[    0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000010000
[    0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
[    0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d0000
[    0.000000] PM: Registered nosave memory: 00000000000d0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:7ec00000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] PERCPU: Embedded 15 pages/cpu @c2800000 s39872 r0 d21568 u1048576
[    0.000000] pcpu-alloc: s39872 r0 d21568 u1048576 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 454686
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-24-generic-pae root=UUID=d5c705ef-5eb6-40af-9c36-2dccfbec5452 ro nohpet quiet splash
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Enabling fast FPU save and restore... done.
[    0.000000] Enabling unmasked SIMD FPU exception support... done.
[    0.000000] Initializing CPU#0
[    0.000000] allocated 9167620 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Subtract (52 early reservations)
[    0.000000]   #1 [0000001000 - 0000002000]   EX TRAMPOLINE
[    0.000000]   #2 [0000100000 - 00009fc65c]   TEXT DATA BSS
[    0.000000]   #3 [00009fd000 - 0000a04130]             BRK
[    0.000000]   #4 [00000f7980 - 0000100000]   BIOS reserved
[    0.000000]   #5 [00000f7970 - 00000f7980]    MP-table mpf
[    0.000000]   #6 [000009dc00 - 000009e071]   BIOS reserved
[    0.000000]   #7 [000009e1bd - 00000f7970]   BIOS reserved
[    0.000000]   #8 [000009e071 - 000009e1bd]    MP-table mpc
[    0.000000]   #9 [0000010000 - 0000011000]      TRAMPOLINE
[    0.000000]   #10 [0000011000 - 0000015000]     ACPI WAKEUP
[    0.000000]   #11 [0000015000 - 0000016000]         PGTABLE
[    0.000000]   #12 [0000a05000 - 0001932000]     NEW RAMDISK
[    0.000000]   #13 [0001932000 - 0001933000]         BOOTMEM
[    0.000000]   #14 [0001933000 - 0002733000]         BOOTMEM
[    0.000000]   #15 [0002733000 - 0002733004]         BOOTMEM
[    0.000000]   #16 [0002733040 - 0002733100]         BOOTMEM
[    0.000000]   #17 [0002733100 - 00027331a8]         BOOTMEM
[    0.000000]   #18 [00027331c0 - 00027361c0]         BOOTMEM
[    0.000000]   #19 [00027361c0 - 000273626c]         BOOTMEM
[    0.000000]   #20 [0002736280 - 0002739280]         BOOTMEM
[    0.000000]   #21 [0002739280 - 00027392ad]         BOOTMEM
[    0.000000]   #22 [00027392c0 - 00027392ef]         BOOTMEM
[    0.000000]   #23 [0002739300 - 000273951c]         BOOTMEM
[    0.000000]   #24 [0002739540 - 0002739580]         BOOTMEM
[    0.000000]   #25 [0002739580 - 00027395c0]         BOOTMEM
[    0.000000]   #26 [00027395c0 - 0002739600]         BOOTMEM
[    0.000000]   #27 [0002739600 - 0002739640]         BOOTMEM
[    0.000000]   #28 [0002739640 - 0002739680]         BOOTMEM
[    0.000000]   #29 [0002739680 - 00027396c0]         BOOTMEM
[    0.000000]   #30 [00027396c0 - 0002739700]         BOOTMEM
[    0.000000]   #31 [0002739700 - 0002739740]         BOOTMEM
[    0.000000]   #32 [0002739740 - 0002739780]         BOOTMEM
[    0.000000]   #33 [0002739780 - 00027397c0]         BOOTMEM
[    0.000000]   #34 [00027397c0 - 0002739800]         BOOTMEM
[    0.000000]   #35 [0002739800 - 0002739840]         BOOTMEM
[    0.000000]   #36 [0002739840 - 0002739850]         BOOTMEM
[    0.000000]   #37 [0002739880 - 0002739890]         BOOTMEM
[    0.000000]   #38 [00027398c0 - 0002739935]         BOOTMEM
[    0.000000]   #39 [0002739940 - 00027399b5]         BOOTMEM
[    0.000000]   #40 [0002800000 - 000280f000]         BOOTMEM
[    0.000000]   #41 [0002900000 - 000290f000]         BOOTMEM
[    0.000000]   #42 [000273b9c0 - 000273b9c4]         BOOTMEM
[    0.000000]   #43 [000273ba00 - 000273ba04]         BOOTMEM
[    0.000000]   #44 [000273ba40 - 000273ba48]         BOOTMEM
[    0.000000]   #45 [000273ba80 - 000273ba88]         BOOTMEM
[    0.000000]   #46 [000273bac0 - 000273bb60]         BOOTMEM
[    0.000000]   #47 [000273bb80 - 000273bbc8]         BOOTMEM
[    0.000000]   #48 [000273bc00 - 000273fc00]         BOOTMEM
[    0.000000]   #49 [000273fc00 - 00027bfc00]         BOOTMEM
[    0.000000]   #50 [00027bfc00 - 00027ffc00]         BOOTMEM
[    0.000000]   #51 [000290f000 - 00031cd304]         BOOTMEM
[    0.000000] Initializing HighMem for node 0 (00037bfe:0006fe8e)
[    0.000000] Memory: 1784036k/1833528k available (5088k kernel code, 49036k reserved, 2437k data, 704k init, 920128k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff16000 - 0xfffff000   ( 932 kB)
[    0.000000]     pkmap   : 0xffc00000 - 0xffe00000   (2048 kB)
[    0.000000]     vmalloc : 0xf83fe000 - 0xffbfe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf7bfe000   ( 891 MB)
[    0.000000]       .init : 0xc085a000 - 0xc090a000   ( 704 kB)
[    0.000000]       .data : 0xc05f80da - 0xc0859648   (2437 kB)
[    0.000000]       .text : 0xc0100000 - 0xc05f80da   (5088 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU-based detection of stalled CPUs is disabled.
[    0.000000] 	Verbose stalled-CPUs detection is disabled.
[    0.000000] NR_IRQS:2304 nr_irqs:512
[    0.000000] Extended CMOS year: 2000
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1296.715 MHz processor.
[    0.004006] Calibrating delay loop (skipped), value calculated using timer frequency.. 2593.43 BogoMIPS (lpj=5186860)
[    0.004014] pid_max: default: 32768 minimum: 301
[    0.004037] Security Framework initialized
[    0.004063] AppArmor: AppArmor initialized
[    0.004066] Yama: becoming mindful.
[    0.004139] Mount-cache hash table entries: 512
[    0.004286] Initializing cgroup subsys ns
[    0.004292] Initializing cgroup subsys cpuacct
[    0.004298] Initializing cgroup subsys memory
[    0.004309] Initializing cgroup subsys devices
[    0.004313] Initializing cgroup subsys freezer
[    0.004316] Initializing cgroup subsys net_cls
[    0.004347] CPU: Physical Processor ID: 0
[    0.004350] CPU: Processor Core ID: 0
[    0.004354] mce: CPU supports 6 MCE banks
[    0.004368] using C1E aware idle routine
[    0.004376] Performance Events: AMD PMU driver.
[    0.004382] ... version:                0
[    0.004384] ... bit width:              48
[    0.004387] ... generic registers:      4
[    0.004390] ... value mask:             0000ffffffffffff
[    0.004393] ... max period:             00007fffffffffff
[    0.004396] ... fixed-purpose events:   0
[    0.004399] ... event mask:             000000000000000f
[    0.011320] ACPI: Core revision 20100428
[    0.032030] ftrace: converting mcount calls to 0f 1f 44 00 00
[    0.032043] ftrace: allocating 22392 entries in 44 pages
[    0.036106] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.036460] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.077113] CPU0: AMD Athlon(tm) II Neo K325 Dual-Core Processor stepping 03
[    0.080000] Booting Node   0, Processors  #1 Ok.
[    0.008000] Initializing CPU#1
[    0.168013] Brought up 2 CPUs
[    0.168017] Total of 2 processors activated (5187.14 BogoMIPS).
[    0.168030] System has AMD C1E enabled
[    0.168050] Switch to broadcast mode on CPU1
[    0.168424] Switch to broadcast mode on CPU0
[    0.168424] devtmpfs: initialized
[    0.169521] regulator: core version 0.5
[    0.169555] Time: 19:46:46  Date: 01/13/11
[    0.169612] NET: Registered protocol family 16
[    0.169672] Trying to unpack rootfs image as initramfs...
[    0.169785] EISA bus registered
[    0.169793] node 0 link 0: io port [1000, ffff]
[    0.169798] TOM: 0000000080000000 aka 2048M
[    0.169802] Fam 10h mmconf [e0000000, efffffff]
[    0.169806] node 0 link 0: mmio [80000000, bfffffff]
[    0.169811] node 0 link 0: mmio [c0000000, cfffffff]
[    0.169815] node 0 link 0: mmio [d0000000, d03fffff]
[    0.169820] node 0 link 0: mmio [d0400000, d05fffff]
[    0.169824] node 0 link 0: mmio [d0600000, dfffffff]
[    0.169828] node 0 link 0: mmio [e0000000, efffffff] ==> none
[    0.169834] node 0 link 0: mmio [f0000000, febfffff]
[    0.169838] node 0 link 0: mmio [fec00000, ffffffff]
[    0.169843] bus: [00, 1f] on node 0 link 0
[    0.169848] bus: 00 index 0 [io  0x0000-0xffff]
[    0.169851] bus: 00 index 1 [mem 0x80000000-0xdfffffff]
[    0.169855] bus: 00 index 2 [mem 0xf0000000-0xfcffffffff]
[    0.169869] ACPI: bus type pci registered
[    0.170000] PCI: MMCONFIG for domain 0000 [bus 00-08] at [mem 0xe0000000-0xe08fffff] (base 0xe0000000)
[    0.170004] PCI: not using MMCONFIG
[    0.170358] PCI: PCI BIOS revision 2.10 entry at 0xfdc8a, last bus=9
[    0.170361] PCI: Using configuration type 1 for base access
[    0.170363] PCI: Using configuration type 1 for extended access
[    0.170388] mtrr: your CPUs had inconsistent fixed MTRR settings
[    0.170391] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.170393] mtrr: probably your BIOS does not setup all CPUs.
[    0.170396] mtrr: corrected configuration.
[    0.176216] bio: create slab <bio-0> at 0
[    0.179311] ACPI: EC: Look up EC in DSDT
[    0.179719] \_SB_:_OSC evaluation returned wrong type
[    0.179722] _OSC request data:1 7 
[    0.188000] ACPI: BIOS _OSI(Linux) query ignored
[    0.188000] ACPI: OEMN 6feb1ab3 00131 (v01 AMD    NAHP     00000001 MSFT 03000001)
[    0.188000] ACPI: Enabled 1 new runtime GPEs, added 0 new wakeup GPEs
[    0.188000] ACPI: Dynamic OEM Table Load:
[    0.188000] ACPI: OEMN (null) 00131 (v01 AMD    NAHP     00000001 MSFT 03000001)
[    0.192266] ACPI: Interpreter enabled
[    0.192275] ACPI: (supports S0 S3 S4 S5)
[    0.192311] ACPI: Using IOAPIC for interrupt routing
[    0.192910] PCI: MMCONFIG for domain 0000 [bus 00-08] at [mem 0xe0000000-0xe08fffff] (base 0xe0000000)
[    0.193829] [Firmware Bug]: PCI: MMCONFIG at [mem 0xe0000000-0xe08fffff] not reserved in ACPI motherboard resources
[    0.193833] PCI: not using MMCONFIG
[    0.194346] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.194346] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.199257] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.204543] ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
[    0.205032] ACPI: No dock devices found.
[    0.205038] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.206000] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.209702] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.209709] pci_root PNP0A08:00: host bridge window [mem 0x80000000-0xdfffffff]
[    0.209714] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xffffffff]
[    0.209719] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.209723] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    0.209923] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
[    0.209928] pci 0000:00:04.0: PME# disabled
[    0.209985] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
[    0.209989] pci 0000:00:05.0: PME# disabled
[    0.210058] pci 0000:00:11.0: reg 10: [io  0x8440-0x8447]
[    0.210067] pci 0000:00:11.0: reg 14: [io  0x8430-0x8433]
[    0.210076] pci 0000:00:11.0: reg 18: [io  0x8420-0x8427]
[    0.210084] pci 0000:00:11.0: reg 1c: [io  0x8410-0x8413]
[    0.210093] pci 0000:00:11.0: reg 20: [io  0x8400-0x840f]
[    0.210102] pci 0000:00:11.0: reg 24: [mem 0xd0906800-0xd0906bff]
[    0.210176] pci 0000:00:12.0: reg 10: [mem 0xd0904000-0xd0904fff]
[    0.210254] pci 0000:00:12.2: reg 10: [mem 0xd0906000-0xd09060ff]
[    0.210314] pci 0000:00:12.2: supports D1 D2
[    0.210317] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.210323] pci 0000:00:12.2: PME# disabled
[    0.210359] pci 0000:00:13.0: reg 10: [mem 0xd0905000-0xd0905fff]
[    0.210436] pci 0000:00:13.2: reg 10: [mem 0xd0906400-0xd09064ff]
[    0.210496] pci 0000:00:13.2: supports D1 D2
[    0.210499] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.210504] pci 0000:00:13.2: PME# disabled
[    0.210613] pci 0000:00:14.2: reg 10: [mem 0xd0900000-0xd0903fff 64bit]
[    0.210663] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.210668] pci 0000:00:14.2: PME# disabled
[    0.210948] pci 0000:01:05.0: reg 10: [mem 0xc0000000-0xcfffffff pref]
[    0.210954] pci 0000:01:05.0: reg 14: [io  0x9000-0x90ff]
[    0.210960] pci 0000:01:05.0: reg 18: [mem 0xd0500000-0xd050ffff]
[    0.210972] pci 0000:01:05.0: reg 24: [mem 0xd0400000-0xd04fffff]
[    0.210991] pci 0000:01:05.0: supports D1 D2
[    0.211016] pci 0000:01:05.1: reg 10: [mem 0xd0510000-0xd0513fff]
[    0.211048] pci 0000:01:05.1: supports D1 D2
[    0.211100] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.211107] pci 0000:00:01.0:   bridge window [io  0x9000-0x9fff]
[    0.211112] pci 0000:00:01.0:   bridge window [mem 0xd0400000-0xd05fffff]
[    0.211118] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.211185] pci 0000:02:00.0: reg 10: [io  0xbc00-0xbcff]
[    0.211205] pci 0000:02:00.0: reg 18: [mem 0xd0200000-0xd0200fff 64bit pref]
[    0.211219] pci 0000:02:00.0: reg 20: [mem 0xd0000000-0xd0003fff 64bit pref]
[    0.211229] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[    0.211267] pci 0000:02:00.0: supports D1 D2
[    0.211270] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.211276] pci 0000:02:00.0: PME# disabled
[    0.216047] pci 0000:00:04.0: PCI bridge to [bus 02-07]
[    0.216057] pci 0000:00:04.0:   bridge window [io  0xa000-0xbfff]
[    0.216064] pci 0000:00:04.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.216072] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.216154] pci 0000:08:00.0: reg 10: [io  0xc000-0xc0ff]
[    0.216178] pci 0000:08:00.0: reg 18: [mem 0xd0600000-0xd0603fff 64bit]
[    0.216240] pci 0000:08:00.0: supports D1 D2
[    0.216243] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.216251] pci 0000:08:00.0: PME# disabled
[    0.224046] pci 0000:00:05.0: PCI bridge to [bus 08-08]
[    0.224056] pci 0000:00:05.0:   bridge window [io  0xc000-0xcfff]
[    0.224062] pci 0000:00:05.0:   bridge window [mem 0xd0600000-0xd06fffff]
[    0.224069] pci 0000:00:05.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.224153] pci 0000:00:14.4: PCI bridge to [bus 09-09] (subtractive decode)
[    0.224160] pci 0000:00:14.4:   bridge window [io  0xf000-0x0000] (disabled)
[    0.224166] pci 0000:00:14.4:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.224173] pci 0000:00:14.4:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.224178] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.224182] pci 0000:00:14.4:   bridge window [mem 0x80000000-0xdfffffff] (subtractive decode)
[    0.224187] pci 0000:00:14.4:   bridge window [mem 0xf0000000-0xffffffff] (subtractive decode)
[    0.224191] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.224195] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.224215] pci_bus 0000:00: on NUMA node 0
[    0.224226] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.224607] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB4_._PRT]
[    0.224736] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB5_._PRT]
[    0.224927] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
[    0.225079] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
[    0.232068] ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11) *0
[    0.232415] ACPI: PCI Interrupt Link [LNKB] (IRQs 10 11) *0
[    0.232739] ACPI: PCI Interrupt Link [LNKC] (IRQs 10 11) *0
[    0.233095] ACPI: PCI Interrupt Link [LNKD] (IRQs 10 11) *0
[    0.233424] ACPI: PCI Interrupt Link [LNKE] (IRQs 10 11) *0
[    0.233647] ACPI: PCI Interrupt Link [LNKF] (IRQs 10 11) *0
[    0.233874] ACPI: PCI Interrupt Link [LNKG] (IRQs 10 11) *0
[    0.234100] ACPI: PCI Interrupt Link [LNKH] (IRQs 10 11) *0
[    0.234282] HEST: HEST table parsing is initialized.
[    0.234395] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    0.234400] vgaarb: loaded
[    0.234600] SCSI subsystem initialized
[    0.236000] libata version 3.00 loaded.
[    0.236000] usbcore: registered new interface driver usbfs
[    0.236000] usbcore: registered new interface driver hub
[    0.236000] usbcore: registered new device driver usb
[    0.236000] ACPI: WMI: Mapper loaded
[    0.236000] PCI: Using ACPI for IRQ routing
[    0.236000] PCI: pci_cache_line_size set to 64 bytes
[    0.236000] reserve RAM buffer: 0000000000002000 - 000000000000ffff 
[    0.236000] reserve RAM buffer: 000000000009dc00 - 000000000009ffff 
[    0.236000] reserve RAM buffer: 000000006fe8e000 - 000000006fffffff 
[    0.236000] NetLabel: Initializing
[    0.236000] NetLabel:  domain hash size = 128
[    0.236000] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.236000] NetLabel:  unlabeled traffic allowed by default
[    0.236000] Switching to clocksource tsc
[    0.252237] AppArmor: AppArmor Filesystem Enabled
[    0.252259] pnp: PnP ACPI init
[    0.252284] ACPI: bus type pnp registered
[    0.259286] pnp: PnP ACPI: found 10 devices
[    0.259293] ACPI: ACPI bus type pnp unregistered
[    0.259298] PnPBIOS: Disabled by ACPI PNP
[    0.259324] system 00:01: [io  0x0f50-0x0f51] has been reserved
[    0.259330] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.259336] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.259350] system 00:08: [io  0x0220-0x022f] has been reserved
[    0.259354] system 00:08: [io  0x040b] has been reserved
[    0.259359] system 00:08: [io  0x04d0-0x04d1] has been reserved
[    0.259363] system 00:08: [io  0x04d6] has been reserved
[    0.259368] system 00:08: [io  0x0530-0x0537] has been reserved
[    0.259372] system 00:08: [io  0x0c00-0x0c01] has been reserved
[    0.259376] system 00:08: [io  0x0c14] has been reserved
[    0.259381] system 00:08: [io  0x0c50-0x0c52] has been reserved
[    0.259385] system 00:08: [io  0x0c6c] has been reserved
[    0.259389] system 00:08: [io  0x0c6f] has been reserved
[    0.259393] system 00:08: [io  0x0cd0-0x0cd1] has been reserved
[    0.259398] system 00:08: [io  0x0cd2-0x0cd3] has been reserved
[    0.259402] system 00:08: [io  0x0cd4-0x0cd5] has been reserved
[    0.259407] system 00:08: [io  0x0cd6-0x0cd7] has been reserved
[    0.259411] system 00:08: [io  0x0cd8-0x0cdf] has been reserved
[    0.259416] system 00:08: [io  0x8000-0x805f] has been reserved
[    0.259421] system 00:08: [io  0x8100-0x81ff window] has been reserved
[    0.259426] system 00:08: [io  0x8200-0x82ff window] has been reserved
[    0.259431] system 00:08: [io  0x0f40-0x0f47] has been reserved
[    0.259435] system 00:08: [io  0x087f] has been reserved
[    0.259445] system 00:09: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.259451] system 00:09: [mem 0xffe00000-0xffffffff] could not be reserved
[    0.259456] system 00:09: [mem 0xfec10000-0xfec1001f] has been reserved
[    0.259460] system 00:09: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.259465] system 00:09: [mem 0xfed61000-0xfed613ff] has been reserved
[    0.259469] system 00:09: [mem 0xfed80000-0xfed80fff] has been reserved
[    0.259474] system 00:09: [mem 0xfffffd00-0x10001fcff] could not be reserved
[    0.296087] pci 0000:00:04.0: BAR 14: assigned [mem 0x80000000-0x800fffff]
[    0.296094] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.296098] pci 0000:00:01.0:   bridge window [io  0x9000-0x9fff]
[    0.296104] pci 0000:00:01.0:   bridge window [mem 0xd0400000-0xd05fffff]
[    0.296110] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.296118] pci 0000:02:00.0: BAR 6: assigned [mem 0xd0020000-0xd003ffff pref]
[    0.296122] pci 0000:00:04.0: PCI bridge to [bus 02-07]
[    0.296127] pci 0000:00:04.0:   bridge window [io  0xa000-0xbfff]
[    0.296132] pci 0000:00:04.0:   bridge window [mem 0x80000000-0x800fffff]
[    0.296137] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.296144] pci 0000:00:05.0: PCI bridge to [bus 08-08]
[    0.296148] pci 0000:00:05.0:   bridge window [io  0xc000-0xcfff]
[    0.296154] pci 0000:00:05.0:   bridge window [mem 0xd0600000-0xd06fffff]
[    0.296158] pci 0000:00:05.0:   bridge window [mem pref disabled]
[    0.296165] pci 0000:00:14.4: PCI bridge to [bus 09-09]
[    0.296167] pci 0000:00:14.4:   bridge window [io  disabled]
[    0.296178] pci 0000:00:14.4:   bridge window [mem disabled]
[    0.296183] pci 0000:00:14.4:   bridge window [mem pref disabled]
[    0.296206]   alloc irq_desc for 16 on node -1
[    0.296209]   alloc kstat_irqs on node -1
[    0.296219] pci 0000:00:04.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.296224] pci 0000:00:04.0: setting latency timer to 64
[    0.296232]   alloc irq_desc for 17 on node -1
[    0.296235]   alloc kstat_irqs on node -1
[    0.296241] pci 0000:00:05.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    0.296245] pci 0000:00:05.0: setting latency timer to 64
[    0.296257] pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff]
[    0.296261] pci_bus 0000:00: resource 5 [mem 0x80000000-0xdfffffff]
[    0.296265] pci_bus 0000:00: resource 6 [mem 0xf0000000-0xffffffff]
[    0.296269] pci_bus 0000:00: resource 7 [io  0x0000-0x0cf7]
[    0.296272] pci_bus 0000:00: resource 8 [io  0x0d00-0xffff]
[    0.296277] pci_bus 0000:01: resource 0 [io  0x9000-0x9fff]
[    0.296281] pci_bus 0000:01: resource 1 [mem 0xd0400000-0xd05fffff]
[    0.296285] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.296289] pci_bus 0000:02: resource 0 [io  0xa000-0xbfff]
[    0.296293] pci_bus 0000:02: resource 1 [mem 0x80000000-0x800fffff]
[    0.296297] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.296301] pci_bus 0000:08: resource 0 [io  0xc000-0xcfff]
[    0.296305] pci_bus 0000:08: resource 1 [mem 0xd0600000-0xd06fffff]
[    0.296309] pci_bus 0000:09: resource 4 [mem 0x000a0000-0x000bffff]
[    0.296313] pci_bus 0000:09: resource 5 [mem 0x80000000-0xdfffffff]
[    0.296317] pci_bus 0000:09: resource 6 [mem 0xf0000000-0xffffffff]
[    0.296321] pci_bus 0000:09: resource 7 [io  0x0000-0x0cf7]
[    0.296325] pci_bus 0000:09: resource 8 [io  0x0d00-0xffff]
[    0.296375] NET: Registered protocol family 2
[    0.296459] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.296768] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.297585] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.298015] TCP: Hash tables configured (established 131072 bind 65536)
[    0.298019] TCP reno registered
[    0.298024] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.298040] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.298161] NET: Registered protocol family 1
[    0.298182] pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
[    0.332101] pci 0000:01:05.0: Boot video device
[    0.332119] PCI: CLS 32 bytes, default 64
[    0.332416] cpufreq-nforce2: No nForce2 chipset.
[    0.332452] Scanning for low memory corruption every 60 seconds
[    0.332629] audit: initializing netlink socket (disabled)
[    0.332643] type=2000 audit(1294948005.332:1): initialized
[    0.348390] highmem bounce pool size: 64 pages
[    0.348397] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.350295] VFS: Disk quotas dquot_6.5.2
[    0.350376] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.351168] fuse init (API version 7.14)
[    0.351289] msgmni has been set to 1687
[    0.351747] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.351752] io scheduler noop registered
[    0.351755] io scheduler deadline registered
[    0.351775] io scheduler cfq registered (default)
[    0.351921] pcieport 0000:00:04.0: setting latency timer to 64
[    0.351954]   alloc irq_desc for 40 on node -1
[    0.351957]   alloc kstat_irqs on node -1
[    0.351969] pcieport 0000:00:04.0: irq 40 for MSI/MSI-X
[    0.352058] pcieport 0000:00:05.0: setting latency timer to 64
[    0.352088]   alloc irq_desc for 41 on node -1
[    0.352091]   alloc kstat_irqs on node -1
[    0.352098] pcieport 0000:00:05.0: irq 41 for MSI/MSI-X
[    0.352198] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.352226] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.352957] ACPI: AC Adapter [ACAD] (off-line)
[    0.353043] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.353051] ACPI: Power Button [PWRB]
[    0.353130] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
[    0.355380] ACPI: Lid Switch [LID]
[    0.355474] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.355481] ACPI: Power Button [PWRF]
[    0.355803] ACPI: acpi_idle registered with cpuidle
[    0.355838] ACPI: processor limited to max C-state 1
[    0.368962] thermal LNXTHERM:01: registered as thermal_zone0
[    0.368977] ACPI: Thermal Zone [TZ00] (52 C)
[    0.369183] [Firmware Bug]: ERST: ERST table is invalid
[    0.369460] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.371286] brd: module loaded
[    0.372001] loop: module loaded
[    0.372672] Fixed MDIO Bus: probed
[    0.372716] PPP generic driver version 2.4.2
[    0.372758] tun: Universal TUN/TAP device driver, 1.6
[    0.372761] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.372868] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.372930] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.372956] ehci_hcd 0000:00:12.2: EHCI Host Controller
[    0.372997] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
[    0.373039] ehci_hcd 0000:00:12.2: debug port 1
[    0.373068] ehci_hcd 0000:00:12.2: irq 17, io mem 0xd0906000
[    0.373205] isapnp: Scanning for PnP cards...
[    0.427636] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    0.427815] hub 1-0:1.0: USB hub found
[    0.427822] hub 1-0:1.0: 5 ports detected
[    0.427939] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.427953] ehci_hcd 0000:00:13.2: EHCI Host Controller
[    0.428006] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
[    0.428043] ehci_hcd 0000:00:13.2: debug port 1
[    0.428056] ehci_hcd 0000:00:13.2: irq 17, io mem 0xd0906400
[    0.476939] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    0.477098] hub 2-0:1.0: USB hub found
[    0.477103] hub 2-0:1.0: 5 ports detected
[    0.477194] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.477234]   alloc irq_desc for 18 on node -1
[    0.477237]   alloc kstat_irqs on node -1
[    0.477246] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.477259] ohci_hcd 0000:00:12.0: OHCI Host Controller
[    0.477310] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
[    0.477347] ohci_hcd 0000:00:12.0: irq 18, io mem 0xd0904000
[    0.579122] hub 3-0:1.0: USB hub found
[    0.579134] hub 3-0:1.0: 5 ports detected
[    0.579215] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.579229] ohci_hcd 0000:00:13.0: OHCI Host Controller
[    0.579271] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 4
[    0.579297] ohci_hcd 0000:00:13.0: irq 18, io mem 0xd0905000
[    0.674999] hub 4-0:1.0: USB hub found
[    0.675010] hub 4-0:1.0: 5 ports detected
[    0.675121] uhci_hcd: USB Universal Host Controller Interface driver
[    0.675225] PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12
[    0.704646] i8042.c: Detected active multiplexing controller, rev 1.1.
[    0.730005] ACPI: Battery Slot [BAT1] (battery present)
[    0.760118] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.760126] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    0.760164] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    0.760196] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    0.760233] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    0.760363] mice: PS/2 mouse device common for all mice
[    0.760564] rtc_cmos 00:04: RTC can wake from S4
[    0.760611] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    0.760642] rtc0: alarms up to one month, y3k, 114 bytes nvram
[    0.760781] device-mapper: uevent: version 1.0.3
[    0.764364] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com
[    0.807866] isapnp: No Plug & Play device found
[    0.808010] device-mapper: multipath: version 1.1.1 loaded
[    0.808015] device-mapper: multipath round-robin: version 1.0.0 loaded
[    0.808167] EISA: Probing bus 0 at eisa.0
[    0.808170] EISA: Cannot allocate resource for mainboard
[    0.808174] Cannot allocate resource for EISA slot 1
[    0.808177] Cannot allocate resource for EISA slot 2
[    0.808179] Cannot allocate resource for EISA slot 3
[    0.808182] Cannot allocate resource for EISA slot 4
[    0.808185] Cannot allocate resource for EISA slot 5
[    0.808188] Cannot allocate resource for EISA slot 6
[    0.808190] Cannot allocate resource for EISA slot 7
[    0.808193] Cannot allocate resource for EISA slot 8
[    0.808196] EISA: Detected 0 cards.
[    0.808281] cpuidle: using governor ladder
[    0.808284] cpuidle: using governor menu
[    0.808710] TCP cubic registered
[    0.808886] NET: Registered protocol family 10
[    0.809382] lo: Disabled Privacy Extensions
[    0.809718] NET: Registered protocol family 17
[    0.809751] powernow-k8: Found 1 AMD Athlon(tm) II Neo K325 Dual-Core Processor (2 cpu cores) (version 2.20.00)
[    0.809801] powernow-k8:    0 : pstate 0 (1300 MHz)
[    0.809804] powernow-k8:    1 : pstate 1 (1100 MHz)
[    0.809807] powernow-k8:    2 : pstate 2 (800 MHz)
[    0.810297] Using IPI No-Shortcut mode
[    0.810443] PM: Resume from disk failed.
[    0.810464] registered taskstats version 1
[    0.810788]   Magic number: 11:197:799
[    0.810841] pci 0000:01:05.0: hash matches
[    0.810852] ec PNP0C09:00: hash matches
[    0.810941] rtc_cmos 00:04: setting system clock to 2011-01-13 19:46:47 UTC (1294948007)
[    0.810946] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.810949] EDD information not available.
[    0.829885] Freeing initrd memory: 15540k freed
[    0.831346] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    0.839301] Freeing unused kernel memory: 704k freed
[    0.839987] Write protecting the kernel text: 5092k
[    0.840122] Write protecting the kernel read-only data: 2016k
[    0.875344] udev[78]: starting version 163
[    0.980077] usb 1-5: new high speed USB device using ehci_hcd and address 3
[    1.005125] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    1.005155] r8169 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.005202] r8169 0000:02:00.0: setting latency timer to 64
[    1.005244]   alloc irq_desc for 42 on node -1
[    1.005247]   alloc kstat_irqs on node -1
[    1.005262] r8169 0000:02:00.0: irq 42 for MSI/MSI-X
[    1.006110] r8169 0000:02:00.0: eth0: RTL8168d/8111d at 0xf84ea000, 60:eb:69:03:1e:9a, XID 083000c0 IRQ 42
[    1.009023] ahci 0000:00:11.0: version 3.0
[    1.009043]   alloc irq_desc for 19 on node -1
[    1.009047]   alloc kstat_irqs on node -1
[    1.009059] ahci 0000:00:11.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[    1.009124]   alloc irq_desc for 43 on node -1
[    1.009127]   alloc kstat_irqs on node -1
[    1.009139] ahci 0000:00:11.0: irq 43 for MSI/MSI-X
[    1.009221] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[    1.009228] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part sxs 
[    1.038237] scsi0 : ahci
[    1.074092] scsi1 : ahci
[    1.074392] ata1: SATA max UDMA/133 abar m1024@0xd0906800 port 0xd0906900 irq 43
[    1.074399] ata2: SATA max UDMA/133 abar m1024@0xd0906800 port 0xd0906980 irq 43
[    1.081146] Linux agpgart interface v0.103
[    1.084537] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    1.086945] acpi device:30: registered as cooling_device2
[    1.087358] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:2f/LNXVIDEO:02/input/input4
[    1.087460] ACPI: Video Device [VGA2] (multi-head: yes  rom: no  post: no)
[    1.126430] usb 1-5: config 1 has an invalid interface number: 1 but max is 0
[    1.126436] usb 1-5: config 1 has no interface number 0
[    1.384096] ata2: SATA link down (SStatus 0 SControl 300)
[    1.388093] usb 3-4: new full speed USB device using ohci_hcd and address 2
[    1.557112] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.558282] ata1.00: ATA-8: HITACHI HTS545025B9A300, PB2ZC61H, max UDMA/100
[    1.558289] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.559652] ata1.00: configured for UDMA/100
[    1.573396] scsi 0:0:0:0: Direct-Access     ATA      HITACHI HTS54502 PB2Z PQ: 0 ANSI: 5
[    1.573662] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.573811] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    1.573889] sd 0:0:0:0: [sda] Write Protect is off
[    1.573894] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.574021] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.574830]  sda:
[    1.676108] usb 2-2: new high speed USB device using ehci_hcd and address 2
[    1.834171] Initializing USB Mass Storage driver...
[    1.834359] scsi2 : usb-storage 2-2:1.0
[    1.834490] usbcore: registered new interface driver usb-storage
[    1.834493] USB Mass Storage support registered.
[    1.907442]  sda1 sda2
[    1.926352] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.933105] usb 2-3: new high speed USB device using ehci_hcd and address 3
[    1.958881] [drm] Initialized drm 1.1.0 20060810
[    2.013161] [drm] radeon defaulting to kernel modesetting.
[    2.013167] [drm] radeon kernel modesetting enabled.
[    2.013274] radeon 0000:01:05.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.013281] radeon 0000:01:05.0: setting latency timer to 64
[    2.015519] [drm] initializing kernel modesetting (RS880 0x1002:0x9712).
[    2.015711] [drm] register mmio base: 0xD0500000
[    2.015717] [drm] register mmio size: 65536
[    2.016048] ATOM BIOS: Lenovo_PS2A
[    2.016067] [drm] Clocks initialized !
[    2.016081] radeon 0000:01:05.0: VRAM: 256M 0xC0000000 - 0xCFFFFFFF (256M used)
[    2.016086] radeon 0000:01:05.0: GTT: 512M 0xA0000000 - 0xBFFFFFFF
[    2.016447] [drm] Detected VRAM RAM=256M, BAR=256M
[    2.016454] [drm] RAM width 32bits DDR
[    2.016583] [TTM] Zone  kernel: Available graphics memory: 440076 kiB.
[    2.016589] [TTM] Zone highmem: Available graphics memory: 900140 kiB.
[    2.016592] [TTM] Initializing pool allocator.
[    2.016620] [drm] radeon: 256M of VRAM memory ready
[    2.016623] [drm] radeon: 512M of GTT memory ready.
[    2.016670] [drm] radeon: irq initialized.
[    2.016675] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    2.017874] [drm] Loading RS780 Microcode
[    2.061587] [drm] ring test succeeded in 0 usecs
[    2.061830] [drm] radeon: ib pool ready.
[    2.061919] [drm] ib test succeeded in 0 usecs
[    2.061923] [drm] Enabling audio support
[    2.062251] [drm] Unknown TV standard; defaulting to NTSC
[    2.062486] [drm] Radeon Display Connectors
[    2.062489] [drm] Connector 0:
[    2.062492] [drm]   VGA
[    2.062496] [drm]   DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
[    2.062499] [drm]   Encoders:
[    2.062501] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    2.062504] [drm] Connector 1:
[    2.062506] [drm]   LVDS
[    2.062510] [drm]   DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
[    2.062512] [drm]   Encoders:
[    2.062515] [drm]     LCD1: INTERNAL_KLDSCP_LVTMA
[    2.062517] [drm] Connector 2:
[    2.062520] [drm]   HDMI-A
[    2.062522] [drm]   HPD1
[    2.062525] [drm]   DDC: 0x7e20 0x7e20 0x7e24 0x7e24 0x7e28 0x7e28 0x7e2c 0x7e2c
[    2.062528] [drm]   Encoders:
[    2.062530] [drm]     DFP1: INTERNAL_UNIPHY
[    2.124448] [drm] radeon: power management initialized
[    2.206906] [drm] fb mappable at 0xC0141000
[    2.206910] [drm] vram apper at 0xC0000000
[    2.206914] [drm] size 4325376
[    2.206916] [drm] fb depth is 24
[    2.206919] [drm]    pitch is 5632
[    2.835560] scsi 2:0:0:0: Direct-Access     Generic- Multi-Card       1.00 PQ: 0 ANSI: 0 CCS
[    2.836564] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    2.842131] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[    3.159247] Console: switching to colour frame buffer device 170x48
[    3.174236] fb0: radeondrmfb frame buffer device
[    3.174239] drm: registered panic notifier
[    3.174264] Slow work thread pool: Starting up
[    3.174435] Slow work thread pool: Ready
[    3.174453] [drm] Initialized radeon 2.5.0 20080528 for 0000:01:05.0 on minor 0
[    4.068949] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   13.303797] udev[410]: starting version 163
[   13.444119] Adding 7807584k swap on /dev/sda2.  Priority:-1 extents:1 across:7807584k 
[   13.455305] lp: driver loaded but no devices found
[   13.459803] ACPI: resource piix4_smbus [io  0x8040-0x8047] conflicts with ACPI region SMB0 [??? 0x00008040-0x0000804f flags 0x30]
[   13.459809] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   13.471783] shpchp 0000:00:01.0: HPC vendor_id 1022 device_id 9602 ss_vid 1022 ss_did 9602
[   13.471791] shpchp 0000:00:01.0: Cannot reserve MMIO region
[   13.471881] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   13.560189] Linux video capture interface: v2.00
[   13.643852] uvcvideo: Found UVC 1.00 device Integrated Camera (04f2:b1b4)
[   13.660914] usbcore: registered new interface driver usbserial
[   13.660938] USB Serial support registered for generic
[   13.669941] input: Integrated Camera as /devices/pci0000:00/0000:00:13.2/usb2/2-3/2-3:1.0/input/input5
[   13.670084] usbcore: registered new interface driver uvcvideo
[   13.670088] USB Video Class driver (v0.1.0)
[   13.673055] usbcore: registered new interface driver usbserial_generic
[   13.673059] usbserial: USB Serial Driver core
[   13.730533] EXT4-fs (sda1): warning: maximal mount count reached, running e2fsck is recommended
[   13.758975] USB Serial support registered for Qualcomm USB modem
[   13.761655] type=1400 audit(1294948020.447:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient3" pid=654 comm="apparmor_parser"
[   13.762107] type=1400 audit(1294948020.447:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=654 comm="apparmor_parser"
[   13.762366] type=1400 audit(1294948020.447:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=654 comm="apparmor_parser"
[   13.800674] Bluetooth: Core ver 2.15
[   13.800735] NET: Registered protocol family 31
[   13.800739] Bluetooth: HCI device and connection manager initialized
[   13.800744] Bluetooth: HCI socket layer initialized
[   13.800886] qcserial 1-5:1.1: Qualcomm USB modem converter detected
[   13.801366] usb 1-5: Qualcomm USB modem converter now attached to ttyUSB0
[   13.801803] usbcore: registered new interface driver qcserial
[   13.805737] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   13.806667] Bluetooth: Generic Bluetooth USB driver ver 0.6
[   13.813892] Non-volatile memory driver v1.3
[   13.830407] usbcore: registered new interface driver btusb
[   14.132873] thinkpad_acpi: ThinkPad ACPI Extras v0.24
[   14.132878] thinkpad_acpi: http://ibm-acpi.sf.net/
[   14.132882] thinkpad_acpi: ThinkPad BIOS 87ET34WW (1.08 ), EC 87HT20WW-1.165000
[   14.132887] thinkpad_acpi: Lenovo ThinkPad Edge, model 254523U
[   14.133495] thinkpad_acpi: detected a 16-level brightness capable ThinkPad
[   14.134657] thinkpad_acpi: radio switch found; radios are enabled
[   14.134719] thinkpad_acpi: possible tablet mode switch found; ThinkPad in laptop mode
[   14.134744] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
[   14.134748] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
[   14.138358] thinkpad_acpi: asked for hotkey mask 0x04000070, but firmware forced it to 0x00000070
[   14.155834] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
[   14.193215] thinkpad_acpi: rfkill switch tpacpi_wwan_sw: radio is unblocked
[   14.193293] Registered led device: tpacpi::thinklight
[   14.193326] Registered led device: tpacpi::power
[   14.193348] Registered led device: tpacpi::standby
[   14.193375] Registered led device: tpacpi::thinkvantage
[   14.209863] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one.
[   14.210013] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
[   14.227447] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input6
[   14.342480] type=1400 audit(1294948021.027:5): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=934 comm="apparmor_parser"
[   14.344431] type=1400 audit(1294948021.027:6): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=935 comm="apparmor_parser"
[   14.344894] type=1400 audit(1294948021.027:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=935 comm="apparmor_parser"
[   14.345209] type=1400 audit(1294948021.031:8): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=935 comm="apparmor_parser"
[   14.353260] type=1400 audit(1294948021.039:9): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=938 comm="apparmor_parser"
[   14.354227] type=1400 audit(1294948021.039:10): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=938 comm="apparmor_parser"
[   14.354417] type=1400 audit(1294948021.039:11): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=936 comm="apparmor_parser"
[   14.405311] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   14.405386] ALSA hda_intel.c:2561: chipset global capabilities = 0x4401
[   14.440072] ALSA hda_intel.c:914: codec_mask = 0x1
[   14.440954] ALSA hda_intel.c:1354: codec #0 probed OK
[   14.487884] r8169 0000:02:00.0: eth0: link down
[   14.488211] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   14.569306] Bluetooth: L2CAP ver 2.14
[   14.569311] Bluetooth: L2CAP socket layer initialized
[   14.584210] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   14.584216] Bluetooth: BNEP filters: protocol multicast
[   14.596130] ALSA hda_codec.c:3726: hda_codec: model 'ideapad' is selected for config 17aa:0 (Lenovo)
[   14.596233] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input7
[   14.596608] ALSA patch_conexant.c:3044: CXT5066: init
[   14.597354] ALSA patch_conexant.c:2386: CXT5066: hp automute portA=0 portD=0 present=0
[   14.597359] ALSA patch_conexant.c:2125: CXT5066: update speaker, hp_present=0, cur_eapd=0
[   14.597514] ALSA patch_conexant.c:2310: CXT5066: external microphone absent
[   14.597780] HDA Intel 0000:01:05.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[   14.597841] HDA Intel 0000:01:05.1: setting latency timer to 64
[   14.597846] ALSA hda_intel.c:2561: chipset global capabilities = 0x1001
[   14.605537] Bluetooth: SCO (Voice Link) ver 0.6
[   14.605541] Bluetooth: SCO socket layer initialized
[   14.616084] ALSA hda_intel.c:914: codec_mask = 0x1
[   14.616170] ALSA hda_intel.c:1354: codec #0 probed OK
[   14.657293] Synaptics Touchpad, model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd047b1/0xb40000/0xa0000
[   14.657302] serio: Synaptics pass-through port at isa0060/serio4/input0
[   14.706077] Bluetooth: RFCOMM TTY layer initialized
[   14.706092] Bluetooth: RFCOMM socket layer initialized
[   14.706095] Bluetooth: RFCOMM ver 1.11
[   14.708332] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input8
[   14.909386] ppdev: user-space parallel port driver
[   15.742332] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=600
[   17.169071] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   17.169087] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   17.181496] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   17.181509] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   17.183320] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   17.183380] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   17.189592] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   17.189607] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   17.189632] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   17.189641] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   17.235570] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.235820] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.236236] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.236813] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.237096] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.237316] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.237641] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.238165] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.238388] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.238603] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.238924] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.239589] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.239812] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.240033] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.240354] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.240866] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.241097] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.241308] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.241622] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.242132] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.242880] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   17.242895] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   17.249253] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   17.249277] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   17.250136] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   17.250380] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   17.250775] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   17.251346] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   17.252170] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   17.252183] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   17.257136] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   17.257151] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   17.257204] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   17.257230] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   17.258311] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.258343] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.258897] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.259375] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.260054] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.260966] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.261458] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.261929] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.262590] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.263487] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.263975] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.264457] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.265170] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.266067] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.266551] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.267030] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.267713] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.268611] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.269114] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.269603] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.270265] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.271149] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.271566] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.271971] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.272395] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.272823] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.273238] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.273639] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.274061] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.274497] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.274916] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.275326] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.275762] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.276227] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.276645] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.277092] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.277536] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.277969] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.278375] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.278785] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.279216] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.279661] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.280088] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.280496] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.280931] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.281389] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.281805] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.282216] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.282647] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.283080] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.283491] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.283897] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.284337] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.284772] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.285275] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.285688] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.286136] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.286576] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.286990] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.287404] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.287835] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.288283] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.288777] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.289267] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.289777] hda-intel: IRQ timing workaround is activated for card #1. Suggest a bigger bdl_pos_adj.
[   17.289947] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.290848] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.291324] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.291793] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.292463] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.293410] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.293887] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.294356] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.295019] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.295914] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.296404] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.296882] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.297586] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.298482] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.298965] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.299441] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.300131] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.301072] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.301566] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.302055] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.302719] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.303614] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.304104] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.304601] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.305300] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.306199] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.306674] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.307158] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.307819] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.308708] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.309198] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.309669] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.310333] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.311219] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.311696] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.312187] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.312854] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.313792] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   17.320961] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   17.321203] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   17.321526] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   17.322064] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   17.324338] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   17.324351] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   17.324379] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   17.324389] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   17.324409] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   17.324434] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   17.327636] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   17.327653] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   17.327694] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   17.327706] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   17.349919] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   17.349945] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   17.349986] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   17.349998] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   17.841439] psmouse serio5: ID: 10 00 64
[   18.448189] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=600
[   22.353039] IBM TrackPoint firmware: 0x0e, buttons: 3/3
[   22.640321] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio4/serio5/input/input9
[   22.896680] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   22.896706] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   22.897812] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   22.897866] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   24.354178] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   24.354227] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.881439] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   27.881455] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   27.881498] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   27.881508] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   27.883200] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   27.883320] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   27.888404] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   27.888419] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   27.888442] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   27.888451] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   27.921198] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.921443] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.921807] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.922344] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.922564] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.922775] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.923095] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.923615] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.923832] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.924042] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.924358] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.924876] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.925126] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.925337] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.925655] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.926172] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.926390] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.926600] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.926916] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.927437] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.928192] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   27.928207] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   27.928252] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   27.928264] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   27.928498] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   27.928716] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   27.929354] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   27.929993] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   27.930775] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   27.930788] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   27.930816] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   27.930827] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   27.930850] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   27.930909] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   27.932002] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.932063] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.932702] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.933349] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.934170] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.935212] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.935851] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.936472] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.937321] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.938360] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.938990] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.939616] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.940439] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.941502] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.942132] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.942755] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.943574] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.944612] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.945269] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.945893] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.946716] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.947752] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.948326] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.948884] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.949492] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.950071] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.950626] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.951183] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.951762] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.952340] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.952902] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.953482] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.954059] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.954640] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.955202] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.955954] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.956534] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.957153] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.957716] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.958270] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.958853] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.959435] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.960004] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.960557] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.961155] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.961741] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.962297] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.962861] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.963430] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.964010] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.964568] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.965149] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.965726] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.966309] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.966863] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.967416] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.967989] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.968571] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.969153] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.969703] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.970280] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.970859] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.971499] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.972130] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.972953] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.974025] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.974659] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.975287] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.976111] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.977209] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.977845] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.978472] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.979308] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.980362] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.980995] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.981653] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.982479] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.983531] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.984170] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.984795] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.985739] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.986782] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.987415] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.988042] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.988871] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.989951] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.990587] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.991220] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.992051] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.993120] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.993757] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.994390] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.995214] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.996258] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.996892] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.997547] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.998369] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   27.999413] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.000044] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.000673] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.001520] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.002566] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.010943] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   28.011249] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   28.011663] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   28.012267] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   28.013071] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   28.013084] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   28.013133] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   28.013143] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   28.013164] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   28.013227] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   28.016426] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   28.016443] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   28.016483] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   28.016496] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   28.060014] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   28.060032] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   28.060069] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   28.060080] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   33.831727] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   33.831763] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   33.832846] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   33.832919] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   42.240189] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   42.240232] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10

[-- Attachment #5: dmesg.stock-kernel --]
[-- Type: application/octet-stream, Size: 79895 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.35-24-generic-pae (buildd@platinum) (gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5) ) #42sutton03-Ubuntu SMP Thu Dec 16 03:27:29 UTC 2010 (Ubuntu 2.6.35-24.42sutton03-generic-pae 2.6.35.8)
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009dc00 (usable)
[    0.000000]  BIOS-e820: 000000000009dc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000d0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000006fe8e000 (usable)
[    0.000000]  BIOS-e820: 000000006fe8e000 - 000000006fea0000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000006fea0000 - 000000006feb1000 (ACPI data)
[    0.000000]  BIOS-e820: 000000006feb1000 - 000000006feb3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000006feb3000 - 000000006feff000 (reserved)
[    0.000000]  BIOS-e820: 000000006ff00000 - 0000000080000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI present.
[    0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x6fe8e max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-DFFFF write-back
[    0.000000]   E0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFFC0000000 write-back
[    0.000000]   1 base 000040000000 mask FFFFE0000000 write-back
[    0.000000]   2 base 000060000000 mask FFFFF0000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820 update range: 0000000000002000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (reserved)
[    0.000000]  modified: 0000000000001000 - 0000000000002000 (usable)
[    0.000000]  modified: 0000000000002000 - 0000000000010000 (reserved)
[    0.000000]  modified: 0000000000010000 - 000000000009dc00 (usable)
[    0.000000]  modified: 000000000009dc00 - 00000000000a0000 (reserved)
[    0.000000]  modified: 00000000000d0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 000000006fe8e000 (usable)
[    0.000000]  modified: 000000006fe8e000 - 000000006fea0000 (ACPI NVS)
[    0.000000]  modified: 000000006fea0000 - 000000006feb1000 (ACPI data)
[    0.000000]  modified: 000000006feb1000 - 000000006feb3000 (ACPI NVS)
[    0.000000]  modified: 000000006feb3000 - 000000006feff000 (reserved)
[    0.000000]  modified: 000000006ff00000 - 0000000080000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 00000000fec10000 (reserved)
[    0.000000]  modified: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  modified: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] initial memory mapped : 0 - 00e00000
[    0.000000] found SMP MP-table at [c00f7970] f7970
[    0.000000] init_memory_mapping: 0000000000000000-0000000037bfe000
[    0.000000]  0000000000 - 0000200000 page 4k
[    0.000000]  0000200000 - 0037a00000 page 2M
[    0.000000]  0037a00000 - 0037bfe000 page 4k
[    0.000000] kernel direct mapping tables up to 37bfe000 @ 15000-1a000
[    0.000000] RAMDISK: 370c3000 - 37ff0000
[    0.000000] Allocated new RAMDISK: 00a05000 - 0193123e
[    0.000000] Move RAMDISK from 00000000370c3000 - 0000000037fef23d to 00a05000 - 0193123d
[    0.000000] ACPI: RSDP 000f78c0 00024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 6fea234c 00084 (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: FACP 6feb0083 000F4 (v03 LENOVO TP-87    00001080 AMD  000F4240)
[    0.000000] ACPI: DSDT 6fea23d0 0DCB3 (v01 LENOVO TP-87    00001080 MSFT 03000001)
[    0.000000] ACPI: FACS 6feb2fc0 00040
[    0.000000] ACPI: TCPA 6feb01eb 00032 (v02 LENOVO TP-87    00001080 PTEC 00000000)
[    0.000000] ACPI: EINJ 6feb021d 001B0 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: HEST 6feb03cd 002E4 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: BERT 6feb06b1 00030 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: SSDT 6feb06e1 000E1 (v01 LENOVO TP-87    00001080 INTL 20050624)
[    0.000000] ACPI: ERST 6feb07c2 00270 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: SSDT 6feb0a32 00386 (v01 LENOVO TP-87    00001080 AMD  00000001)
[    0.000000] ACPI: APIC 6feb0db8 0005E (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: MCFG 6feb0e16 0003C (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: HPET 6feb0e52 00038 (v01 LENOVO TP-87    00001080  LTP 00000001)
[    0.000000] ACPI: SLIC 6feb0e8a 00176 (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 898MB HIGHMEM available.
[    0.000000] 891MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 37bfe000
[    0.000000]   low ram: 0 - 37bfe000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000001 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x00037bfe
[    0.000000]   HighMem  0x00037bfe -> 0x0006fe8e
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000001 -> 0x00000002
[    0.000000]     0: 0x00000010 -> 0x0000009d
[    0.000000]     0: 0x00000100 -> 0x0006fe8e
[    0.000000] On node 0 totalpages: 458268
[    0.000000] free_area_init_node: node 0, pgdat c0840a00, node_mem_map c1933020
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3950 pages, LIFO batch:0
[    0.000000]   Normal zone: 1752 pages used for memmap
[    0.000000]   Normal zone: 222502 pages, LIFO batch:31
[    0.000000]   HighMem zone: 1798 pages used for memmap
[    0.000000]   HighMem zone: 228234 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x8008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 low level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x43538210 base: 0xfed00000
[    0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] early_res array is doubled to 64 at [16000 - 167ff]
[    0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000010000
[    0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
[    0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d0000
[    0.000000] PM: Registered nosave memory: 00000000000d0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:7ec00000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] PERCPU: Embedded 15 pages/cpu @c2800000 s39872 r0 d21568 u1048576
[    0.000000] pcpu-alloc: s39872 r0 d21568 u1048576 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 454686
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-24-generic-pae root=UUID=d5c705ef-5eb6-40af-9c36-2dccfbec5452 ro quiet splash
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Enabling fast FPU save and restore... done.
[    0.000000] Enabling unmasked SIMD FPU exception support... done.
[    0.000000] Initializing CPU#0
[    0.000000] allocated 9167620 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Subtract (52 early reservations)
[    0.000000]   #1 [0000001000 - 0000002000]   EX TRAMPOLINE
[    0.000000]   #2 [0000100000 - 00009fc65c]   TEXT DATA BSS
[    0.000000]   #3 [00009fd000 - 0000a04130]             BRK
[    0.000000]   #4 [00000f7980 - 0000100000]   BIOS reserved
[    0.000000]   #5 [00000f7970 - 00000f7980]    MP-table mpf
[    0.000000]   #6 [000009dc00 - 000009e071]   BIOS reserved
[    0.000000]   #7 [000009e1bd - 00000f7970]   BIOS reserved
[    0.000000]   #8 [000009e071 - 000009e1bd]    MP-table mpc
[    0.000000]   #9 [0000010000 - 0000011000]      TRAMPOLINE
[    0.000000]   #10 [0000011000 - 0000015000]     ACPI WAKEUP
[    0.000000]   #11 [0000015000 - 0000016000]         PGTABLE
[    0.000000]   #12 [0000a05000 - 0001932000]     NEW RAMDISK
[    0.000000]   #13 [0001932000 - 0001933000]         BOOTMEM
[    0.000000]   #14 [0001933000 - 0002733000]         BOOTMEM
[    0.000000]   #15 [0002733000 - 0002733004]         BOOTMEM
[    0.000000]   #16 [0002733040 - 0002733100]         BOOTMEM
[    0.000000]   #17 [0002733100 - 00027331a8]         BOOTMEM
[    0.000000]   #18 [00027331c0 - 00027361c0]         BOOTMEM
[    0.000000]   #19 [00027361c0 - 000273626c]         BOOTMEM
[    0.000000]   #20 [0002736280 - 0002739280]         BOOTMEM
[    0.000000]   #21 [0002739280 - 00027392ad]         BOOTMEM
[    0.000000]   #22 [00027392c0 - 00027392ef]         BOOTMEM
[    0.000000]   #23 [0002739300 - 000273951c]         BOOTMEM
[    0.000000]   #24 [0002739540 - 0002739580]         BOOTMEM
[    0.000000]   #25 [0002739580 - 00027395c0]         BOOTMEM
[    0.000000]   #26 [00027395c0 - 0002739600]         BOOTMEM
[    0.000000]   #27 [0002739600 - 0002739640]         BOOTMEM
[    0.000000]   #28 [0002739640 - 0002739680]         BOOTMEM
[    0.000000]   #29 [0002739680 - 00027396c0]         BOOTMEM
[    0.000000]   #30 [00027396c0 - 0002739700]         BOOTMEM
[    0.000000]   #31 [0002739700 - 0002739740]         BOOTMEM
[    0.000000]   #32 [0002739740 - 0002739780]         BOOTMEM
[    0.000000]   #33 [0002739780 - 00027397c0]         BOOTMEM
[    0.000000]   #34 [00027397c0 - 0002739800]         BOOTMEM
[    0.000000]   #35 [0002739800 - 0002739840]         BOOTMEM
[    0.000000]   #36 [0002739840 - 0002739850]         BOOTMEM
[    0.000000]   #37 [0002739880 - 0002739890]         BOOTMEM
[    0.000000]   #38 [00027398c0 - 000273992e]         BOOTMEM
[    0.000000]   #39 [0002739940 - 00027399ae]         BOOTMEM
[    0.000000]   #40 [0002800000 - 000280f000]         BOOTMEM
[    0.000000]   #41 [0002900000 - 000290f000]         BOOTMEM
[    0.000000]   #42 [000273b9c0 - 000273b9c4]         BOOTMEM
[    0.000000]   #43 [000273ba00 - 000273ba04]         BOOTMEM
[    0.000000]   #44 [000273ba40 - 000273ba48]         BOOTMEM
[    0.000000]   #45 [000273ba80 - 000273ba88]         BOOTMEM
[    0.000000]   #46 [000273bac0 - 000273bb60]         BOOTMEM
[    0.000000]   #47 [000273bb80 - 000273bbc8]         BOOTMEM
[    0.000000]   #48 [000273bc00 - 000273fc00]         BOOTMEM
[    0.000000]   #49 [000273fc00 - 00027bfc00]         BOOTMEM
[    0.000000]   #50 [00027bfc00 - 00027ffc00]         BOOTMEM
[    0.000000]   #51 [000290f000 - 00031cd304]         BOOTMEM
[    0.000000] Initializing HighMem for node 0 (00037bfe:0006fe8e)
[    0.000000] Memory: 1784036k/1833528k available (5088k kernel code, 49036k reserved, 2437k data, 704k init, 920128k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff16000 - 0xfffff000   ( 932 kB)
[    0.000000]     pkmap   : 0xffc00000 - 0xffe00000   (2048 kB)
[    0.000000]     vmalloc : 0xf83fe000 - 0xffbfe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf7bfe000   ( 891 MB)
[    0.000000]       .init : 0xc085a000 - 0xc090a000   ( 704 kB)
[    0.000000]       .data : 0xc05f80da - 0xc0859648   (2437 kB)
[    0.000000]       .text : 0xc0100000 - 0xc05f80da   (5088 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU-based detection of stalled CPUs is disabled.
[    0.000000] 	Verbose stalled-CPUs detection is disabled.
[    0.000000] NR_IRQS:2304 nr_irqs:512
[    0.000000] Extended CMOS year: 2000
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1296.686 MHz processor.
[    0.004006] Calibrating delay loop (skipped), value calculated using timer frequency.. 2593.37 BogoMIPS (lpj=5186744)
[    0.004014] pid_max: default: 32768 minimum: 301
[    0.004037] Security Framework initialized
[    0.004058] AppArmor: AppArmor initialized
[    0.004061] Yama: becoming mindful.
[    0.004134] Mount-cache hash table entries: 512
[    0.004281] Initializing cgroup subsys ns
[    0.004286] Initializing cgroup subsys cpuacct
[    0.004292] Initializing cgroup subsys memory
[    0.004303] Initializing cgroup subsys devices
[    0.004307] Initializing cgroup subsys freezer
[    0.004310] Initializing cgroup subsys net_cls
[    0.004340] CPU: Physical Processor ID: 0
[    0.004342] CPU: Processor Core ID: 0
[    0.004346] mce: CPU supports 6 MCE banks
[    0.004360] using C1E aware idle routine
[    0.004369] Performance Events: AMD PMU driver.
[    0.008007] ... version:                0
[    0.008010] ... bit width:              48
[    0.008013] ... generic registers:      4
[    0.008016] ... value mask:             0000ffffffffffff
[    0.008019] ... max period:             00007fffffffffff
[    0.008022] ... fixed-purpose events:   0
[    0.008024] ... event mask:             000000000000000f
[    0.011506] ACPI: Core revision 20100428
[    0.032032] ftrace: converting mcount calls to 0f 1f 44 00 00
[    0.032044] ftrace: allocating 22392 entries in 44 pages
[    0.036105] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.036458] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.078081] CPU0: AMD Athlon(tm) II Neo K325 Dual-Core Processor stepping 03
[    0.080000] Booting Node   0, Processors  #1 Ok.
[    0.008000] Initializing CPU#1
[    0.168013] Brought up 2 CPUs
[    0.168018] Total of 2 processors activated (5186.90 BogoMIPS).
[    0.168030] System has AMD C1E enabled
[    0.168046] Switch to broadcast mode on CPU1
[    0.168387] Switch to broadcast mode on CPU0
[    0.168387] devtmpfs: initialized
[    0.169502] regulator: core version 0.5
[    0.169537] Time: 19:45:16  Date: 01/13/11
[    0.169594] NET: Registered protocol family 16
[    0.169657] Trying to unpack rootfs image as initramfs...
[    0.169773] EISA bus registered
[    0.169781] node 0 link 0: io port [1000, ffff]
[    0.169787] TOM: 0000000080000000 aka 2048M
[    0.169790] Fam 10h mmconf [e0000000, efffffff]
[    0.169794] node 0 link 0: mmio [80000000, bfffffff]
[    0.169799] node 0 link 0: mmio [c0000000, cfffffff]
[    0.169804] node 0 link 0: mmio [d0000000, d03fffff]
[    0.169808] node 0 link 0: mmio [d0400000, d05fffff]
[    0.169813] node 0 link 0: mmio [d0600000, dfffffff]
[    0.169817] node 0 link 0: mmio [e0000000, efffffff] ==> none
[    0.169822] node 0 link 0: mmio [f0000000, febfffff]
[    0.169827] node 0 link 0: mmio [fec00000, ffffffff]
[    0.169831] bus: [00, 1f] on node 0 link 0
[    0.169836] bus: 00 index 0 [io  0x0000-0xffff]
[    0.169840] bus: 00 index 1 [mem 0x80000000-0xdfffffff]
[    0.169843] bus: 00 index 2 [mem 0xf0000000-0xfcffffffff]
[    0.169857] ACPI: bus type pci registered
[    0.169982] PCI: MMCONFIG for domain 0000 [bus 00-08] at [mem 0xe0000000-0xe08fffff] (base 0xe0000000)
[    0.169986] PCI: not using MMCONFIG
[    0.170346] PCI: PCI BIOS revision 2.10 entry at 0xfdc8a, last bus=9
[    0.170349] PCI: Using configuration type 1 for base access
[    0.170352] PCI: Using configuration type 1 for extended access
[    0.170376] mtrr: your CPUs had inconsistent fixed MTRR settings
[    0.170379] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.170382] mtrr: probably your BIOS does not setup all CPUs.
[    0.170384] mtrr: corrected configuration.
[    0.176163] bio: create slab <bio-0> at 0
[    0.179289] ACPI: EC: Look up EC in DSDT
[    0.179692] \_SB_:_OSC evaluation returned wrong type
[    0.179695] _OSC request data:1 7 
[    0.188800] ACPI: BIOS _OSI(Linux) query ignored
[    0.189852] ACPI: OEMN 6feb1ab3 00131 (v01 AMD    NAHP     00000001 MSFT 03000001)
[    0.190702] ACPI: Enabled 1 new runtime GPEs, added 0 new wakeup GPEs
[    0.190709] ACPI: Dynamic OEM Table Load:
[    0.190713] ACPI: OEMN (null) 00131 (v01 AMD    NAHP     00000001 MSFT 03000001)
[    0.192231] ACPI: Interpreter enabled
[    0.192241] ACPI: (supports S0 S3 S4 S5)
[    0.192276] ACPI: Using IOAPIC for interrupt routing
[    0.192877] PCI: MMCONFIG for domain 0000 [bus 00-08] at [mem 0xe0000000-0xe08fffff] (base 0xe0000000)
[    0.193795] [Firmware Bug]: PCI: MMCONFIG at [mem 0xe0000000-0xe08fffff] not reserved in ACPI motherboard resources
[    0.193800] PCI: not using MMCONFIG
[    0.196613] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.196911] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.203743] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.204513] ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
[    0.205000] ACPI: No dock devices found.
[    0.205005] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.209930] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.214091] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.214098] pci_root PNP0A08:00: host bridge window [mem 0x80000000-0xdfffffff]
[    0.214102] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xffffffff]
[    0.214107] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.214111] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    0.214311] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
[    0.214315] pci 0000:00:04.0: PME# disabled
[    0.214372] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
[    0.214376] pci 0000:00:05.0: PME# disabled
[    0.214446] pci 0000:00:11.0: reg 10: [io  0x8440-0x8447]
[    0.214455] pci 0000:00:11.0: reg 14: [io  0x8430-0x8433]
[    0.214463] pci 0000:00:11.0: reg 18: [io  0x8420-0x8427]
[    0.214472] pci 0000:00:11.0: reg 1c: [io  0x8410-0x8413]
[    0.214480] pci 0000:00:11.0: reg 20: [io  0x8400-0x840f]
[    0.214490] pci 0000:00:11.0: reg 24: [mem 0xd0906800-0xd0906bff]
[    0.214564] pci 0000:00:12.0: reg 10: [mem 0xd0904000-0xd0904fff]
[    0.214641] pci 0000:00:12.2: reg 10: [mem 0xd0906000-0xd09060ff]
[    0.214702] pci 0000:00:12.2: supports D1 D2
[    0.214705] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.214710] pci 0000:00:12.2: PME# disabled
[    0.214746] pci 0000:00:13.0: reg 10: [mem 0xd0905000-0xd0905fff]
[    0.214823] pci 0000:00:13.2: reg 10: [mem 0xd0906400-0xd09064ff]
[    0.214883] pci 0000:00:13.2: supports D1 D2
[    0.214887] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.214892] pci 0000:00:13.2: PME# disabled
[    0.215001] pci 0000:00:14.2: reg 10: [mem 0xd0900000-0xd0903fff 64bit]
[    0.215051] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.215056] pci 0000:00:14.2: PME# disabled
[    0.215338] pci 0000:01:05.0: reg 10: [mem 0xc0000000-0xcfffffff pref]
[    0.215345] pci 0000:01:05.0: reg 14: [io  0x9000-0x90ff]
[    0.215351] pci 0000:01:05.0: reg 18: [mem 0xd0500000-0xd050ffff]
[    0.215362] pci 0000:01:05.0: reg 24: [mem 0xd0400000-0xd04fffff]
[    0.215382] pci 0000:01:05.0: supports D1 D2
[    0.215407] pci 0000:01:05.1: reg 10: [mem 0xd0510000-0xd0513fff]
[    0.215439] pci 0000:01:05.1: supports D1 D2
[    0.215491] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.215497] pci 0000:00:01.0:   bridge window [io  0x9000-0x9fff]
[    0.215502] pci 0000:00:01.0:   bridge window [mem 0xd0400000-0xd05fffff]
[    0.215509] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.215575] pci 0000:02:00.0: reg 10: [io  0xbc00-0xbcff]
[    0.215595] pci 0000:02:00.0: reg 18: [mem 0xd0200000-0xd0200fff 64bit pref]
[    0.215610] pci 0000:02:00.0: reg 20: [mem 0xd0000000-0xd0003fff 64bit pref]
[    0.215619] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[    0.215657] pci 0000:02:00.0: supports D1 D2
[    0.215660] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.215666] pci 0000:02:00.0: PME# disabled
[    0.220041] pci 0000:00:04.0: PCI bridge to [bus 02-07]
[    0.220052] pci 0000:00:04.0:   bridge window [io  0xa000-0xbfff]
[    0.220058] pci 0000:00:04.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.220066] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.220148] pci 0000:08:00.0: reg 10: [io  0xc000-0xc0ff]
[    0.220172] pci 0000:08:00.0: reg 18: [mem 0xd0600000-0xd0603fff 64bit]
[    0.220234] pci 0000:08:00.0: supports D1 D2
[    0.220238] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.220246] pci 0000:08:00.0: PME# disabled
[    0.228044] pci 0000:00:05.0: PCI bridge to [bus 08-08]
[    0.228054] pci 0000:00:05.0:   bridge window [io  0xc000-0xcfff]
[    0.228060] pci 0000:00:05.0:   bridge window [mem 0xd0600000-0xd06fffff]
[    0.228066] pci 0000:00:05.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.228150] pci 0000:00:14.4: PCI bridge to [bus 09-09] (subtractive decode)
[    0.228157] pci 0000:00:14.4:   bridge window [io  0xf000-0x0000] (disabled)
[    0.228164] pci 0000:00:14.4:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.228170] pci 0000:00:14.4:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.228175] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.228179] pci 0000:00:14.4:   bridge window [mem 0x80000000-0xdfffffff] (subtractive decode)
[    0.228184] pci 0000:00:14.4:   bridge window [mem 0xf0000000-0xffffffff] (subtractive decode)
[    0.228188] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.228192] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.228212] pci_bus 0000:00: on NUMA node 0
[    0.228223] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.228613] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB4_._PRT]
[    0.228742] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB5_._PRT]
[    0.228935] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
[    0.229086] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
[    0.236044] ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11) *0
[    0.236391] ACPI: PCI Interrupt Link [LNKB] (IRQs 10 11) *0
[    0.236749] ACPI: PCI Interrupt Link [LNKC] (IRQs 10 11) *0
[    0.237069] ACPI: PCI Interrupt Link [LNKD] (IRQs 10 11) *0
[    0.237396] ACPI: PCI Interrupt Link [LNKE] (IRQs 10 11) *0
[    0.237624] ACPI: PCI Interrupt Link [LNKF] (IRQs 10 11) *0
[    0.237846] ACPI: PCI Interrupt Link [LNKG] (IRQs 10 11) *0
[    0.238072] ACPI: PCI Interrupt Link [LNKH] (IRQs 10 11) *0
[    0.238256] HEST: HEST table parsing is initialized.
[    0.238367] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    0.238373] vgaarb: loaded
[    0.238568] SCSI subsystem initialized
[    0.238679] libata version 3.00 loaded.
[    0.238742] usbcore: registered new interface driver usbfs
[    0.238759] usbcore: registered new interface driver hub
[    0.238787] usbcore: registered new device driver usb
[    0.239103] ACPI: WMI: Mapper loaded
[    0.239106] PCI: Using ACPI for IRQ routing
[    0.239308] PCI: pci_cache_line_size set to 64 bytes
[    0.239443] reserve RAM buffer: 0000000000002000 - 000000000000ffff 
[    0.239447] reserve RAM buffer: 000000000009dc00 - 000000000009ffff 
[    0.239451] reserve RAM buffer: 000000006fe8e000 - 000000006fffffff 
[    0.239567] NetLabel: Initializing
[    0.239570] NetLabel:  domain hash size = 128
[    0.239572] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.239588] NetLabel:  unlabeled traffic allowed by default
[    0.239663] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.239670] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.241044] Switching to clocksource tsc
[    0.252282] AppArmor: AppArmor Filesystem Enabled
[    0.252303] pnp: PnP ACPI init
[    0.252329] ACPI: bus type pnp registered
[    0.257857] pnp: PnP ACPI: found 10 devices
[    0.257863] ACPI: ACPI bus type pnp unregistered
[    0.257869] PnPBIOS: Disabled by ACPI PNP
[    0.257893] system 00:01: [io  0x0f50-0x0f51] has been reserved
[    0.257900] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.257905] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.257919] system 00:08: [io  0x0220-0x022f] has been reserved
[    0.257923] system 00:08: [io  0x040b] has been reserved
[    0.257928] system 00:08: [io  0x04d0-0x04d1] has been reserved
[    0.257932] system 00:08: [io  0x04d6] has been reserved
[    0.257936] system 00:08: [io  0x0530-0x0537] has been reserved
[    0.257940] system 00:08: [io  0x0c00-0x0c01] has been reserved
[    0.257944] system 00:08: [io  0x0c14] has been reserved
[    0.257948] system 00:08: [io  0x0c50-0x0c52] has been reserved
[    0.257952] system 00:08: [io  0x0c6c] has been reserved
[    0.257956] system 00:08: [io  0x0c6f] has been reserved
[    0.257960] system 00:08: [io  0x0cd0-0x0cd1] has been reserved
[    0.257964] system 00:08: [io  0x0cd2-0x0cd3] has been reserved
[    0.257968] system 00:08: [io  0x0cd4-0x0cd5] has been reserved
[    0.257972] system 00:08: [io  0x0cd6-0x0cd7] has been reserved
[    0.257976] system 00:08: [io  0x0cd8-0x0cdf] has been reserved
[    0.257980] system 00:08: [io  0x8000-0x805f] has been reserved
[    0.257985] system 00:08: [io  0x8100-0x81ff window] has been reserved
[    0.257990] system 00:08: [io  0x8200-0x82ff window] has been reserved
[    0.257994] system 00:08: [io  0x0f40-0x0f47] has been reserved
[    0.257998] system 00:08: [io  0x087f] has been reserved
[    0.258007] system 00:09: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.258012] system 00:09: [mem 0xffe00000-0xffffffff] could not be reserved
[    0.258017] system 00:09: [mem 0xfec10000-0xfec1001f] has been reserved
[    0.258022] system 00:09: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.258026] system 00:09: [mem 0xfed61000-0xfed613ff] has been reserved
[    0.258031] system 00:09: [mem 0xfed80000-0xfed80fff] has been reserved
[    0.258036] system 00:09: [mem 0xfffffd00-0x10001fcff] could not be reserved
[    0.294654] pci 0000:00:04.0: BAR 14: assigned [mem 0x80000000-0x800fffff]
[    0.294660] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.294665] pci 0000:00:01.0:   bridge window [io  0x9000-0x9fff]
[    0.294671] pci 0000:00:01.0:   bridge window [mem 0xd0400000-0xd05fffff]
[    0.294676] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.294684] pci 0000:02:00.0: BAR 6: assigned [mem 0xd0020000-0xd003ffff pref]
[    0.294688] pci 0000:00:04.0: PCI bridge to [bus 02-07]
[    0.294692] pci 0000:00:04.0:   bridge window [io  0xa000-0xbfff]
[    0.294698] pci 0000:00:04.0:   bridge window [mem 0x80000000-0x800fffff]
[    0.294703] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.294710] pci 0000:00:05.0: PCI bridge to [bus 08-08]
[    0.294714] pci 0000:00:05.0:   bridge window [io  0xc000-0xcfff]
[    0.294719] pci 0000:00:05.0:   bridge window [mem 0xd0600000-0xd06fffff]
[    0.294723] pci 0000:00:05.0:   bridge window [mem pref disabled]
[    0.294730] pci 0000:00:14.4: PCI bridge to [bus 09-09]
[    0.294733] pci 0000:00:14.4:   bridge window [io  disabled]
[    0.294743] pci 0000:00:14.4:   bridge window [mem disabled]
[    0.294748] pci 0000:00:14.4:   bridge window [mem pref disabled]
[    0.294771]   alloc irq_desc for 16 on node -1
[    0.294774]   alloc kstat_irqs on node -1
[    0.294784] pci 0000:00:04.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.294789] pci 0000:00:04.0: setting latency timer to 64
[    0.294798]   alloc irq_desc for 17 on node -1
[    0.294800]   alloc kstat_irqs on node -1
[    0.294807] pci 0000:00:05.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    0.294811] pci 0000:00:05.0: setting latency timer to 64
[    0.294822] pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff]
[    0.294826] pci_bus 0000:00: resource 5 [mem 0x80000000-0xdfffffff]
[    0.294830] pci_bus 0000:00: resource 6 [mem 0xf0000000-0xffffffff]
[    0.294834] pci_bus 0000:00: resource 7 [io  0x0000-0x0cf7]
[    0.294838] pci_bus 0000:00: resource 8 [io  0x0d00-0xffff]
[    0.294842] pci_bus 0000:01: resource 0 [io  0x9000-0x9fff]
[    0.294846] pci_bus 0000:01: resource 1 [mem 0xd0400000-0xd05fffff]
[    0.294850] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.294855] pci_bus 0000:02: resource 0 [io  0xa000-0xbfff]
[    0.294858] pci_bus 0000:02: resource 1 [mem 0x80000000-0x800fffff]
[    0.294862] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.294867] pci_bus 0000:08: resource 0 [io  0xc000-0xcfff]
[    0.294870] pci_bus 0000:08: resource 1 [mem 0xd0600000-0xd06fffff]
[    0.294875] pci_bus 0000:09: resource 4 [mem 0x000a0000-0x000bffff]
[    0.294878] pci_bus 0000:09: resource 5 [mem 0x80000000-0xdfffffff]
[    0.294882] pci_bus 0000:09: resource 6 [mem 0xf0000000-0xffffffff]
[    0.294889] pci_bus 0000:09: resource 7 [io  0x0000-0x0cf7]
[    0.294893] pci_bus 0000:09: resource 8 [io  0x0d00-0xffff]
[    0.294943] NET: Registered protocol family 2
[    0.295024] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.295333] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.296152] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.296575] TCP: Hash tables configured (established 131072 bind 65536)
[    0.296579] TCP reno registered
[    0.296585] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.296601] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.296721] NET: Registered protocol family 1
[    0.296741] pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
[    0.326232] pci 0000:01:05.0: Boot video device
[    0.326249] PCI: CLS 32 bytes, default 64
[    0.326530] cpufreq-nforce2: No nForce2 chipset.
[    0.326567] Scanning for low memory corruption every 60 seconds
[    0.326752] audit: initializing netlink socket (disabled)
[    0.326767] type=2000 audit(1294947915.324:1): initialized
[    0.342510] highmem bounce pool size: 64 pages
[    0.342517] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.344385] VFS: Disk quotas dquot_6.5.2
[    0.344466] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.345260] fuse init (API version 7.14)
[    0.345381] msgmni has been set to 1687
[    0.345832] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.345837] io scheduler noop registered
[    0.345839] io scheduler deadline registered
[    0.345861] io scheduler cfq registered (default)
[    0.346005] pcieport 0000:00:04.0: setting latency timer to 64
[    0.346039]   alloc irq_desc for 40 on node -1
[    0.346042]   alloc kstat_irqs on node -1
[    0.346053] pcieport 0000:00:04.0: irq 40 for MSI/MSI-X
[    0.346138] pcieport 0000:00:05.0: setting latency timer to 64
[    0.346167]   alloc irq_desc for 41 on node -1
[    0.346170]   alloc kstat_irqs on node -1
[    0.346177] pcieport 0000:00:05.0: irq 41 for MSI/MSI-X
[    0.346277] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.346306] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.349289] ACPI: AC Adapter [ACAD] (off-line)
[    0.349380] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.349388] ACPI: Power Button [PWRB]
[    0.349473] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
[    0.349962] ACPI: Lid Switch [LID]
[    0.350053] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.350061] ACPI: Power Button [PWRF]
[    0.350394] ACPI: acpi_idle registered with cpuidle
[    0.350427] ACPI: processor limited to max C-state 1
[    0.355644] thermal LNXTHERM:01: registered as thermal_zone0
[    0.355660] ACPI: Thermal Zone [TZ00] (49 C)
[    0.355861] [Firmware Bug]: ERST: ERST table is invalid
[    0.356141] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.357951] brd: module loaded
[    0.358665] loop: module loaded
[    0.359325] Fixed MDIO Bus: probed
[    0.359369] PPP generic driver version 2.4.2
[    0.359412] tun: Universal TUN/TAP device driver, 1.6
[    0.359415] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.359520] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.359582] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.359609] ehci_hcd 0000:00:12.2: EHCI Host Controller
[    0.359651] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
[    0.359693] ehci_hcd 0000:00:12.2: debug port 1
[    0.359724] ehci_hcd 0000:00:12.2: irq 17, io mem 0xd0906000
[    0.359852] isapnp: Scanning for PnP cards...
[    0.414305] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    0.414456] hub 1-0:1.0: USB hub found
[    0.414463] hub 1-0:1.0: 5 ports detected
[    0.414553] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.414570] ehci_hcd 0000:00:13.2: EHCI Host Controller
[    0.414612] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
[    0.414644] ehci_hcd 0000:00:13.2: debug port 1
[    0.414658] ehci_hcd 0000:00:13.2: irq 17, io mem 0xd0906400
[    0.461673] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    0.461807] hub 2-0:1.0: USB hub found
[    0.461812] hub 2-0:1.0: 5 ports detected
[    0.461903] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.461919]   alloc irq_desc for 18 on node -1
[    0.461922]   alloc kstat_irqs on node -1
[    0.461930] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.461943] ohci_hcd 0000:00:12.0: OHCI Host Controller
[    0.461985] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
[    0.462027] ohci_hcd 0000:00:12.0: irq 18, io mem 0xd0904000
[    0.512596] ACPI: Battery Slot [BAT1] (battery present)
[    0.561420] hub 3-0:1.0: USB hub found
[    0.561432] hub 3-0:1.0: 5 ports detected
[    0.561513] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.561526] ohci_hcd 0000:00:13.0: OHCI Host Controller
[    0.561565] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 4
[    0.561592] ohci_hcd 0000:00:13.0: irq 18, io mem 0xd0905000
[    0.657109] hub 4-0:1.0: USB hub found
[    0.657120] hub 4-0:1.0: 5 ports detected
[    0.657207] uhci_hcd: USB Universal Host Controller Interface driver
[    0.657306] PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12
[    0.662442] i8042.c: Detected active multiplexing controller, rev 1.1.
[    0.665485] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.665492] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    0.665528] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    0.665558] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    0.665594] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    0.665718] mice: PS/2 mouse device common for all mice
[    0.665919] rtc_cmos 00:04: RTC can wake from S4
[    0.665965] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    0.665999] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.666151] device-mapper: uevent: version 1.0.3
[    0.709827] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com
[    0.757229] isapnp: No Plug & Play device found
[    0.757325] device-mapper: multipath: version 1.1.1 loaded
[    0.757329] device-mapper: multipath round-robin: version 1.0.0 loaded
[    0.757484] EISA: Probing bus 0 at eisa.0
[    0.757488] EISA: Cannot allocate resource for mainboard
[    0.757491] Cannot allocate resource for EISA slot 1
[    0.757494] Cannot allocate resource for EISA slot 2
[    0.757497] Cannot allocate resource for EISA slot 3
[    0.757499] Cannot allocate resource for EISA slot 4
[    0.757502] Cannot allocate resource for EISA slot 5
[    0.757505] Cannot allocate resource for EISA slot 6
[    0.757508] Cannot allocate resource for EISA slot 7
[    0.757510] Cannot allocate resource for EISA slot 8
[    0.757513] EISA: Detected 0 cards.
[    0.757610] cpuidle: using governor ladder
[    0.757613] cpuidle: using governor menu
[    0.758030] TCP cubic registered
[    0.758213] NET: Registered protocol family 10
[    0.758715] lo: Disabled Privacy Extensions
[    0.759046] NET: Registered protocol family 17
[    0.759083] powernow-k8: Found 1 AMD Athlon(tm) II Neo K325 Dual-Core Processor (2 cpu cores) (version 2.20.00)
[    0.759132] powernow-k8:    0 : pstate 0 (1300 MHz)
[    0.759135] powernow-k8:    1 : pstate 1 (1100 MHz)
[    0.759138] powernow-k8:    2 : pstate 2 (800 MHz)
[    0.759503] Using IPI No-Shortcut mode
[    0.759647] PM: Resume from disk failed.
[    0.759664] registered taskstats version 1
[    0.759998]   Magic number: 11:197:799
[    0.760064] pci 0000:01:05.0: hash matches
[    0.760074] ec PNP0C09:00: hash matches
[    0.760147] rtc_cmos 00:04: setting system clock to 2011-01-13 19:45:17 UTC (1294947917)
[    0.760151] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.760154] EDD information not available.
[    0.776898] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    0.827494] Freeing initrd memory: 15540k freed
[    0.836894] Freeing unused kernel memory: 704k freed
[    0.837576] Write protecting the kernel text: 5092k
[    0.837691] Write protecting the kernel read-only data: 2016k
[    0.869876] udev[78]: starting version 163
[    0.922787] usb 1-5: new high speed USB device using ehci_hcd and address 3
[    1.009782] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    1.009810] r8169 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.009856] r8169 0000:02:00.0: setting latency timer to 64
[    1.009898]   alloc irq_desc for 42 on node -1
[    1.009901]   alloc kstat_irqs on node -1
[    1.009917] r8169 0000:02:00.0: irq 42 for MSI/MSI-X
[    1.010608] r8169 0000:02:00.0: eth0: RTL8168d/8111d at 0xf850e000, 60:eb:69:03:1e:9a, XID 083000c0 IRQ 42
[    1.016747] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    1.018281] acpi device:30: registered as cooling_device2
[    1.018473] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:2f/LNXVIDEO:02/input/input4
[    1.018539] ACPI: Video Device [VGA2] (multi-head: yes  rom: no  post: no)
[    1.018881] Linux agpgart interface v0.103
[    1.055983] [drm] Initialized drm 1.1.0 20060810
[    1.078942] usb 1-5: config 1 has an invalid interface number: 1 but max is 0
[    1.078948] usb 1-5: config 1 has no interface number 0
[    1.109256] ahci 0000:00:11.0: version 3.0
[    1.109314]   alloc irq_desc for 19 on node -1
[    1.109317]   alloc kstat_irqs on node -1
[    1.109330] ahci 0000:00:11.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[    1.109412]   alloc irq_desc for 43 on node -1
[    1.109415]   alloc kstat_irqs on node -1
[    1.109428] ahci 0000:00:11.0: irq 43 for MSI/MSI-X
[    1.109507] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[    1.109513] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part sxs 
[    1.114652] scsi0 : ahci
[    1.114903] scsi1 : ahci
[    1.115125] ata1: SATA max UDMA/133 abar m1024@0xd0906800 port 0xd0906900 irq 43
[    1.115132] ata2: SATA max UDMA/133 abar m1024@0xd0906800 port 0xd0906980 irq 43
[    1.344112] usb 3-4: new full speed USB device using ohci_hcd and address 2
[    1.432133] ata2: SATA link down (SStatus 0 SControl 300)
[    1.604129] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.605279] ata1.00: ATA-8: HITACHI HTS545025B9A300, PB2ZC61H, max UDMA/100
[    1.605286] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.606664] ata1.00: configured for UDMA/100
[    1.620391] scsi 0:0:0:0: Direct-Access     ATA      HITACHI HTS54502 PB2Z PQ: 0 ANSI: 5
[    1.620651] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.620720] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    1.620839] sd 0:0:0:0: [sda] Write Protect is off
[    1.620844] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.620897] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.621741]  sda:
[    1.632121] usb 2-2: new high speed USB device using ehci_hcd and address 2
[    1.791997] Initializing USB Mass Storage driver...
[    1.792180] scsi2 : usb-storage 2-2:1.0
[    1.792305] usbcore: registered new interface driver usb-storage
[    1.792308] USB Mass Storage support registered.
[    1.892112] usb 2-3: new high speed USB device using ehci_hcd and address 3
[    1.964329]  sda1 sda2
[    1.983245] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.017701] [drm] radeon defaulting to kernel modesetting.
[    2.017706] [drm] radeon kernel modesetting enabled.
[    2.017810] radeon 0000:01:05.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.017817] radeon 0000:01:05.0: setting latency timer to 64
[    2.020149] [drm] initializing kernel modesetting (RS880 0x1002:0x9712).
[    2.020326] [drm] register mmio base: 0xD0500000
[    2.020333] [drm] register mmio size: 65536
[    2.020629] ATOM BIOS: Lenovo_PS2A
[    2.020647] [drm] Clocks initialized !
[    2.020660] radeon 0000:01:05.0: VRAM: 256M 0xC0000000 - 0xCFFFFFFF (256M used)
[    2.020665] radeon 0000:01:05.0: GTT: 512M 0xA0000000 - 0xBFFFFFFF
[    2.021045] [drm] Detected VRAM RAM=256M, BAR=256M
[    2.021052] [drm] RAM width 32bits DDR
[    2.021176] [TTM] Zone  kernel: Available graphics memory: 440076 kiB.
[    2.021181] [TTM] Zone highmem: Available graphics memory: 900140 kiB.
[    2.021184] [TTM] Initializing pool allocator.
[    2.021211] [drm] radeon: 256M of VRAM memory ready
[    2.021215] [drm] radeon: 512M of GTT memory ready.
[    2.021262] [drm] radeon: irq initialized.
[    2.021267] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    2.022405] [drm] Loading RS780 Microcode
[    2.066159] [drm] ring test succeeded in 0 usecs
[    2.066430] [drm] radeon: ib pool ready.
[    2.066526] [drm] ib test succeeded in 0 usecs
[    2.066530] [drm] Enabling audio support
[    2.066840] [drm] Unknown TV standard; defaulting to NTSC
[    2.067079] [drm] Radeon Display Connectors
[    2.067082] [drm] Connector 0:
[    2.067084] [drm]   VGA
[    2.067088] [drm]   DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
[    2.067091] [drm]   Encoders:
[    2.067094] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    2.067096] [drm] Connector 1:
[    2.067098] [drm]   LVDS
[    2.067102] [drm]   DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
[    2.067105] [drm]   Encoders:
[    2.067107] [drm]     LCD1: INTERNAL_KLDSCP_LVTMA
[    2.067110] [drm] Connector 2:
[    2.067112] [drm]   HDMI-A
[    2.067114] [drm]   HPD1
[    2.067117] [drm]   DDC: 0x7e20 0x7e20 0x7e24 0x7e24 0x7e28 0x7e28 0x7e2c 0x7e2c
[    2.067120] [drm]   Encoders:
[    2.067122] [drm]     DFP1: INTERNAL_UNIPHY
[    2.129312] [drm] radeon: power management initialized
[    2.210125] [drm] fb mappable at 0xC0141000
[    2.210130] [drm] vram apper at 0xC0000000
[    2.210133] [drm] size 4325376
[    2.210135] [drm] fb depth is 24
[    2.210138] [drm]    pitch is 5632
[    2.791719] scsi 2:0:0:0: Direct-Access     Generic- Multi-Card       1.00 PQ: 0 ANSI: 0 CCS
[    2.792693] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    2.798050] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[    3.160335] Console: switching to colour frame buffer device 170x48
[    3.175462] fb0: radeondrmfb frame buffer device
[    3.175465] drm: registered panic notifier
[    3.175470] Slow work thread pool: Starting up
[    3.175599] Slow work thread pool: Ready
[    3.175610] [drm] Initialized radeon 2.5.0 20080528 for 0000:01:05.0 on minor 0
[    4.059179] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   12.979394] udev[414]: starting version 163
[   13.111597] Adding 7807584k swap on /dev/sda2.  Priority:-1 extents:1 across:7807584k 
[   13.126322] ACPI: resource piix4_smbus [io  0x8040-0x8047] conflicts with ACPI region SMB0 [??? 0x00008040-0x0000804f flags 0x30]
[   13.126329] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   13.127157] lp: driver loaded but no devices found
[   13.214631] shpchp 0000:00:01.0: HPC vendor_id 1022 device_id 9602 ss_vid 1022 ss_did 9602
[   13.214639] shpchp 0000:00:01.0: Cannot reserve MMIO region
[   13.214675] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   13.230898] EXT4-fs (sda1): warning: maximal mount count reached, running e2fsck is recommended
[   13.241193] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   13.459480] Bluetooth: Core ver 2.15
[   13.459510] Linux video capture interface: v2.00
[   13.459515] NET: Registered protocol family 31
[   13.459522] Bluetooth: HCI device and connection manager initialized
[   13.459528] Bluetooth: HCI socket layer initialized
[   13.470287] Bluetooth: Generic Bluetooth USB driver ver 0.6
[   13.474913] Non-volatile memory driver v1.3
[   13.476828] usbcore: registered new interface driver usbserial
[   13.476885] USB Serial support registered for generic
[   13.490337] type=1400 audit(1294947930.228:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient3" pid=682 comm="apparmor_parser"
[   13.490793] type=1400 audit(1294947930.228:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=682 comm="apparmor_parser"
[   13.491051] type=1400 audit(1294947930.228:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=682 comm="apparmor_parser"
[   13.493049] uvcvideo: Found UVC 1.00 device Integrated Camera (04f2:b1b4)
[   13.494404] usbcore: registered new interface driver btusb
[   13.501451] input: Integrated Camera as /devices/pci0000:00/0000:00:13.2/usb2/2-3/2-3:1.0/input/input5
[   13.501629] usbcore: registered new interface driver usbserial_generic
[   13.501633] usbserial: USB Serial Driver core
[   13.506466] usbcore: registered new interface driver uvcvideo
[   13.506470] USB Video Class driver (v0.1.0)
[   13.510591] USB Serial support registered for Qualcomm USB modem
[   13.510622] qcserial 1-5:1.1: Qualcomm USB modem converter detected
[   13.516339] usb 1-5: Qualcomm USB modem converter now attached to ttyUSB0
[   13.516404] usbcore: registered new interface driver qcserial
[   13.536332] thinkpad_acpi: ThinkPad ACPI Extras v0.24
[   13.536337] thinkpad_acpi: http://ibm-acpi.sf.net/
[   13.536341] thinkpad_acpi: ThinkPad BIOS 87ET34WW (1.08 ), EC 87HT20WW-1.165000
[   13.536345] thinkpad_acpi: Lenovo ThinkPad Edge, model 254523U
[   13.563402] thinkpad_acpi: detected a 16-level brightness capable ThinkPad
[   13.571878] thinkpad_acpi: radio switch found; radios are enabled
[   13.571947] thinkpad_acpi: possible tablet mode switch found; ThinkPad in laptop mode
[   13.571976] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
[   13.571980] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
[   13.575262] thinkpad_acpi: asked for hotkey mask 0x04000070, but firmware forced it to 0x00000070
[   13.616445] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
[   13.655394] thinkpad_acpi: rfkill switch tpacpi_wwan_sw: radio is unblocked
[   13.655475] Registered led device: tpacpi::thinklight
[   13.655514] Registered led device: tpacpi::power
[   13.655537] Registered led device: tpacpi::standby
[   13.655572] Registered led device: tpacpi::thinkvantage
[   13.665636] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one.
[   13.665795] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
[   13.671462] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input6
[   13.924061] type=1400 audit(1294947930.660:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=921 comm="apparmor_parser"
[   13.924525] type=1400 audit(1294947930.660:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=921 comm="apparmor_parser"
[   13.924790] type=1400 audit(1294947930.660:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=921 comm="apparmor_parser"
[   13.925253] type=1400 audit(1294947930.664:8): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=920 comm="apparmor_parser"
[   13.933966] type=1400 audit(1294947930.672:9): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=928 comm="apparmor_parser"
[   13.934559] type=1400 audit(1294947930.672:10): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=928 comm="apparmor_parser"
[   13.938176] type=1400 audit(1294947930.676:11): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=924 comm="apparmor_parser"
[   13.994390] r8169 0000:02:00.0: eth0: link down
[   13.994737] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   14.213264] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   14.213344] ALSA hda_intel.c:2561: chipset global capabilities = 0x4401
[   14.232065] Bluetooth: L2CAP ver 2.14
[   14.232073] Bluetooth: L2CAP socket layer initialized
[   14.244240] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   14.244245] Bluetooth: BNEP filters: protocol multicast
[   14.248048] ALSA hda_intel.c:914: codec_mask = 0x1
[   14.252912] ALSA hda_intel.c:1354: codec #0 probed OK
[   14.255027] Bluetooth: SCO (Voice Link) ver 0.6
[   14.255031] Bluetooth: SCO socket layer initialized
[   14.321778] ALSA hda_codec.c:3726: hda_codec: model 'ideapad' is selected for config 17aa:0 (Lenovo)
[   14.321886] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input7
[   14.322270] ALSA patch_conexant.c:3044: CXT5066: init
[   14.323009] ALSA patch_conexant.c:2386: CXT5066: hp automute portA=0 portD=0 present=0
[   14.323014] ALSA patch_conexant.c:2125: CXT5066: update speaker, hp_present=0, cur_eapd=0
[   14.323175] ALSA patch_conexant.c:2310: CXT5066: external microphone absent
[   14.323458] HDA Intel 0000:01:05.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[   14.323522] HDA Intel 0000:01:05.1: setting latency timer to 64
[   14.323527] ALSA hda_intel.c:2561: chipset global capabilities = 0x1001
[   14.342729] ALSA hda_intel.c:914: codec_mask = 0x1
[   14.348088] ALSA hda_intel.c:1354: codec #0 probed OK
[   14.363080] Synaptics Touchpad, model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd047b1/0xb40000/0xa0000
[   14.363089] serio: Synaptics pass-through port at isa0060/serio4/input0
[   14.400741] Bluetooth: RFCOMM TTY layer initialized
[   14.400751] Bluetooth: RFCOMM socket layer initialized
[   14.400755] Bluetooth: RFCOMM ver 1.11
[   14.416727] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input8
[   14.567611] ppdev: user-space parallel port driver
[   15.379403] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=600
[   16.682943] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.682959] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   16.688126] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.688139] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   16.689877] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   16.689932] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   16.693567] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   16.693581] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   16.693602] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   16.693611] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   16.743984] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.744235] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.744595] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.745155] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.745383] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.745593] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.745910] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.746429] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.746643] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.746860] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.747176] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.747689] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.747903] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.748123] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.748438] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.748951] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.749185] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.749396] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.749712] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.750226] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.750988] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.751004] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   16.757102] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.757119] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   16.757551] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.757779] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.758123] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.758652] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.759404] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.759418] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   16.765082] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.765102] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   16.765151] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.765173] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.766248] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.766514] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.767067] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.767560] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.768253] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.769205] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.769691] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.770166] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.770837] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.771737] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.772236] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.772767] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.773518] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.774416] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.774903] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.775399] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.776069] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.776962] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.779721] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.780234] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.780922] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.781881] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.782331] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.782746] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.783176] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.783613] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.784023] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.784430] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.784861] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.785320] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.785738] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.786149] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.786594] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.787037] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.787488] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.787906] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.788342] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.788803] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.789232] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.789638] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.790067] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.790500] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.790908] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.791314] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.791744] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.792180] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.792591] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.793771] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.794315] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.794781] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.795226] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.795641] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.796088] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.796526] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.796938] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.797767] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.798213] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.798659] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.799078] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.799489] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.799931] hda-intel: IRQ timing workaround is activated for card #1. Suggest a bigger bdl_pos_adj.
[   16.799942] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.800393] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.800900] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.801450] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.802131] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.803042] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.803524] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.803999] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.804689] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.805641] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.806129] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.806603] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.807273] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.808170] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.808650] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.809162] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.809843] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.810804] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.811294] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.811769] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.812444] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.813381] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.813865] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.814346] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.815053] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.815954] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.816437] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.816927] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.817624] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.818521] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.819002] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.819489] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.820159] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.821097] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.821719] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.822240] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.822912] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.823821] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.824308] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.824783] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.825483] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.826393] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   16.833498] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.833713] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.834032] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.834548] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.835284] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.835297] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   16.835344] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   16.835355] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   16.835379] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.835408] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   16.838328] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   16.838344] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   16.838387] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   16.838399] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   16.853976] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   16.853993] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   16.854034] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   16.854045] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   17.603017] psmouse serio5: ID: 10 00 64
[   18.139068] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=600
[   22.109234] IBM TrackPoint firmware: 0x0e, buttons: 3/3
[   22.235065] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   22.235091] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   22.236396] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   22.236481] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   22.396515] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio4/serio5/input/input9
[   23.621844] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   23.621881] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.915431] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   28.915447] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   28.915469] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   28.915478] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   28.917400] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   28.917449] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   28.921354] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   28.921368] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   28.921388] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   28.921397] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x2, stream=0x1, channel=0, format=0x4011
[   28.947924] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.948172] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.948554] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.949129] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.949361] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.949588] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.949922] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.950454] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.950684] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.950909] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.951242] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.951762] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.951988] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.952203] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.952524] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.953061] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.953291] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.953516] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.953847] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.954380] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.955163] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   28.955179] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   28.955224] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   28.955236] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   28.955485] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   28.955713] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   28.956046] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   28.956577] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   28.957310] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   28.957323] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   28.957351] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   28.957361] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   28.957383] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   28.957402] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   28.958352] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.958375] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.958899] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.959400] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.960098] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.961536] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.962066] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.962567] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.963263] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.964175] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.964677] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.965197] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.965891] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.966806] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.967310] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.967808] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.968505] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.969443] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.969952] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.970453] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.971148] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.972065] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.972515] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.972954] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.973425] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.973882] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.974314] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.974741] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.975193] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.975648] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.976082] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.976514] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.976966] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.977625] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.978068] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.978499] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.978950] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.979403] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.979817] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.980242] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.980682] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.981296] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.981741] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.982168] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.982615] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.983067] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.983495] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.983912] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.984358] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.984813] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.985401] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.985833] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.986282] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.986738] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.987169] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.987597] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.988048] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.988502] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.988933] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.989537] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.989992] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.990454] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.990968] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.991471] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.992175] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.993193] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.993714] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.994215] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.994915] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.995837] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.996347] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.996849] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.997574] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.998496] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.998988] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   28.999490] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.000189] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.001123] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.001631] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.002126] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.002824] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.003743] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.004240] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.004737] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.005462] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.006381] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.006886] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.007387] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.008085] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.009018] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.009527] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.010027] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.010725] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.011646] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.012144] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.012636] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.013726] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.014651] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.015144] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.015628] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.016312] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.017551] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   29.024892] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.025250] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.025595] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.026134] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.026854] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   29.026866] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   29.026894] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x3700, format=0x4011
[   29.026905] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   29.026925] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.026949] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   29.030418] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   29.030435] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   29.030478] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   29.030490] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x10, stream=0x5, channel=0, format=0x4011
[   29.110175] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   29.110192] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   29.110232] ALSA hda_intel.c:1679: azx_pcm_prepare: bufsize=0x10000, format=0x4011
[   29.110244] ALSA hda_codec.c:1227: hda_codec_setup_stream: NID=0x14, stream=0x1, channel=0, format=0x4011
[   34.919903] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   34.919937] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x14
[   34.922377] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   34.922470] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x2
[   43.130348] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10
[   43.130388] ALSA hda_codec.c:1290: hda_codec_cleanup_stream: NID=0x10

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 19:41                           ` Thomas Gleixner
  2011-01-13 20:33                             ` Manoj Iyer
@ 2011-01-13 21:09                             ` Borislav Petkov
  2011-01-13 21:30                               ` Thomas Gleixner
  1 sibling, 1 reply; 33+ messages in thread
From: Borislav Petkov @ 2011-01-13 21:09 UTC (permalink / raw)
  To: Thomas Gleixner
  Cc: Matthew Garrett, Manoj Iyer, linux-kernel, Rafael J. Wysocki,
	Herrmann3, Andreas

On Thu, Jan 13, 2011 at 02:41:51PM -0500, Thomas Gleixner wrote:
> On Thu, 13 Jan 2011, Borislav Petkov wrote:
> 
> > On Thu, Jan 13, 2011 at 08:13:42PM +0100, Thomas Gleixner wrote:
> > > > Well, Andreas did boot with 'hpet=verbose' on an affected machine here
> > > > and did a suspend/resume and the hpet config registers looked ok before
> > > > suspend and after resume. It might be that the HPET is temporarily
> > > > "insane" while resume lasts but we don't have any hard facts confirming
> > > 
> > > And you have no explanation at all why applying the irq pin routing
> > > quirk makes HPETs temporal insanity go away magically :)
> > 
> > But after the HPET counter wraps around, the machine is alive again.
> > Which means that the IRQ0 pin2 override is only temporarily needed after
> > resume... Strange.
> 
> Thinking more about it:
> 
> Case 1:	IRQ0 pin2 override applied
> 
>      Resume hangs until HPET wraps around and issues another interrupt
> 
> Case 2: IRQ0 pin2 override ignored via quirk
> 
>      Resume just works
> 
> So the question is what is restored _AFTER_ the HPET is reprogrammed
> in the resume path ?
> 
> The HPET reprogramming happens via timekeeping_resume() which is in
> the sysdev part of resume. ioapic, apic, iommus etc. are also resumed
> via the sysdev_class. So what makes sure that the ordering of these is
> correct?
> 
> AFAICT nothing :)

I see. You're hinting at some wrong ordering between resuming apic and
hpet maybe... But why does this work on SB700 without timer override? So
it looks like SB800 does something differently which cannot stomach what
Linux does. Could it be that after resume, HPET uses "by default" pin0
for the IRQ when it expires and that's why it works?

> We need information about the resume order of sysdev_class and the
> difference of the pin routings in the quirk non/quirk case.

I'll try to get that tomorrow on the SB800 system we have.

>From Manoj's dmesg logs I can see the following (1st one is with the
timer override):

[    0.000000] ACPI: PM-Timer IO Port: 0x8008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 low level)
[    0.000000] ACPI: BIOS IRQ0 pin2 override ignored.
[    0.000000] ACPI: IRQ9 used by override.


[    0.000000] ACPI: PM-Timer IO Port: 0x8008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 low level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.

Which looks ok, AFAICT.

Here's the respective snippet on an SB700 system which suspends fine:

[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[    0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.


Do you see anything? :)

-- 
Regards/Gruss,
Boris.

Advanced Micro Devices GmbH
Einsteinring 24, 85609 Dornach
General Managers: Alberto Bozzo, Andrew Bowd
Registration: Dornach, Gemeinde Aschheim, Landkreis Muenchen
Registergericht Muenchen, HRB Nr. 43632

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 20:33                             ` Manoj Iyer
@ 2011-01-13 21:12                               ` Manoj Iyer
  2011-01-13 21:40                                 ` Thomas Gleixner
  0 siblings, 1 reply; 33+ messages in thread
From: Manoj Iyer @ 2011-01-13 21:12 UTC (permalink / raw)
  To: Thomas Gleixner
  Cc: Borislav Petkov, Matthew Garrett, linux-kernel,
	Rafael J. Wysocki, Herrmann3, Andreas

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

Also, attaching dmesg with my patch applied. Please note the warning
message is printed from dmi_ignore_irq0_timer_override() in
acpi/boot.c, printed before setting acpi_skip_timer_override = 1;

Cheers
Manoj

On Thu, Jan 13, 2011 at 2:33 PM, Manoj Iyer <manoj.iyer@canonical.com> wrote:
> I have attached 4 dmesg outputs from AMD based thinkpad Edge 11.
>
> 1. dmesg output with kernel parameter acpi_skip_timer_override after
> suspend/resume
> 2. dmesg output with kernel parameter acpi_skip_timer_override after system boot
> 3. dmesg output with nohpet kernel parameter after system boot
> 4. dmesg output of stock kernel with no kernel parameters.
>
> I also noticed certain inaccuracies in my patch, but once we decide
> what the right approach to the problem is I will be happy to send out
> a new patch.
>
> Many thanks
> Manoj Iyer
>
> On Thu, Jan 13, 2011 at 1:41 PM, Thomas Gleixner <tglx@linutronix.de> wrote:
>> On Thu, 13 Jan 2011, Borislav Petkov wrote:
>>
>>> On Thu, Jan 13, 2011 at 08:13:42PM +0100, Thomas Gleixner wrote:
>>> > > Well, Andreas did boot with 'hpet=verbose' on an affected machine here
>>> > > and did a suspend/resume and the hpet config registers looked ok before
>>> > > suspend and after resume. It might be that the HPET is temporarily
>>> > > "insane" while resume lasts but we don't have any hard facts confirming
>>> >
>>> > And you have no explanation at all why applying the irq pin routing
>>> > quirk makes HPETs temporal insanity go away magically :)
>>>
>>> But after the HPET counter wraps around, the machine is alive again.
>>> Which means that the IRQ0 pin2 override is only temporarily needed after
>>> resume... Strange.
>>
>> Thinking more about it:
>>
>> Case 1: IRQ0 pin2 override applied
>>
>>     Resume hangs until HPET wraps around and issues another interrupt
>>
>> Case 2: IRQ0 pin2 override ignored via quirk
>>
>>     Resume just works
>>
>> So the question is what is restored _AFTER_ the HPET is reprogrammed
>> in the resume path ?
>>
>> The HPET reprogramming happens via timekeeping_resume() which is in
>> the sysdev part of resume. ioapic, apic, iommus etc. are also resumed
>> via the sysdev_class. So what makes sure that the ordering of these is
>> correct?
>>
>> AFAICT nothing :)
>>
>> We need information about the resume order of sysdev_class and the
>> difference of the pin routings in the quirk non/quirk case.
>>
>> Thanks,
>>
>>        tglx
>>
>
>
>
> --
> --manjo
>



-- 
--manjo

[-- Attachment #2: dmesg.dmiquirk-kernel --]
[-- Type: application/octet-stream, Size: 55723 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.35-25-generic (root@tangerine) (gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5) ) #43 SMP Thu Jan 13 04:57:49 UTC 2011 (Ubuntu 2.6.35-25.43-generic 2.6.35.10)
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009dc00 (usable)
[    0.000000]  BIOS-e820: 000000000009dc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000d0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000006fe8e000 (usable)
[    0.000000]  BIOS-e820: 000000006fe8e000 - 000000006fea0000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000006fea0000 - 000000006feb1000 (ACPI data)
[    0.000000]  BIOS-e820: 000000006feb1000 - 000000006feb3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000006feb3000 - 000000006feff000 (reserved)
[    0.000000]  BIOS-e820: 000000006ff00000 - 0000000080000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
[    0.000000] DMI present.
[    0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x6fe8e max_arch_pfn = 0x100000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-DFFFF write-back
[    0.000000]   E0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFFC0000000 write-back
[    0.000000]   1 base 000040000000 mask FFFFE0000000 write-back
[    0.000000]   2 base 000060000000 mask FFFFF0000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820 update range: 0000000000002000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (reserved)
[    0.000000]  modified: 0000000000001000 - 0000000000002000 (usable)
[    0.000000]  modified: 0000000000002000 - 0000000000010000 (reserved)
[    0.000000]  modified: 0000000000010000 - 000000000009dc00 (usable)
[    0.000000]  modified: 000000000009dc00 - 00000000000a0000 (reserved)
[    0.000000]  modified: 00000000000d0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 000000006fe8e000 (usable)
[    0.000000]  modified: 000000006fe8e000 - 000000006fea0000 (ACPI NVS)
[    0.000000]  modified: 000000006fea0000 - 000000006feb1000 (ACPI data)
[    0.000000]  modified: 000000006feb1000 - 000000006feb3000 (ACPI NVS)
[    0.000000]  modified: 000000006feb3000 - 000000006feff000 (reserved)
[    0.000000]  modified: 000000006ff00000 - 0000000080000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 00000000fec10000 (reserved)
[    0.000000]  modified: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  modified: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] initial memory mapped : 0 - 00c00000
[    0.000000] found SMP MP-table at [c00f7970] f7970
[    0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
[    0.000000]  0000000000 - 0000400000 page 4k
[    0.000000]  0000400000 - 0037400000 page 2M
[    0.000000]  0037400000 - 00377fe000 page 4k
[    0.000000] kernel direct mapping tables up to 377fe000 @ 15000-1a000
[    0.000000] RAMDISK: 370bf000 - 37ff0000
[    0.000000] Allocated new RAMDISK: 009a9000 - 018d90dd
[    0.000000] Move RAMDISK from 00000000370bf000 - 0000000037fef0dc to 009a9000 - 018d90dc
[    0.000000] ------------[ cut here ]------------
[    0.000000] WARNING: at /home/manjo/ubuntu-maverick-674710/arch/x86/kernel/acpi/boot.c:1345 dmi_ignore_irq0_timer_override+0x2e/0x52()
[    0.000000] Hardware name: 254523U
[    0.000000] ati_ixp4x0 quirk not complete.
[    0.000000] Modules linked in:
[    0.000000] Pid: 0, comm: swapper Not tainted 2.6.35-25-generic #43
[    0.000000] Call Trace:
[    0.000000]  [<c014ad42>] warn_slowpath_common+0x72/0xa0
[    0.000000]  [<c0826724>] ? dmi_ignore_irq0_timer_override+0x2e/0x52
[    0.000000]  [<c0826724>] ? dmi_ignore_irq0_timer_override+0x2e/0x52
[    0.000000]  [<c014ae13>] warn_slowpath_fmt+0x33/0x40
[    0.000000]  [<c0826724>] dmi_ignore_irq0_timer_override+0x2e/0x52
[    0.000000]  [<c04dd7d0>] dmi_check_system+0x30/0x50
[    0.000000]  [<c0826df4>] acpi_boot_table_init+0x10/0x7d
[    0.000000]  [<c0821ea7>] ? io_delay_init+0x16/0x18
[    0.000000]  [<c081f556>] setup_arch+0x562/0x645
[    0.000000]  [<c012cf19>] ? default_spin_lock_flags+0x9/0x10
[    0.000000]  [<c081b57b>] start_kernel+0xcf/0x374
[    0.000000]  [<c081b0d7>] i386_start_kernel+0xd7/0xdf
[    0.000000] ---[ end trace a7919e7f17c0a725 ]---
[    0.000000] ThinkPad Edge detected: Ignoring BIOS IRQ0 pin2 override
[    0.000000] ACPI: RSDP 000f78c0 00024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 6fea234c 00084 (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: FACP 6feb0083 000F4 (v03 LENOVO TP-87    00001080 AMD  000F4240)
[    0.000000] ACPI: DSDT 6fea23d0 0DCB3 (v01 LENOVO TP-87    00001080 MSFT 03000001)
[    0.000000] ACPI: FACS 6feb2fc0 00040
[    0.000000] ACPI: TCPA 6feb01eb 00032 (v02 LENOVO TP-87    00001080 PTEC 00000000)
[    0.000000] ACPI: EINJ 6feb021d 001B0 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: HEST 6feb03cd 002E4 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: BERT 6feb06b1 00030 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: SSDT 6feb06e1 000E1 (v01 LENOVO TP-87    00001080 INTL 20050624)
[    0.000000] ACPI: ERST 6feb07c2 00270 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: SSDT 6feb0a32 00386 (v01 LENOVO TP-87    00001080 AMD  00000001)
[    0.000000] ACPI: APIC 6feb0db8 0005E (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: MCFG 6feb0e16 0003C (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: HPET 6feb0e52 00038 (v01 LENOVO TP-87    00001080  LTP 00000001)
[    0.000000] ACPI: SLIC 6feb0e8a 00176 (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 902MB HIGHMEM available.
[    0.000000] 887MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 377fe000
[    0.000000]   low ram: 0 - 377fe000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000001 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000377fe
[    0.000000]   HighMem  0x000377fe -> 0x0006fe8e
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000001 -> 0x00000002
[    0.000000]     0: 0x00000010 -> 0x0000009d
[    0.000000]     0: 0x00000100 -> 0x0006fe8e
[    0.000000] On node 0 totalpages: 458268
[    0.000000] free_area_init_node: node 0, pgdat c0801fc0, node_mem_map c18db020
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3950 pages, LIFO batch:0
[    0.000000]   Normal zone: 1744 pages used for memmap
[    0.000000]   Normal zone: 221486 pages, LIFO batch:31
[    0.000000]   HighMem zone: 1806 pages used for memmap
[    0.000000]   HighMem zone: 229250 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x8008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 low level)
[    0.000000] ACPI: BIOS IRQ0 pin2 override ignored.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x43538210 base: 0xfed00000
[    0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] early_res array is doubled to 64 at [16000 - 167ff]
[    0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000010000
[    0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
[    0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d0000
[    0.000000] PM: Registered nosave memory: 00000000000d0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:7ec00000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] PERCPU: Embedded 14 pages/cpu @c2800000 s36416 r0 d20928 u2097152
[    0.000000] pcpu-alloc: s36416 r0 d20928 u2097152 alloc=1*4194304
[    0.000000] pcpu-alloc: [0] 0 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 454686
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-25-generic root=UUID=d5c705ef-5eb6-40af-9c36-2dccfbec5452 ro quiet splash
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Enabling fast FPU save and restore... done.
[    0.000000] Enabling unmasked SIMD FPU exception support... done.
[    0.000000] Initializing CPU#0
[    0.000000] allocated 9167620 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Subtract (52 early reservations)
[    0.000000]   #1 [0000001000 - 0000002000]   EX TRAMPOLINE
[    0.000000]   #2 [0000100000 - 00009a4adc]   TEXT DATA BSS
[    0.000000]   #3 [00009a5000 - 00009a8130]             BRK
[    0.000000]   #4 [00000f7980 - 0000100000]   BIOS reserved
[    0.000000]   #5 [00000f7970 - 00000f7980]    MP-table mpf
[    0.000000]   #6 [000009dc00 - 000009e071]   BIOS reserved
[    0.000000]   #7 [000009e1bd - 00000f7970]   BIOS reserved
[    0.000000]   #8 [000009e071 - 000009e1bd]    MP-table mpc
[    0.000000]   #9 [0000010000 - 0000011000]      TRAMPOLINE
[    0.000000]   #10 [0000011000 - 0000015000]     ACPI WAKEUP
[    0.000000]   #11 [0000015000 - 0000016000]         PGTABLE
[    0.000000]   #12 [00009a9000 - 00018da000]     NEW RAMDISK
[    0.000000]   #13 [00018da000 - 00018db000]         BOOTMEM
[    0.000000]   #14 [00018db000 - 00026db000]         BOOTMEM
[    0.000000]   #15 [00026db000 - 00026db004]         BOOTMEM
[    0.000000]   #16 [00026db040 - 00026db100]         BOOTMEM
[    0.000000]   #17 [00026db100 - 00026db154]         BOOTMEM
[    0.000000]   #18 [00026db180 - 00026de180]         BOOTMEM
[    0.000000]   #19 [00026de180 - 00026de1d8]         BOOTMEM
[    0.000000]   #20 [00026de200 - 00026e1200]         BOOTMEM
[    0.000000]   #21 [00026e1200 - 00026e1225]         BOOTMEM
[    0.000000]   #22 [00026e1240 - 00026e1267]         BOOTMEM
[    0.000000]   #23 [00026e1280 - 00026e1424]         BOOTMEM
[    0.000000]   #24 [00026e1440 - 00026e1480]         BOOTMEM
[    0.000000]   #25 [00026e1480 - 00026e14c0]         BOOTMEM
[    0.000000]   #26 [00026e14c0 - 00026e1500]         BOOTMEM
[    0.000000]   #27 [00026e1500 - 00026e1540]         BOOTMEM
[    0.000000]   #28 [00026e1540 - 00026e1580]         BOOTMEM
[    0.000000]   #29 [00026e1580 - 00026e15c0]         BOOTMEM
[    0.000000]   #30 [00026e15c0 - 00026e1600]         BOOTMEM
[    0.000000]   #31 [00026e1600 - 00026e1640]         BOOTMEM
[    0.000000]   #32 [00026e1640 - 00026e1680]         BOOTMEM
[    0.000000]   #33 [00026e1680 - 00026e16c0]         BOOTMEM
[    0.000000]   #34 [00026e16c0 - 00026e1700]         BOOTMEM
[    0.000000]   #35 [00026e1700 - 00026e1740]         BOOTMEM
[    0.000000]   #36 [00026e1740 - 00026e1750]         BOOTMEM
[    0.000000]   #37 [00026e1780 - 00026e1790]         BOOTMEM
[    0.000000]   #38 [00026e17c0 - 00026e182a]         BOOTMEM
[    0.000000]   #39 [00026e1840 - 00026e18aa]         BOOTMEM
[    0.000000]   #40 [0002800000 - 000280e000]         BOOTMEM
[    0.000000]   #41 [0002a00000 - 0002a0e000]         BOOTMEM
[    0.000000]   #42 [00026e38c0 - 00026e38c4]         BOOTMEM
[    0.000000]   #43 [00026e3900 - 00026e3904]         BOOTMEM
[    0.000000]   #44 [00026e3940 - 00026e3948]         BOOTMEM
[    0.000000]   #45 [00026e3980 - 00026e3988]         BOOTMEM
[    0.000000]   #46 [00026e39c0 - 00026e3a68]         BOOTMEM
[    0.000000]   #47 [00026e3a80 - 00026e3ae8]         BOOTMEM
[    0.000000]   #48 [00026e3b00 - 00026e7b00]         BOOTMEM
[    0.000000]   #49 [00026e7b00 - 0002767b00]         BOOTMEM
[    0.000000]   #50 [0002767b00 - 00027a7b00]         BOOTMEM
[    0.000000]   #51 [0002a0e000 - 00032cc304]         BOOTMEM
[    0.000000] Initializing HighMem for node 0 (000377fe:0006fe8e)
[    0.000000] Memory: 1784396k/1833528k available (4933k kernel code, 48676k reserved, 2339k data, 688k init, 924224k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff16000 - 0xfffff000   ( 932 kB)
[    0.000000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
[    0.000000]     vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
[    0.000000]       .init : 0xc081b000 - 0xc08c7000   ( 688 kB)
[    0.000000]       .data : 0xc05d17ce - 0xc081a7a8   (2339 kB)
[    0.000000]       .text : 0xc0100000 - 0xc05d17ce   (4933 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU-based detection of stalled CPUs is disabled.
[    0.000000] 	Verbose stalled-CPUs detection is disabled.
[    0.000000] NR_IRQS:2304 nr_irqs:512
[    0.000000] Extended CMOS year: 2000
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1296.910 MHz processor.
[    0.004007] Calibrating delay loop (skipped), value calculated using timer frequency.. 2593.82 BogoMIPS (lpj=5187640)
[    0.004017] pid_max: default: 32768 minimum: 301
[    0.004049] Security Framework initialized
[    0.004081] AppArmor: AppArmor initialized
[    0.004084] Yama: becoming mindful.
[    0.004186] Mount-cache hash table entries: 512
[    0.004380] Initializing cgroup subsys ns
[    0.004386] Initializing cgroup subsys cpuacct
[    0.004394] Initializing cgroup subsys memory
[    0.004409] Initializing cgroup subsys devices
[    0.004414] Initializing cgroup subsys freezer
[    0.004418] Initializing cgroup subsys net_cls
[    0.004455] CPU: Physical Processor ID: 0
[    0.004459] CPU: Processor Core ID: 0
[    0.004464] mce: CPU supports 6 MCE banks
[    0.004479] using C1E aware idle routine
[    0.004489] Performance Events: AMD PMU driver.
[    0.004501] ... version:                0
[    0.004505] ... bit width:              48
[    0.004509] ... generic registers:      4
[    0.004513] ... value mask:             0000ffffffffffff
[    0.004517] ... max period:             00007fffffffffff
[    0.004521] ... fixed-purpose events:   0
[    0.004525] ... event mask:             000000000000000f
[    0.012245] ACPI: Core revision 20100428
[    0.040033] ftrace: converting mcount calls to 0f 1f 44 00 00
[    0.040046] ftrace: allocating 21756 entries in 43 pages
[    0.044104] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.044458] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
[    0.048000] ..MP-BIOS bug: 8254 timer not connected to IO-APIC
[    0.048000] ...trying to set up timer (IRQ0) through the 8259A ...
[    0.048000] ..... (found apic 0 pin 0) ...
[    0.089652] ....... works.
[    0.089654] CPU0: AMD Athlon(tm) II Neo K325 Dual-Core Processor stepping 03
[    0.092000] Booting Node   0, Processors  #1 Ok.
[    0.008000] Initializing CPU#1
[    0.180013] Brought up 2 CPUs
[    0.180017] Total of 2 processors activated (5187.37 BogoMIPS).
[    0.180029] System has AMD C1E enabled
[    0.180049] Switch to broadcast mode on CPU1
[    0.180411] Switch to broadcast mode on CPU0
[    0.180411] devtmpfs: initialized
[    0.181535] regulator: core version 0.5
[    0.181604] Time: 19:48:00  Date: 01/13/11
[    0.181662] NET: Registered protocol family 16
[    0.181722] Trying to unpack rootfs image as initramfs...
[    0.181838] EISA bus registered
[    0.181846] node 0 link 0: io port [1000, ffff]
[    0.181851] TOM: 0000000080000000 aka 2048M
[    0.181854] Fam 10h mmconf [e0000000, efffffff]
[    0.181858] node 0 link 0: mmio [80000000, bfffffff]
[    0.181863] node 0 link 0: mmio [c0000000, cfffffff]
[    0.181868] node 0 link 0: mmio [d0000000, d03fffff]
[    0.181872] node 0 link 0: mmio [d0400000, d05fffff]
[    0.181876] node 0 link 0: mmio [d0600000, dfffffff]
[    0.181880] node 0 link 0: mmio [e0000000, efffffff] ==> none
[    0.181885] node 0 link 0: mmio [f0000000, febfffff]
[    0.181889] node 0 link 0: mmio [fec00000, ffffffff]
[    0.181894] bus: [00, 1f] on node 0 link 0
[    0.181898] bus: 00 index 0 [io  0x0000-0xffff]
[    0.181902] bus: 00 index 1 [mem 0x80000000-0xdfffffff]
[    0.181906] bus: 00 index 2 [mem 0xf0000000-0xffffffff]
[    0.181919] ACPI: bus type pci registered
[    0.182014] PCI: MMCONFIG for domain 0000 [bus 00-08] at [mem 0xe0000000-0xe08fffff] (base 0xe0000000)
[    0.182018] PCI: not using MMCONFIG
[    0.182365] PCI: PCI BIOS revision 2.10 entry at 0xfdc8a, last bus=9
[    0.182369] PCI: Using configuration type 1 for base access
[    0.182371] PCI: Using configuration type 1 for extended access
[    0.182396] mtrr: your CPUs had inconsistent fixed MTRR settings
[    0.182399] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.182402] mtrr: probably your BIOS does not setup all CPUs.
[    0.182404] mtrr: corrected configuration.
[    0.188297] bio: create slab <bio-0> at 0
[    0.191410] ACPI: EC: Look up EC in DSDT
[    0.191663] \_SB_:_OSC evaluation returned wrong type
[    0.191663] _OSC request data:1 7 
[    0.200000] ACPI: BIOS _OSI(Linux) query ignored
[    0.200699] ACPI: OEMN 6feb1ab3 00131 (v01 AMD    NAHP     00000001 MSFT 03000001)
[    0.201506] ACPI: Enabled 1 new runtime GPEs, added 0 new wakeup GPEs
[    0.201513] ACPI: Dynamic OEM Table Load:
[    0.201517] ACPI: OEMN (null) 00131 (v01 AMD    NAHP     00000001 MSFT 03000001)
[    0.208263] ACPI: Interpreter enabled
[    0.208271] ACPI: (supports S0 S3 S4 S5)
[    0.208307] ACPI: Using IOAPIC for interrupt routing
[    0.208878] PCI: MMCONFIG for domain 0000 [bus 00-08] at [mem 0xe0000000-0xe08fffff] (base 0xe0000000)
[    0.209744] [Firmware Bug]: PCI: MMCONFIG at [mem 0xe0000000-0xe08fffff] not reserved in ACPI motherboard resources
[    0.209749] PCI: not using MMCONFIG
[    0.210378] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.210699] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.214309] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.220529] ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
[    0.221000] ACPI: No dock devices found.
[    0.221006] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.223066] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.224637] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.224644] pci_root PNP0A08:00: host bridge window [mem 0x80000000-0xdfffffff]
[    0.224649] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xffffffff]
[    0.224654] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.224658] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    0.224858] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
[    0.224863] pci 0000:00:04.0: PME# disabled
[    0.224919] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
[    0.224923] pci 0000:00:05.0: PME# disabled
[    0.224992] pci 0000:00:11.0: reg 10: [io  0x8440-0x8447]
[    0.225001] pci 0000:00:11.0: reg 14: [io  0x8430-0x8433]
[    0.225010] pci 0000:00:11.0: reg 18: [io  0x8420-0x8427]
[    0.225018] pci 0000:00:11.0: reg 1c: [io  0x8410-0x8413]
[    0.225027] pci 0000:00:11.0: reg 20: [io  0x8400-0x840f]
[    0.225036] pci 0000:00:11.0: reg 24: [mem 0xd0906800-0xd0906bff]
[    0.225109] pci 0000:00:12.0: reg 10: [mem 0xd0904000-0xd0904fff]
[    0.225186] pci 0000:00:12.2: reg 10: [mem 0xd0906000-0xd09060ff]
[    0.225245] pci 0000:00:12.2: supports D1 D2
[    0.225248] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.225254] pci 0000:00:12.2: PME# disabled
[    0.225290] pci 0000:00:13.0: reg 10: [mem 0xd0905000-0xd0905fff]
[    0.225366] pci 0000:00:13.2: reg 10: [mem 0xd0906400-0xd09064ff]
[    0.225426] pci 0000:00:13.2: supports D1 D2
[    0.225429] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.225434] pci 0000:00:13.2: PME# disabled
[    0.225542] pci 0000:00:14.2: reg 10: [mem 0xd0900000-0xd0903fff 64bit]
[    0.225592] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.225598] pci 0000:00:14.2: PME# disabled
[    0.225873] pci 0000:01:05.0: reg 10: [mem 0xc0000000-0xcfffffff pref]
[    0.225880] pci 0000:01:05.0: reg 14: [io  0x9000-0x90ff]
[    0.225887] pci 0000:01:05.0: reg 18: [mem 0xd0500000-0xd050ffff]
[    0.225898] pci 0000:01:05.0: reg 24: [mem 0xd0400000-0xd04fffff]
[    0.225917] pci 0000:01:05.0: supports D1 D2
[    0.225941] pci 0000:01:05.1: reg 10: [mem 0xd0510000-0xd0513fff]
[    0.225973] pci 0000:01:05.1: supports D1 D2
[    0.226025] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.226031] pci 0000:00:01.0:   bridge window [io  0x9000-0x9fff]
[    0.226037] pci 0000:00:01.0:   bridge window [mem 0xd0400000-0xd05fffff]
[    0.226044] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.226108] pci 0000:02:00.0: reg 10: [io  0xbc00-0xbcff]
[    0.226128] pci 0000:02:00.0: reg 18: [mem 0xd0200000-0xd0200fff 64bit pref]
[    0.226143] pci 0000:02:00.0: reg 20: [mem 0xd0000000-0xd0003fff 64bit pref]
[    0.226153] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[    0.226190] pci 0000:02:00.0: supports D1 D2
[    0.226194] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.226199] pci 0000:02:00.0: PME# disabled
[    0.232044] pci 0000:00:04.0: PCI bridge to [bus 02-07]
[    0.232054] pci 0000:00:04.0:   bridge window [io  0xa000-0xbfff]
[    0.232060] pci 0000:00:04.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.232068] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.232148] pci 0000:08:00.0: reg 10: [io  0xc000-0xc0ff]
[    0.232171] pci 0000:08:00.0: reg 18: [mem 0xd0600000-0xd0603fff 64bit]
[    0.232233] pci 0000:08:00.0: supports D1 D2
[    0.232237] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.232244] pci 0000:08:00.0: PME# disabled
[    0.240052] pci 0000:00:05.0: PCI bridge to [bus 08-08]
[    0.240062] pci 0000:00:05.0:   bridge window [io  0xc000-0xcfff]
[    0.240068] pci 0000:00:05.0:   bridge window [mem 0xd0600000-0xd06fffff]
[    0.240075] pci 0000:00:05.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.240160] pci 0000:00:14.4: PCI bridge to [bus 09-09] (subtractive decode)
[    0.240166] pci 0000:00:14.4:   bridge window [io  0xf000-0x0000] (disabled)
[    0.240173] pci 0000:00:14.4:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.240180] pci 0000:00:14.4:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.240184] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.240189] pci 0000:00:14.4:   bridge window [mem 0x80000000-0xdfffffff] (subtractive decode)
[    0.240193] pci 0000:00:14.4:   bridge window [mem 0xf0000000-0xffffffff] (subtractive decode)
[    0.240197] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.240201] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.240221] pci_bus 0000:00: on NUMA node 0
[    0.240233] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.240616] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB4_._PRT]
[    0.240740] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB5_._PRT]
[    0.240929] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
[    0.241078] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
[    0.247843] ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11) *0
[    0.248177] ACPI: PCI Interrupt Link [LNKB] (IRQs 10 11) *0
[    0.248473] ACPI: PCI Interrupt Link [LNKC] (IRQs 10 11) *0
[    0.248768] ACPI: PCI Interrupt Link [LNKD] (IRQs 10 11) *0
[    0.249068] ACPI: PCI Interrupt Link [LNKE] (IRQs 10 11) *0
[    0.249278] ACPI: PCI Interrupt Link [LNKF] (IRQs 10 11) *0
[    0.249493] ACPI: PCI Interrupt Link [LNKG] (IRQs 10 11) *0
[    0.249709] ACPI: PCI Interrupt Link [LNKH] (IRQs 10 11) *0
[    0.249883] HEST: HEST table parsing is initialized.
[    0.249996] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    0.250002] vgaarb: loaded
[    0.250212] SCSI subsystem initialized
[    0.252000] libata version 3.00 loaded.
[    0.252000] usbcore: registered new interface driver usbfs
[    0.252000] usbcore: registered new interface driver hub
[    0.252000] usbcore: registered new device driver usb
[    0.252000] ACPI: WMI: Mapper loaded
[    0.252000] PCI: Using ACPI for IRQ routing
[    0.252000] PCI: pci_cache_line_size set to 64 bytes
[    0.252000] reserve RAM buffer: 0000000000002000 - 000000000000ffff 
[    0.252000] reserve RAM buffer: 000000000009dc00 - 000000000009ffff 
[    0.252000] reserve RAM buffer: 000000006fe8e000 - 000000006fffffff 
[    0.252000] NetLabel: Initializing
[    0.252000] NetLabel:  domain hash size = 128
[    0.252000] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.252000] NetLabel:  unlabeled traffic allowed by default
[    0.252000] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.252000] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.253041] Switching to clocksource tsc
[    0.268188] AppArmor: AppArmor Filesystem Enabled
[    0.268210] pnp: PnP ACPI init
[    0.268236] ACPI: bus type pnp registered
[    0.273610] pnp: PnP ACPI: found 10 devices
[    0.273615] ACPI: ACPI bus type pnp unregistered
[    0.273619] PnPBIOS: Disabled by ACPI PNP
[    0.273642] system 00:01: [io  0x0f50-0x0f51] has been reserved
[    0.273648] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.273653] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.273666] system 00:08: [io  0x0220-0x022f] has been reserved
[    0.273670] system 00:08: [io  0x040b] has been reserved
[    0.273675] system 00:08: [io  0x04d0-0x04d1] has been reserved
[    0.273679] system 00:08: [io  0x04d6] has been reserved
[    0.273683] system 00:08: [io  0x0530-0x0537] has been reserved
[    0.273687] system 00:08: [io  0x0c00-0x0c01] has been reserved
[    0.273691] system 00:08: [io  0x0c14] has been reserved
[    0.273695] system 00:08: [io  0x0c50-0x0c52] has been reserved
[    0.273698] system 00:08: [io  0x0c6c] has been reserved
[    0.273702] system 00:08: [io  0x0c6f] has been reserved
[    0.273706] system 00:08: [io  0x0cd0-0x0cd1] has been reserved
[    0.273710] system 00:08: [io  0x0cd2-0x0cd3] has been reserved
[    0.273714] system 00:08: [io  0x0cd4-0x0cd5] has been reserved
[    0.273718] system 00:08: [io  0x0cd6-0x0cd7] has been reserved
[    0.273722] system 00:08: [io  0x0cd8-0x0cdf] has been reserved
[    0.273727] system 00:08: [io  0x8000-0x805f] has been reserved
[    0.273731] system 00:08: [io  0x8100-0x81ff window] has been reserved
[    0.273736] system 00:08: [io  0x8200-0x82ff window] has been reserved
[    0.273746] system 00:08: [io  0x0f40-0x0f47] has been reserved
[    0.273750] system 00:08: [io  0x087f] has been reserved
[    0.273758] system 00:09: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.273763] system 00:09: [mem 0xffe00000-0xffffffff] could not be reserved
[    0.273768] system 00:09: [mem 0xfec10000-0xfec1001f] has been reserved
[    0.273772] system 00:09: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.273777] system 00:09: [mem 0xfed61000-0xfed613ff] has been reserved
[    0.273781] system 00:09: [mem 0xfed80000-0xfed80fff] has been reserved
[    0.273785] system 00:09: [mem 0xfffffd00-0x0001fcff] could not be reserved
[    0.310441] pci 0000:00:04.0: BAR 14: assigned [mem 0x80000000-0x800fffff]
[    0.310447] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.310452] pci 0000:00:01.0:   bridge window [io  0x9000-0x9fff]
[    0.310458] pci 0000:00:01.0:   bridge window [mem 0xd0400000-0xd05fffff]
[    0.310463] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.310471] pci 0000:02:00.0: BAR 6: assigned [mem 0xd0020000-0xd003ffff pref]
[    0.310475] pci 0000:00:04.0: PCI bridge to [bus 02-07]
[    0.310480] pci 0000:00:04.0:   bridge window [io  0xa000-0xbfff]
[    0.310485] pci 0000:00:04.0:   bridge window [mem 0x80000000-0x800fffff]
[    0.310491] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.310498] pci 0000:00:05.0: PCI bridge to [bus 08-08]
[    0.310502] pci 0000:00:05.0:   bridge window [io  0xc000-0xcfff]
[    0.310507] pci 0000:00:05.0:   bridge window [mem 0xd0600000-0xd06fffff]
[    0.310512] pci 0000:00:05.0:   bridge window [mem pref disabled]
[    0.310518] pci 0000:00:14.4: PCI bridge to [bus 09-09]
[    0.310521] pci 0000:00:14.4:   bridge window [io  disabled]
[    0.310531] pci 0000:00:14.4:   bridge window [mem disabled]
[    0.310537] pci 0000:00:14.4:   bridge window [mem pref disabled]
[    0.310558]   alloc irq_desc for 16 on node -1
[    0.310561]   alloc kstat_irqs on node -1
[    0.310570] pci 0000:00:04.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.310575] pci 0000:00:04.0: setting latency timer to 64
[    0.310585]   alloc irq_desc for 17 on node -1
[    0.310588]   alloc kstat_irqs on node -1
[    0.310594] pci 0000:00:05.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    0.310599] pci 0000:00:05.0: setting latency timer to 64
[    0.310610] pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff]
[    0.310615] pci_bus 0000:00: resource 5 [mem 0x80000000-0xdfffffff]
[    0.310619] pci_bus 0000:00: resource 6 [mem 0xf0000000-0xffffffff]
[    0.310623] pci_bus 0000:00: resource 7 [io  0x0000-0x0cf7]
[    0.310627] pci_bus 0000:00: resource 8 [io  0x0d00-0xffff]
[    0.310631] pci_bus 0000:01: resource 0 [io  0x9000-0x9fff]
[    0.310635] pci_bus 0000:01: resource 1 [mem 0xd0400000-0xd05fffff]
[    0.310639] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.310651] pci_bus 0000:02: resource 0 [io  0xa000-0xbfff]
[    0.310655] pci_bus 0000:02: resource 1 [mem 0x80000000-0x800fffff]
[    0.310660] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.310664] pci_bus 0000:08: resource 0 [io  0xc000-0xcfff]
[    0.310668] pci_bus 0000:08: resource 1 [mem 0xd0600000-0xd06fffff]
[    0.310672] pci_bus 0000:09: resource 4 [mem 0x000a0000-0x000bffff]
[    0.310676] pci_bus 0000:09: resource 5 [mem 0x80000000-0xdfffffff]
[    0.310680] pci_bus 0000:09: resource 6 [mem 0xf0000000-0xffffffff]
[    0.310684] pci_bus 0000:09: resource 7 [io  0x0000-0x0cf7]
[    0.310688] pci_bus 0000:09: resource 8 [io  0x0d00-0xffff]
[    0.310737] NET: Registered protocol family 2
[    0.310822] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.311155] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.311998] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.312421] TCP: Hash tables configured (established 131072 bind 65536)
[    0.312425] TCP reno registered
[    0.312430] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.312445] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.312561] NET: Registered protocol family 1
[    0.312584] pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
[    0.346795] pci 0000:01:05.0: Boot video device
[    0.346812] PCI: CLS 32 bytes, default 64
[    0.347106] cpufreq-nforce2: No nForce2 chipset.
[    0.347144] Scanning for low memory corruption every 60 seconds
[    0.347327] audit: initializing netlink socket (disabled)
[    0.347342] type=2000 audit(1294948079.344:1): initialized
[    0.362789] highmem bounce pool size: 64 pages
[    0.362796] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    0.364707] VFS: Disk quotas dquot_6.5.2
[    0.364789] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.365579] fuse init (API version 7.14)
[    0.365702] msgmni has been set to 1680
[    0.366144] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.366149] io scheduler noop registered
[    0.366152] io scheduler deadline registered
[    0.366173] io scheduler cfq registered (default)
[    0.366319] pcieport 0000:00:04.0: setting latency timer to 64
[    0.366353]   alloc irq_desc for 40 on node -1
[    0.366356]   alloc kstat_irqs on node -1
[    0.366367] pcieport 0000:00:04.0: irq 40 for MSI/MSI-X
[    0.366441] pcieport 0000:00:05.0: setting latency timer to 64
[    0.366471]   alloc irq_desc for 41 on node -1
[    0.366473]   alloc kstat_irqs on node -1
[    0.366480] pcieport 0000:00:05.0: irq 41 for MSI/MSI-X
[    0.366577] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.366605] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.367473] ACPI: AC Adapter [ACAD] (off-line)
[    0.367565] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.367573] ACPI: Power Button [PWRB]
[    0.367657] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
[    0.368169] ACPI: Lid Switch [LID]
[    0.368259] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.368267] ACPI: Power Button [PWRF]
[    0.368586] ACPI: acpi_idle registered with cpuidle
[    0.368618] ACPI: processor limited to max C-state 1
[    0.374037] thermal LNXTHERM:01: registered as thermal_zone0
[    0.374053] ACPI: Thermal Zone [TZ00] (53 C)
[    0.374304] [Firmware Bug]: ERST: ERST table is invalid
[    0.374515] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.376341] brd: module loaded
[    0.377017] loop: module loaded
[    0.377647] Fixed MDIO Bus: probed
[    0.377692] PPP generic driver version 2.4.2
[    0.377734] tun: Universal TUN/TAP device driver, 1.6
[    0.377737] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.377834] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.377897] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.377922] ehci_hcd 0000:00:12.2: EHCI Host Controller
[    0.377963] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
[    0.378004] ehci_hcd 0000:00:12.2: debug port 1
[    0.378034] ehci_hcd 0000:00:12.2: irq 17, io mem 0xd0906000
[    0.378163] isapnp: Scanning for PnP cards...
[    0.432590] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    0.432767] hub 1-0:1.0: USB hub found
[    0.432773] hub 1-0:1.0: 5 ports detected
[    0.432891] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.432905] ehci_hcd 0000:00:13.2: EHCI Host Controller
[    0.432947] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
[    0.432983] ehci_hcd 0000:00:13.2: debug port 1
[    0.432997] ehci_hcd 0000:00:13.2: irq 17, io mem 0xd0906400
[    0.481917] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    0.482075] hub 2-0:1.0: USB hub found
[    0.482080] hub 2-0:1.0: 5 ports detected
[    0.482170] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.482210]   alloc irq_desc for 18 on node -1
[    0.482213]   alloc kstat_irqs on node -1
[    0.482222] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.482235] ohci_hcd 0000:00:12.0: OHCI Host Controller
[    0.482278] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
[    0.482315] ohci_hcd 0000:00:12.0: irq 18, io mem 0xd0904000
[    0.584173] hub 3-0:1.0: USB hub found
[    0.584185] hub 3-0:1.0: 5 ports detected
[    0.584264] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.584277] ohci_hcd 0000:00:13.0: OHCI Host Controller
[    0.584319] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 4
[    0.584344] ohci_hcd 0000:00:13.0: irq 18, io mem 0xd0905000
[    0.679976] hub 4-0:1.0: USB hub found
[    0.679988] hub 4-0:1.0: 5 ports detected
[    0.680074] uhci_hcd: USB Universal Host Controller Interface driver
[    0.680173] PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12
[    0.704655] i8042.c: Detected active multiplexing controller, rev 1.1.
[    0.743069] ACPI: Battery Slot [BAT1] (battery present)
[    0.761740] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.761747] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    0.761784] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    0.761820] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    0.761853] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    0.761974] mice: PS/2 mouse device common for all mice
[    0.762173] rtc_cmos 00:04: RTC can wake from S4
[    0.762219] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    0.762253] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.762393] device-mapper: uevent: version 1.0.3
[    0.810168] isapnp: No Plug & Play device found
[    0.810275] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com
[    0.810418] device-mapper: multipath: version 1.1.1 loaded
[    0.810422] device-mapper: multipath round-robin: version 1.0.0 loaded
[    0.810568] EISA: Probing bus 0 at eisa.0
[    0.810572] EISA: Cannot allocate resource for mainboard
[    0.810575] Cannot allocate resource for EISA slot 1
[    0.810578] Cannot allocate resource for EISA slot 2
[    0.810580] Cannot allocate resource for EISA slot 3
[    0.810583] Cannot allocate resource for EISA slot 4
[    0.810586] Cannot allocate resource for EISA slot 5
[    0.810589] Cannot allocate resource for EISA slot 6
[    0.810591] Cannot allocate resource for EISA slot 7
[    0.810594] Cannot allocate resource for EISA slot 8
[    0.810597] EISA: Detected 0 cards.
[    0.810690] cpuidle: using governor ladder
[    0.810693] cpuidle: using governor menu
[    0.811121] TCP cubic registered
[    0.811295] NET: Registered protocol family 10
[    0.811790] lo: Disabled Privacy Extensions
[    0.812117] NET: Registered protocol family 17
[    0.812154] powernow-k8: Found 1 AMD Athlon(tm) II Neo K325 Dual-Core Processor (2 cpu cores) (version 2.20.00)
[    0.812203] powernow-k8:    0 : pstate 0 (1300 MHz)
[    0.812206] powernow-k8:    1 : pstate 1 (1100 MHz)
[    0.812209] powernow-k8:    2 : pstate 2 (800 MHz)
[    0.812631] Using IPI No-Shortcut mode
[    0.812758] PM: Resume from disk failed.
[    0.812781] registered taskstats version 1
[    0.813091]   Magic number: 11:747:849
[    0.813120] graphics fbcon: hash matches
[    0.813236] rtc_cmos 00:04: setting system clock to 2011-01-13 19:48:01 UTC (1294948081)
[    0.813241] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.813243] EDD information not available.
[    0.832157] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    0.844529] Freeing initrd memory: 15556k freed
[    0.853900] Freeing unused kernel memory: 688k freed
[    0.854567] Write protecting the kernel text: 4936k
[    0.854645] Write protecting the kernel read-only data: 1980k
[    0.886155] udev[78]: starting version 163
[    0.978639] usb 1-5: new high speed USB device using ehci_hcd and address 3
[    1.067307] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    1.067339] r8169 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.067394] r8169 0000:02:00.0: setting latency timer to 64
[    1.067435]   alloc irq_desc for 42 on node -1
[    1.067438]   alloc kstat_irqs on node -1
[    1.067455] r8169 0000:02:00.0: irq 42 for MSI/MSI-X
[    1.068176] r8169 0000:02:00.0: eth0: RTL8168d/8111d at 0xf813e000, 60:eb:69:03:1e:9a, XID 083000c0 IRQ 42
[    1.079888] ahci 0000:00:11.0: version 3.0
[    1.079909]   alloc irq_desc for 19 on node -1
[    1.079913]   alloc kstat_irqs on node -1
[    1.079924] ahci 0000:00:11.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[    1.079984]   alloc irq_desc for 43 on node -1
[    1.079986]   alloc kstat_irqs on node -1
[    1.080011] ahci 0000:00:11.0: irq 43 for MSI/MSI-X
[    1.080093] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[    1.080099] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part sxs 
[    1.080971] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    1.082862] acpi device:30: registered as cooling_device2
[    1.083276] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:2f/LNXVIDEO:02/input/input4
[    1.083380] ACPI: Video Device [VGA2] (multi-head: yes  rom: no  post: no)
[    1.084049] scsi0 : ahci
[    1.086049] scsi1 : ahci
[    1.086388] ata1: SATA max UDMA/133 abar m1024@0xd0906800 port 0xd0906900 irq 43
[    1.086394] ata2: SATA max UDMA/133 abar m1024@0xd0906800 port 0xd0906980 irq 43
[    1.097172] Linux agpgart interface v0.103
[    1.114163] usb 1-5: config 1 has an invalid interface number: 1 but max is 0
[    1.114170] usb 1-5: config 1 has no interface number 0
[    1.228095] usb 2-2: new high speed USB device using ehci_hcd and address 2
[    1.386224] Initializing USB Mass Storage driver...
[    1.386382] scsi2 : usb-storage 2-2:1.0
[    1.386497] usbcore: registered new interface driver usb-storage
[    1.386500] USB Mass Storage support registered.
[    1.408103] ata2: SATA link down (SStatus 0 SControl 300)
[    1.484066] usb 2-3: new high speed USB device using ehci_hcd and address 3
[    1.580088] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.581240] ata1.00: ATA-8: HITACHI HTS545025B9A300, PB2ZC61H, max UDMA/100
[    1.581247] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.582624] ata1.00: configured for UDMA/100
[    1.596384] scsi 0:0:0:0: Direct-Access     ATA      HITACHI HTS54502 PB2Z PQ: 0 ANSI: 5
[    1.596636] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.596773] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    1.596917] sd 0:0:0:0: [sda] Write Protect is off
[    1.596925] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.596973] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.597262]  sda: sda1 sda2
[    1.634533] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.666825] [drm] Initialized drm 1.1.0 20060810
[    1.720603] [drm] radeon defaulting to kernel modesetting.
[    1.720608] [drm] radeon kernel modesetting enabled.
[    1.720714] radeon 0000:01:05.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    1.720721] radeon 0000:01:05.0: setting latency timer to 64
[    1.722980] [drm] initializing kernel modesetting (RS880 0x1002:0x9712).
[    1.723129] [drm] register mmio base: 0xD0500000
[    1.723132] [drm] register mmio size: 65536
[    1.723329] ATOM BIOS: Lenovo_PS2A
[    1.723356] [drm] Clocks initialized !
[    1.723370] radeon 0000:01:05.0: VRAM: 256M 0xC0000000 - 0xCFFFFFFF (256M used)
[    1.723375] radeon 0000:01:05.0: GTT: 512M 0xA0000000 - 0xBFFFFFFF
[    1.723838] [drm] Detected VRAM RAM=256M, BAR=256M
[    1.723844] [drm] RAM width 32bits DDR
[    1.723965] [TTM] Zone  kernel: Available graphics memory: 438208 kiB.
[    1.723971] [TTM] Zone highmem: Available graphics memory: 900320 kiB.
[    1.723974] [TTM] Initializing pool allocator.
[    1.724021] [drm] radeon: 256M of VRAM memory ready
[    1.724024] [drm] radeon: 512M of GTT memory ready.
[    1.724076] [drm] radeon: irq initialized.
[    1.724080] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    1.724891] [drm] Loading RS780 Microcode
[    1.768516] [drm] ring test succeeded in 0 usecs
[    1.768762] [drm] radeon: ib pool ready.
[    1.768864] [drm] ib test succeeded in 0 usecs
[    1.768868] [drm] Enabling audio support
[    1.769184] [drm] Unknown TV standard; defaulting to NTSC
[    1.770189] [drm] Radeon Display Connectors
[    1.770192] [drm] Connector 0:
[    1.770195] [drm]   VGA
[    1.770199] [drm]   DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
[    1.770202] [drm]   Encoders:
[    1.770205] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    1.770207] [drm] Connector 1:
[    1.770209] [drm]   LVDS
[    1.770213] [drm]   DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
[    1.770216] [drm]   Encoders:
[    1.770218] [drm]     LCD1: INTERNAL_KLDSCP_LVTMA
[    1.770221] [drm] Connector 2:
[    1.770223] [drm]   HDMI-A
[    1.770225] [drm]   HPD1
[    1.770228] [drm]   DDC: 0x7e20 0x7e20 0x7e24 0x7e24 0x7e28 0x7e28 0x7e2c 0x7e2c
[    1.770231] [drm]   Encoders:
[    1.770233] [drm]     DFP1: INTERNAL_UNIPHY
[    1.830773] [drm] radeon: power management initialized
[    1.884045] usb 3-4: new full speed USB device using ohci_hcd and address 2
[    1.914638] [drm] fb mappable at 0xC0141000
[    1.914648] [drm] vram apper at 0xC0000000
[    1.914651] [drm] size 4325376
[    1.914654] [drm] fb depth is 24
[    1.914656] [drm]    pitch is 5632
[    2.387496] scsi 2:0:0:0: Direct-Access     Generic- Multi-Card       1.00 PQ: 0 ANSI: 0 CCS
[    2.388403] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    2.393098] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[    2.867433] Console: switching to colour frame buffer device 170x48
[    2.882734] fb0: radeondrmfb frame buffer device
[    2.882737] drm: registered panic notifier
[    2.882762] Slow work thread pool: Starting up
[    2.882868] Slow work thread pool: Ready
[    2.882877] [drm] Initialized radeon 2.5.0 20080528 for 0000:01:05.0 on minor 0
[    3.276837] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   12.414739] udev[414]: starting version 163
[   12.493907] Adding 7807584k swap on /dev/sda2.  Priority:-1 extents:1 across:7807584k 
[   12.819962] shpchp 0000:00:01.0: HPC vendor_id 1022 device_id 9602 ss_vid 1022 ss_did 9602
[   12.819969] shpchp 0000:00:01.0: Cannot reserve MMIO region
[   12.820008] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   12.826952] ACPI: resource piix4_smbus [io  0x8040-0x8047] conflicts with ACPI region SMB0 [??? 0x00008040-0x0000804f flags 0x30]
[   12.826958] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   12.861874] usbcore: registered new interface driver usbserial
[   12.861923] USB Serial support registered for generic
[   12.862016] usbcore: registered new interface driver usbserial_generic
[   12.862019] usbserial: USB Serial Driver core
[   12.864928] Non-volatile memory driver v1.3
[   12.900427] type=1400 audit(1294948093.582:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient3" pid=724 comm="apparmor_parser"
[   12.900885] type=1400 audit(1294948093.582:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=724 comm="apparmor_parser"
[   12.901485] type=1400 audit(1294948093.582:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=724 comm="apparmor_parser"
[   13.102495] USB Serial support registered for Qualcomm USB modem
[   13.102530] qcserial 1-5:1.1: Qualcomm USB modem converter detected
[   13.103041] usb 1-5: Qualcomm USB modem converter now attached to ttyUSB0
[   13.103076] usbcore: registered new interface driver qcserial
[   13.125707] lp: driver loaded but no devices found
[   13.188322] Bluetooth: Core ver 2.15
[   13.188382] NET: Registered protocol family 31
[   13.188386] Bluetooth: HCI device and connection manager initialized
[   13.188391] Bluetooth: HCI socket layer initialized
[   13.228859] Bluetooth: Generic Bluetooth USB driver ver 0.6
[   13.230007] usbcore: registered new interface driver btusb
[   13.261384] Linux video capture interface: v2.00
[   13.277364] EXT4-fs (sda1): warning: maximal mount count reached, running e2fsck is recommended
[   13.311162] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   13.312563] uvcvideo: Found UVC 1.00 device Integrated Camera (04f2:b1b4)
[   13.313838] input: Integrated Camera as /devices/pci0000:00/0000:00:13.2/usb2/2-3/2-3:1.0/input/input5
[   13.313918] usbcore: registered new interface driver uvcvideo
[   13.313921] USB Video Class driver (v0.1.0)
[   13.585662] thinkpad_acpi: ThinkPad ACPI Extras v0.24
[   13.585667] thinkpad_acpi: http://ibm-acpi.sf.net/
[   13.585671] thinkpad_acpi: ThinkPad BIOS 87ET34WW (1.08 ), EC 87HT20WW-1.165000
[   13.585675] thinkpad_acpi: Lenovo ThinkPad Edge, model 254523U
[   13.586761] thinkpad_acpi: detected a 16-level brightness capable ThinkPad
[   13.588299] thinkpad_acpi: radio switch found; radios are enabled
[   13.588377] thinkpad_acpi: possible tablet mode switch found; ThinkPad in laptop mode
[   13.588407] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
[   13.588411] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
[   13.591641] thinkpad_acpi: asked for hotkey mask 0x04000070, but firmware forced it to 0x00000070
[   13.607309] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
[   13.646808] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   13.655590] thinkpad_acpi: rfkill switch tpacpi_wwan_sw: radio is unblocked
[   13.656557] Registered led device: tpacpi::thinklight
[   13.656933] Registered led device: tpacpi::power
[   13.657279] Registered led device: tpacpi::standby
[   13.657648] Registered led device: tpacpi::thinkvantage
[   13.699083] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one.
[   13.699227] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
[   13.711497] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input6
[   13.778153] type=1400 audit(1294948094.462:5): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=956 comm="apparmor_parser"
[   13.778869] type=1400 audit(1294948094.462:6): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=957 comm="apparmor_parser"
[   13.779682] type=1400 audit(1294948094.462:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=957 comm="apparmor_parser"
[   13.779944] type=1400 audit(1294948094.462:8): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=957 comm="apparmor_parser"
[   13.792423] type=1400 audit(1294948094.474:9): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=958 comm="apparmor_parser"
[   13.798807] type=1400 audit(1294948094.478:10): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=961 comm="apparmor_parser"
[   13.799407] type=1400 audit(1294948094.478:11): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=961 comm="apparmor_parser"
[   13.823631] r8169 0000:02:00.0: eth0: link down
[   13.823985] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   13.849099] HDA Intel 0000:01:05.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[   13.849191] HDA Intel 0000:01:05.1: setting latency timer to 64
[   13.901414] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_delete_codec_preset
[   13.901423] snd_hda_codec_atihdmi: Unknown symbol snd_hda_delete_codec_preset (err -22)
[   13.901559] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_multi_out_dig_open
[   13.901563] snd_hda_codec_atihdmi: Unknown symbol snd_hda_multi_out_dig_open (err -22)
[   13.901714] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_multi_out_dig_close
[   13.901718] snd_hda_codec_atihdmi: Unknown symbol snd_hda_multi_out_dig_close (err -22)
[   13.901857] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_sequence_write
[   13.901861] snd_hda_codec_atihdmi: Unknown symbol snd_hda_sequence_write (err -22)
[   13.902000] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_codec_write
[   13.902004] snd_hda_codec_atihdmi: Unknown symbol snd_hda_codec_write (err -22)
[   13.902144] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_add_codec_preset
[   13.902148] snd_hda_codec_atihdmi: Unknown symbol snd_hda_add_codec_preset (err -22)
[   13.902301] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_create_spdif_out_ctls
[   13.902305] snd_hda_codec_atihdmi: Unknown symbol snd_hda_create_spdif_out_ctls (err -22)
[   13.902455] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_multi_out_dig_prepare
[   13.902459] snd_hda_codec_atihdmi: Unknown symbol snd_hda_multi_out_dig_prepare (err -22)
[   14.056609] Synaptics Touchpad, model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd047b1/0xb40000/0xa0000
[   14.056618] serio: Synaptics pass-through port at isa0060/serio4/input0
[   14.111831] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input7
[   14.167798] ppdev: user-space parallel port driver
[   14.226848] Bluetooth: L2CAP ver 2.14
[   14.226853] Bluetooth: L2CAP socket layer initialized
[   14.349199] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   14.349204] Bluetooth: BNEP filters: protocol multicast
[   14.390589] Bluetooth: SCO (Voice Link) ver 0.6
[   14.390594] Bluetooth: SCO socket layer initialized
[   14.592862] Bluetooth: RFCOMM TTY layer initialized
[   14.592870] Bluetooth: RFCOMM socket layer initialized
[   14.592873] Bluetooth: RFCOMM ver 1.11
[   15.169711] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=600
[   16.801683] hda-intel: IRQ timing workaround is activated for card #1. Suggest a bigger bdl_pos_adj.
[   17.256598] psmouse serio5: ID: 10 00 64
[   18.106013] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=600
[   21.761303] IBM TrackPoint firmware: 0x0e, buttons: 3/3
[   22.095747] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio4/serio5/input/input8

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 21:09                             ` Borislav Petkov
@ 2011-01-13 21:30                               ` Thomas Gleixner
  2011-01-13 21:48                                 ` Borislav Petkov
  0 siblings, 1 reply; 33+ messages in thread
From: Thomas Gleixner @ 2011-01-13 21:30 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: Matthew Garrett, Manoj Iyer, linux-kernel, Rafael J. Wysocki,
	Herrmann3, Andreas

On Thu, 13 Jan 2011, Borislav Petkov wrote:
> On Thu, Jan 13, 2011 at 02:41:51PM -0500, Thomas Gleixner wrote:
> > On Thu, 13 Jan 2011, Borislav Petkov wrote:
> > 
> > > On Thu, Jan 13, 2011 at 08:13:42PM +0100, Thomas Gleixner wrote:
> > > > > Well, Andreas did boot with 'hpet=verbose' on an affected machine here
> > > > > and did a suspend/resume and the hpet config registers looked ok before
> > > > > suspend and after resume. It might be that the HPET is temporarily
> > > > > "insane" while resume lasts but we don't have any hard facts confirming
> > > > 
> > > > And you have no explanation at all why applying the irq pin routing
> > > > quirk makes HPETs temporal insanity go away magically :)
> > > 
> > > But after the HPET counter wraps around, the machine is alive again.
> > > Which means that the IRQ0 pin2 override is only temporarily needed after
> > > resume... Strange.
> > 
> > Thinking more about it:
> > 
> > Case 1:	IRQ0 pin2 override applied
> > 
> >      Resume hangs until HPET wraps around and issues another interrupt
> > 
> > Case 2: IRQ0 pin2 override ignored via quirk
> > 
> >      Resume just works
> > 
> > So the question is what is restored _AFTER_ the HPET is reprogrammed
> > in the resume path ?
> > 
> > The HPET reprogramming happens via timekeeping_resume() which is in
> > the sysdev part of resume. ioapic, apic, iommus etc. are also resumed
> > via the sysdev_class. So what makes sure that the ordering of these is
> > correct?
> > 
> > AFAICT nothing :)
> 
> I see. You're hinting at some wrong ordering between resuming apic and
> hpet maybe... But why does this work on SB700 without timer override? So
> it looks like SB800 does something differently which cannot stomach what
> Linux does. Could it be that after resume, HPET uses "by default" pin0
> for the IRQ when it expires and that's why it works?
> 
> > We need information about the resume order of sysdev_class and the
> > difference of the pin routings in the quirk non/quirk case.
> 
> I'll try to get that tomorrow on the SB800 system we have.
> 
> >From Manoj's dmesg logs I can see the following (1st one is with the
> timer override):
> 
> [    0.000000] ACPI: PM-Timer IO Port: 0x8008
> [    0.000000] ACPI: Local APIC address 0xfee00000
> [    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
> [    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
> [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
> [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
> [    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
> [    0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
> [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 low level)
> [    0.000000] ACPI: BIOS IRQ0 pin2 override ignored.
> [    0.000000] ACPI: IRQ9 used by override.

The more interesting info is there in Manoj's logs:

[    0.036455] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
[    0.040000] ..MP-BIOS bug: 8254 timer not connected to IO-APIC
[    0.040000] ...trying to set up timer (IRQ0) through the 8259A ...
[    0.040000] ..... (found apic 0 pin 0) ...
[    0.080021] ....... works.

versus

[    0.036460] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1

So the "working" state is using "apic 0 pin 0" while the non working
state is using "vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1".

Something changes across suspend/resume which makes the BIOS
advertised routing work with PIT but not with HPET. Further why does
the apic 0/0 solution found by the kernel (when ignoring BIOS) works
always (except that we don't know whether the "nohpet" case works as
well, but I bet it does).

So we are back to the question I raised above: What changes and even
more interesting what changes after the HPET expires - which we know
for sure that it must happen as otherwise we wont get a HPET interrupt
after the 32bit wraparound.

We need answers to these questions before applying any
patch/workaround/quirk or whatever.

Thanks,

	tglx



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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 21:12                               ` Manoj Iyer
@ 2011-01-13 21:40                                 ` Thomas Gleixner
  2011-01-13 21:48                                   ` Manoj Iyer
  0 siblings, 1 reply; 33+ messages in thread
From: Thomas Gleixner @ 2011-01-13 21:40 UTC (permalink / raw)
  To: Manoj Iyer
  Cc: Borislav Petkov, Matthew Garrett, linux-kernel,
	Rafael J. Wysocki, Herrmann3, Andreas

On Thu, 13 Jan 2011, Manoj Iyer wrote:

> Also, attaching dmesg with my patch applied. Please note the warning
> message is printed from dmi_ignore_irq0_timer_override() in
> acpi/boot.c, printed before setting acpi_skip_timer_override = 1;

That's unsurprisingly not adding any useful information. We already
know the difference between a stock and a acpi_skip_timer_override
kernel and your patch is not doing anything different.

It would be interesting to see a dmesg over boot/suspend/resume with
the patch below applied.

Thanks,

	tglx

---
diff --git a/drivers/base/sys.c b/drivers/base/sys.c
index 1667aaf..a54a2c8 100644
--- a/drivers/base/sys.c
+++ b/drivers/base/sys.c
@@ -12,6 +12,8 @@
  * add themselves as children of the system bus.
  */
 
+#define DEBUG
+
 #include <linux/sysdev.h>
 #include <linux/err.h>
 #include <linux/module.h>



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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 21:40                                 ` Thomas Gleixner
@ 2011-01-13 21:48                                   ` Manoj Iyer
  2011-01-13 22:40                                     ` Thomas Gleixner
  0 siblings, 1 reply; 33+ messages in thread
From: Manoj Iyer @ 2011-01-13 21:48 UTC (permalink / raw)
  To: Thomas Gleixner
  Cc: Borislav Petkov, Matthew Garrett, linux-kernel,
	Rafael J. Wysocki, Herrmann3, Andreas

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

Thomas,

Attached are 2 dmesg outputs

1. dmesg output after boot with the patch applied.
2. dmesg output after suspend/resume with patch applied.

Many Thanks
Manoj

On Thu, Jan 13, 2011 at 3:40 PM, Thomas Gleixner <tglx@linutronix.de> wrote:
> On Thu, 13 Jan 2011, Manoj Iyer wrote:
>
>> Also, attaching dmesg with my patch applied. Please note the warning
>> message is printed from dmi_ignore_irq0_timer_override() in
>> acpi/boot.c, printed before setting acpi_skip_timer_override = 1;
>
> That's unsurprisingly not adding any useful information. We already
> know the difference between a stock and a acpi_skip_timer_override
> kernel and your patch is not doing anything different.
>
> It would be interesting to see a dmesg over boot/suspend/resume with
> the patch below applied.
>
> Thanks,
>
>        tglx
>
> ---
> diff --git a/drivers/base/sys.c b/drivers/base/sys.c
> index 1667aaf..a54a2c8 100644
> --- a/drivers/base/sys.c
> +++ b/drivers/base/sys.c
> @@ -12,6 +12,8 @@
>  * add themselves as children of the system bus.
>  */
>
> +#define DEBUG
> +
>  #include <linux/sysdev.h>
>  #include <linux/err.h>
>  #include <linux/module.h>
>
>
>



-- 
--manjo

[-- Attachment #2: dmesg.dmipatch-boot --]
[-- Type: application/octet-stream, Size: 55720 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.35-25-generic (root@tangerine) (gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5) ) #43 SMP Thu Jan 13 04:57:49 UTC 2011 (Ubuntu 2.6.35-25.43-generic 2.6.35.10)
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009dc00 (usable)
[    0.000000]  BIOS-e820: 000000000009dc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000d0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000006fe8e000 (usable)
[    0.000000]  BIOS-e820: 000000006fe8e000 - 000000006fea0000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000006fea0000 - 000000006feb1000 (ACPI data)
[    0.000000]  BIOS-e820: 000000006feb1000 - 000000006feb3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000006feb3000 - 000000006feff000 (reserved)
[    0.000000]  BIOS-e820: 000000006ff00000 - 0000000080000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
[    0.000000] DMI present.
[    0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x6fe8e max_arch_pfn = 0x100000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-DFFFF write-back
[    0.000000]   E0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFFC0000000 write-back
[    0.000000]   1 base 000040000000 mask FFFFE0000000 write-back
[    0.000000]   2 base 000060000000 mask FFFFF0000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820 update range: 0000000000002000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (reserved)
[    0.000000]  modified: 0000000000001000 - 0000000000002000 (usable)
[    0.000000]  modified: 0000000000002000 - 0000000000010000 (reserved)
[    0.000000]  modified: 0000000000010000 - 000000000009dc00 (usable)
[    0.000000]  modified: 000000000009dc00 - 00000000000a0000 (reserved)
[    0.000000]  modified: 00000000000d0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 000000006fe8e000 (usable)
[    0.000000]  modified: 000000006fe8e000 - 000000006fea0000 (ACPI NVS)
[    0.000000]  modified: 000000006fea0000 - 000000006feb1000 (ACPI data)
[    0.000000]  modified: 000000006feb1000 - 000000006feb3000 (ACPI NVS)
[    0.000000]  modified: 000000006feb3000 - 000000006feff000 (reserved)
[    0.000000]  modified: 000000006ff00000 - 0000000080000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 00000000fec10000 (reserved)
[    0.000000]  modified: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  modified: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] initial memory mapped : 0 - 00c00000
[    0.000000] found SMP MP-table at [c00f7970] f7970
[    0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
[    0.000000]  0000000000 - 0000400000 page 4k
[    0.000000]  0000400000 - 0037400000 page 2M
[    0.000000]  0037400000 - 00377fe000 page 4k
[    0.000000] kernel direct mapping tables up to 377fe000 @ 15000-1a000
[    0.000000] RAMDISK: 370bf000 - 37ff0000
[    0.000000] Allocated new RAMDISK: 009a9000 - 018d90dd
[    0.000000] Move RAMDISK from 00000000370bf000 - 0000000037fef0dc to 009a9000 - 018d90dc
[    0.000000] ------------[ cut here ]------------
[    0.000000] WARNING: at /home/manjo/ubuntu-maverick-674710/arch/x86/kernel/acpi/boot.c:1345 dmi_ignore_irq0_timer_override+0x2e/0x52()
[    0.000000] Hardware name: 254523U
[    0.000000] ati_ixp4x0 quirk not complete.
[    0.000000] Modules linked in:
[    0.000000] Pid: 0, comm: swapper Not tainted 2.6.35-25-generic #43
[    0.000000] Call Trace:
[    0.000000]  [<c014ad42>] warn_slowpath_common+0x72/0xa0
[    0.000000]  [<c0826724>] ? dmi_ignore_irq0_timer_override+0x2e/0x52
[    0.000000]  [<c0826724>] ? dmi_ignore_irq0_timer_override+0x2e/0x52
[    0.000000]  [<c014ae13>] warn_slowpath_fmt+0x33/0x40
[    0.000000]  [<c0826724>] dmi_ignore_irq0_timer_override+0x2e/0x52
[    0.000000]  [<c04dd7d0>] dmi_check_system+0x30/0x50
[    0.000000]  [<c0826df4>] acpi_boot_table_init+0x10/0x7d
[    0.000000]  [<c0821ea7>] ? io_delay_init+0x16/0x18
[    0.000000]  [<c081f556>] setup_arch+0x562/0x645
[    0.000000]  [<c012cf19>] ? default_spin_lock_flags+0x9/0x10
[    0.000000]  [<c081b57b>] start_kernel+0xcf/0x374
[    0.000000]  [<c081b0d7>] i386_start_kernel+0xd7/0xdf
[    0.000000] ---[ end trace a7919e7f17c0a725 ]---
[    0.000000] ThinkPad Edge detected: Ignoring BIOS IRQ0 pin2 override
[    0.000000] ACPI: RSDP 000f78c0 00024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 6fea234c 00084 (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: FACP 6feb0083 000F4 (v03 LENOVO TP-87    00001080 AMD  000F4240)
[    0.000000] ACPI: DSDT 6fea23d0 0DCB3 (v01 LENOVO TP-87    00001080 MSFT 03000001)
[    0.000000] ACPI: FACS 6feb2fc0 00040
[    0.000000] ACPI: TCPA 6feb01eb 00032 (v02 LENOVO TP-87    00001080 PTEC 00000000)
[    0.000000] ACPI: EINJ 6feb021d 001B0 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: HEST 6feb03cd 002E4 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: BERT 6feb06b1 00030 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: SSDT 6feb06e1 000E1 (v01 LENOVO TP-87    00001080 INTL 20050624)
[    0.000000] ACPI: ERST 6feb07c2 00270 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: SSDT 6feb0a32 00386 (v01 LENOVO TP-87    00001080 AMD  00000001)
[    0.000000] ACPI: APIC 6feb0db8 0005E (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: MCFG 6feb0e16 0003C (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: HPET 6feb0e52 00038 (v01 LENOVO TP-87    00001080  LTP 00000001)
[    0.000000] ACPI: SLIC 6feb0e8a 00176 (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 902MB HIGHMEM available.
[    0.000000] 887MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 377fe000
[    0.000000]   low ram: 0 - 377fe000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000001 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000377fe
[    0.000000]   HighMem  0x000377fe -> 0x0006fe8e
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000001 -> 0x00000002
[    0.000000]     0: 0x00000010 -> 0x0000009d
[    0.000000]     0: 0x00000100 -> 0x0006fe8e
[    0.000000] On node 0 totalpages: 458268
[    0.000000] free_area_init_node: node 0, pgdat c0801fc0, node_mem_map c18db020
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3950 pages, LIFO batch:0
[    0.000000]   Normal zone: 1744 pages used for memmap
[    0.000000]   Normal zone: 221486 pages, LIFO batch:31
[    0.000000]   HighMem zone: 1806 pages used for memmap
[    0.000000]   HighMem zone: 229250 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x8008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 low level)
[    0.000000] ACPI: BIOS IRQ0 pin2 override ignored.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x43538210 base: 0xfed00000
[    0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] early_res array is doubled to 64 at [16000 - 167ff]
[    0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000010000
[    0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
[    0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d0000
[    0.000000] PM: Registered nosave memory: 00000000000d0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:7ec00000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] PERCPU: Embedded 14 pages/cpu @c2800000 s36416 r0 d20928 u2097152
[    0.000000] pcpu-alloc: s36416 r0 d20928 u2097152 alloc=1*4194304
[    0.000000] pcpu-alloc: [0] 0 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 454686
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-25-generic root=UUID=d5c705ef-5eb6-40af-9c36-2dccfbec5452 ro quiet splash
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Enabling fast FPU save and restore... done.
[    0.000000] Enabling unmasked SIMD FPU exception support... done.
[    0.000000] Initializing CPU#0
[    0.000000] allocated 9167620 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Subtract (52 early reservations)
[    0.000000]   #1 [0000001000 - 0000002000]   EX TRAMPOLINE
[    0.000000]   #2 [0000100000 - 00009a4adc]   TEXT DATA BSS
[    0.000000]   #3 [00009a5000 - 00009a8130]             BRK
[    0.000000]   #4 [00000f7980 - 0000100000]   BIOS reserved
[    0.000000]   #5 [00000f7970 - 00000f7980]    MP-table mpf
[    0.000000]   #6 [000009dc00 - 000009e071]   BIOS reserved
[    0.000000]   #7 [000009e1bd - 00000f7970]   BIOS reserved
[    0.000000]   #8 [000009e071 - 000009e1bd]    MP-table mpc
[    0.000000]   #9 [0000010000 - 0000011000]      TRAMPOLINE
[    0.000000]   #10 [0000011000 - 0000015000]     ACPI WAKEUP
[    0.000000]   #11 [0000015000 - 0000016000]         PGTABLE
[    0.000000]   #12 [00009a9000 - 00018da000]     NEW RAMDISK
[    0.000000]   #13 [00018da000 - 00018db000]         BOOTMEM
[    0.000000]   #14 [00018db000 - 00026db000]         BOOTMEM
[    0.000000]   #15 [00026db000 - 00026db004]         BOOTMEM
[    0.000000]   #16 [00026db040 - 00026db100]         BOOTMEM
[    0.000000]   #17 [00026db100 - 00026db154]         BOOTMEM
[    0.000000]   #18 [00026db180 - 00026de180]         BOOTMEM
[    0.000000]   #19 [00026de180 - 00026de1d8]         BOOTMEM
[    0.000000]   #20 [00026de200 - 00026e1200]         BOOTMEM
[    0.000000]   #21 [00026e1200 - 00026e1225]         BOOTMEM
[    0.000000]   #22 [00026e1240 - 00026e1267]         BOOTMEM
[    0.000000]   #23 [00026e1280 - 00026e1424]         BOOTMEM
[    0.000000]   #24 [00026e1440 - 00026e1480]         BOOTMEM
[    0.000000]   #25 [00026e1480 - 00026e14c0]         BOOTMEM
[    0.000000]   #26 [00026e14c0 - 00026e1500]         BOOTMEM
[    0.000000]   #27 [00026e1500 - 00026e1540]         BOOTMEM
[    0.000000]   #28 [00026e1540 - 00026e1580]         BOOTMEM
[    0.000000]   #29 [00026e1580 - 00026e15c0]         BOOTMEM
[    0.000000]   #30 [00026e15c0 - 00026e1600]         BOOTMEM
[    0.000000]   #31 [00026e1600 - 00026e1640]         BOOTMEM
[    0.000000]   #32 [00026e1640 - 00026e1680]         BOOTMEM
[    0.000000]   #33 [00026e1680 - 00026e16c0]         BOOTMEM
[    0.000000]   #34 [00026e16c0 - 00026e1700]         BOOTMEM
[    0.000000]   #35 [00026e1700 - 00026e1740]         BOOTMEM
[    0.000000]   #36 [00026e1740 - 00026e1750]         BOOTMEM
[    0.000000]   #37 [00026e1780 - 00026e1790]         BOOTMEM
[    0.000000]   #38 [00026e17c0 - 00026e182a]         BOOTMEM
[    0.000000]   #39 [00026e1840 - 00026e18aa]         BOOTMEM
[    0.000000]   #40 [0002800000 - 000280e000]         BOOTMEM
[    0.000000]   #41 [0002a00000 - 0002a0e000]         BOOTMEM
[    0.000000]   #42 [00026e38c0 - 00026e38c4]         BOOTMEM
[    0.000000]   #43 [00026e3900 - 00026e3904]         BOOTMEM
[    0.000000]   #44 [00026e3940 - 00026e3948]         BOOTMEM
[    0.000000]   #45 [00026e3980 - 00026e3988]         BOOTMEM
[    0.000000]   #46 [00026e39c0 - 00026e3a68]         BOOTMEM
[    0.000000]   #47 [00026e3a80 - 00026e3ae8]         BOOTMEM
[    0.000000]   #48 [00026e3b00 - 00026e7b00]         BOOTMEM
[    0.000000]   #49 [00026e7b00 - 0002767b00]         BOOTMEM
[    0.000000]   #50 [0002767b00 - 00027a7b00]         BOOTMEM
[    0.000000]   #51 [0002a0e000 - 00032cc304]         BOOTMEM
[    0.000000] Initializing HighMem for node 0 (000377fe:0006fe8e)
[    0.000000] Memory: 1784396k/1833528k available (4933k kernel code, 48676k reserved, 2339k data, 688k init, 924224k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff16000 - 0xfffff000   ( 932 kB)
[    0.000000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
[    0.000000]     vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
[    0.000000]       .init : 0xc081b000 - 0xc08c7000   ( 688 kB)
[    0.000000]       .data : 0xc05d17ce - 0xc081a7a8   (2339 kB)
[    0.000000]       .text : 0xc0100000 - 0xc05d17ce   (4933 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU-based detection of stalled CPUs is disabled.
[    0.000000] 	Verbose stalled-CPUs detection is disabled.
[    0.000000] NR_IRQS:2304 nr_irqs:512
[    0.000000] Extended CMOS year: 2000
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1296.715 MHz processor.
[    0.004006] Calibrating delay loop (skipped), value calculated using timer frequency.. 2593.43 BogoMIPS (lpj=5186860)
[    0.004016] pid_max: default: 32768 minimum: 301
[    0.004047] Security Framework initialized
[    0.004079] AppArmor: AppArmor initialized
[    0.004082] Yama: becoming mindful.
[    0.004182] Mount-cache hash table entries: 512
[    0.008014] Initializing cgroup subsys ns
[    0.008021] Initializing cgroup subsys cpuacct
[    0.008029] Initializing cgroup subsys memory
[    0.008043] Initializing cgroup subsys devices
[    0.008048] Initializing cgroup subsys freezer
[    0.008053] Initializing cgroup subsys net_cls
[    0.008090] CPU: Physical Processor ID: 0
[    0.008093] CPU: Processor Core ID: 0
[    0.008098] mce: CPU supports 6 MCE banks
[    0.008113] using C1E aware idle routine
[    0.008122] Performance Events: AMD PMU driver.
[    0.008134] ... version:                0
[    0.008138] ... bit width:              48
[    0.008142] ... generic registers:      4
[    0.008146] ... value mask:             0000ffffffffffff
[    0.008150] ... max period:             00007fffffffffff
[    0.008154] ... fixed-purpose events:   0
[    0.008158] ... event mask:             000000000000000f
[    0.012482] ACPI: Core revision 20100428
[    0.040033] ftrace: converting mcount calls to 0f 1f 44 00 00
[    0.040046] ftrace: allocating 21756 entries in 43 pages
[    0.044106] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.044455] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
[    0.052000] ..MP-BIOS bug: 8254 timer not connected to IO-APIC
[    0.052000] ...trying to set up timer (IRQ0) through the 8259A ...
[    0.052000] ..... (found apic 0 pin 0) ...
[    0.095460] ....... works.
[    0.095463] CPU0: AMD Athlon(tm) II Neo K325 Dual-Core Processor stepping 03
[    0.096000] Booting Node   0, Processors  #1 Ok.
[    0.008000] Initializing CPU#1
[    0.184013] Brought up 2 CPUs
[    0.184017] Total of 2 processors activated (5186.98 BogoMIPS).
[    0.184030] System has AMD C1E enabled
[    0.184048] Switch to broadcast mode on CPU1
[    0.184392] Switch to broadcast mode on CPU0
[    0.184392] devtmpfs: initialized
[    0.185542] regulator: core version 0.5
[    0.185610] Time: 21:43:55  Date: 01/13/11
[    0.185670] NET: Registered protocol family 16
[    0.185730] Trying to unpack rootfs image as initramfs...
[    0.185847] EISA bus registered
[    0.185855] node 0 link 0: io port [1000, ffff]
[    0.185860] TOM: 0000000080000000 aka 2048M
[    0.185863] Fam 10h mmconf [e0000000, efffffff]
[    0.185867] node 0 link 0: mmio [80000000, bfffffff]
[    0.185872] node 0 link 0: mmio [c0000000, cfffffff]
[    0.185877] node 0 link 0: mmio [d0000000, d03fffff]
[    0.185881] node 0 link 0: mmio [d0400000, d05fffff]
[    0.185885] node 0 link 0: mmio [d0600000, dfffffff]
[    0.185889] node 0 link 0: mmio [e0000000, efffffff] ==> none
[    0.185894] node 0 link 0: mmio [f0000000, febfffff]
[    0.185898] node 0 link 0: mmio [fec00000, ffffffff]
[    0.185903] bus: [00, 1f] on node 0 link 0
[    0.185907] bus: 00 index 0 [io  0x0000-0xffff]
[    0.185911] bus: 00 index 1 [mem 0x80000000-0xdfffffff]
[    0.185915] bus: 00 index 2 [mem 0xf0000000-0xffffffff]
[    0.185927] ACPI: bus type pci registered
[    0.186058] PCI: MMCONFIG for domain 0000 [bus 00-08] at [mem 0xe0000000-0xe08fffff] (base 0xe0000000)
[    0.186062] PCI: not using MMCONFIG
[    0.186410] PCI: PCI BIOS revision 2.10 entry at 0xfdc8a, last bus=9
[    0.186413] PCI: Using configuration type 1 for base access
[    0.186415] PCI: Using configuration type 1 for extended access
[    0.186441] mtrr: your CPUs had inconsistent fixed MTRR settings
[    0.186443] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.186446] mtrr: probably your BIOS does not setup all CPUs.
[    0.186448] mtrr: corrected configuration.
[    0.192319] bio: create slab <bio-0> at 0
[    0.195363] ACPI: EC: Look up EC in DSDT
[    0.195646] \_SB_:_OSC evaluation returned wrong type
[    0.195646] _OSC request data:1 7 
[    0.204000] ACPI: BIOS _OSI(Linux) query ignored
[    0.204699] ACPI: OEMN 6feb1ab3 00131 (v01 AMD    NAHP     00000001 MSFT 03000001)
[    0.205540] ACPI: Enabled 1 new runtime GPEs, added 0 new wakeup GPEs
[    0.205547] ACPI: Dynamic OEM Table Load:
[    0.205552] ACPI: OEMN (null) 00131 (v01 AMD    NAHP     00000001 MSFT 03000001)
[    0.212265] ACPI: Interpreter enabled
[    0.212274] ACPI: (supports S0 S3 S4 S5)
[    0.212309] ACPI: Using IOAPIC for interrupt routing
[    0.212838] PCI: MMCONFIG for domain 0000 [bus 00-08] at [mem 0xe0000000-0xe08fffff] (base 0xe0000000)
[    0.213737] [Firmware Bug]: PCI: MMCONFIG at [mem 0xe0000000-0xe08fffff] not reserved in ACPI motherboard resources
[    0.213741] PCI: not using MMCONFIG
[    0.214369] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.214515] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.218660] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.224525] ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
[    0.224997] ACPI: No dock devices found.
[    0.225004] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.226709] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.229030] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.229037] pci_root PNP0A08:00: host bridge window [mem 0x80000000-0xdfffffff]
[    0.229042] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xffffffff]
[    0.229047] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.229051] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    0.229220] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
[    0.229225] pci 0000:00:04.0: PME# disabled
[    0.229281] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
[    0.229285] pci 0000:00:05.0: PME# disabled
[    0.229354] pci 0000:00:11.0: reg 10: [io  0x8440-0x8447]
[    0.229363] pci 0000:00:11.0: reg 14: [io  0x8430-0x8433]
[    0.229372] pci 0000:00:11.0: reg 18: [io  0x8420-0x8427]
[    0.229381] pci 0000:00:11.0: reg 1c: [io  0x8410-0x8413]
[    0.229389] pci 0000:00:11.0: reg 20: [io  0x8400-0x840f]
[    0.229398] pci 0000:00:11.0: reg 24: [mem 0xd0906800-0xd0906bff]
[    0.229471] pci 0000:00:12.0: reg 10: [mem 0xd0904000-0xd0904fff]
[    0.229548] pci 0000:00:12.2: reg 10: [mem 0xd0906000-0xd09060ff]
[    0.229608] pci 0000:00:12.2: supports D1 D2
[    0.229611] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.229617] pci 0000:00:12.2: PME# disabled
[    0.229653] pci 0000:00:13.0: reg 10: [mem 0xd0905000-0xd0905fff]
[    0.229730] pci 0000:00:13.2: reg 10: [mem 0xd0906400-0xd09064ff]
[    0.229789] pci 0000:00:13.2: supports D1 D2
[    0.229792] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.229798] pci 0000:00:13.2: PME# disabled
[    0.229906] pci 0000:00:14.2: reg 10: [mem 0xd0900000-0xd0903fff 64bit]
[    0.229955] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.229961] pci 0000:00:14.2: PME# disabled
[    0.230240] pci 0000:01:05.0: reg 10: [mem 0xc0000000-0xcfffffff pref]
[    0.230246] pci 0000:01:05.0: reg 14: [io  0x9000-0x90ff]
[    0.230252] pci 0000:01:05.0: reg 18: [mem 0xd0500000-0xd050ffff]
[    0.230264] pci 0000:01:05.0: reg 24: [mem 0xd0400000-0xd04fffff]
[    0.230283] pci 0000:01:05.0: supports D1 D2
[    0.230308] pci 0000:01:05.1: reg 10: [mem 0xd0510000-0xd0513fff]
[    0.230339] pci 0000:01:05.1: supports D1 D2
[    0.230391] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.230398] pci 0000:00:01.0:   bridge window [io  0x9000-0x9fff]
[    0.230403] pci 0000:00:01.0:   bridge window [mem 0xd0400000-0xd05fffff]
[    0.230410] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.230475] pci 0000:02:00.0: reg 10: [io  0xbc00-0xbcff]
[    0.230495] pci 0000:02:00.0: reg 18: [mem 0xd0200000-0xd0200fff 64bit pref]
[    0.230510] pci 0000:02:00.0: reg 20: [mem 0xd0000000-0xd0003fff 64bit pref]
[    0.230520] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[    0.230558] pci 0000:02:00.0: supports D1 D2
[    0.230562] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.230567] pci 0000:02:00.0: PME# disabled
[    0.236044] pci 0000:00:04.0: PCI bridge to [bus 02-07]
[    0.236054] pci 0000:00:04.0:   bridge window [io  0xa000-0xbfff]
[    0.236061] pci 0000:00:04.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.236068] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.236150] pci 0000:08:00.0: reg 10: [io  0xc000-0xc0ff]
[    0.236174] pci 0000:08:00.0: reg 18: [mem 0xd0600000-0xd0603fff 64bit]
[    0.236236] pci 0000:08:00.0: supports D1 D2
[    0.236240] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.236246] pci 0000:08:00.0: PME# disabled
[    0.244050] pci 0000:00:05.0: PCI bridge to [bus 08-08]
[    0.244062] pci 0000:00:05.0:   bridge window [io  0xc000-0xcfff]
[    0.244067] pci 0000:00:05.0:   bridge window [mem 0xd0600000-0xd06fffff]
[    0.244074] pci 0000:00:05.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.244157] pci 0000:00:14.4: PCI bridge to [bus 09-09] (subtractive decode)
[    0.244164] pci 0000:00:14.4:   bridge window [io  0xf000-0x0000] (disabled)
[    0.244170] pci 0000:00:14.4:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.244177] pci 0000:00:14.4:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.244182] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.244186] pci 0000:00:14.4:   bridge window [mem 0x80000000-0xdfffffff] (subtractive decode)
[    0.244190] pci 0000:00:14.4:   bridge window [mem 0xf0000000-0xffffffff] (subtractive decode)
[    0.244195] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.244199] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.244218] pci_bus 0000:00: on NUMA node 0
[    0.244231] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.244616] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB4_._PRT]
[    0.244740] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB5_._PRT]
[    0.244929] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
[    0.245078] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
[    0.251869] ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11) *0
[    0.252179] ACPI: PCI Interrupt Link [LNKB] (IRQs 10 11) *0
[    0.252509] ACPI: PCI Interrupt Link [LNKC] (IRQs 10 11) *0
[    0.252837] ACPI: PCI Interrupt Link [LNKD] (IRQs 10 11) *0
[    0.253104] ACPI: PCI Interrupt Link [LNKE] (IRQs 10 11) *0
[    0.253321] ACPI: PCI Interrupt Link [LNKF] (IRQs 10 11) *0
[    0.253539] ACPI: PCI Interrupt Link [LNKG] (IRQs 10 11) *0
[    0.253756] ACPI: PCI Interrupt Link [LNKH] (IRQs 10 11) *0
[    0.253929] HEST: HEST table parsing is initialized.
[    0.254044] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    0.254050] vgaarb: loaded
[    0.254258] SCSI subsystem initialized
[    0.256000] libata version 3.00 loaded.
[    0.256000] usbcore: registered new interface driver usbfs
[    0.256000] usbcore: registered new interface driver hub
[    0.256000] usbcore: registered new device driver usb
[    0.256000] ACPI: WMI: Mapper loaded
[    0.256000] PCI: Using ACPI for IRQ routing
[    0.256000] PCI: pci_cache_line_size set to 64 bytes
[    0.256000] reserve RAM buffer: 0000000000002000 - 000000000000ffff 
[    0.256000] reserve RAM buffer: 000000000009dc00 - 000000000009ffff 
[    0.256000] reserve RAM buffer: 000000006fe8e000 - 000000006fffffff 
[    0.256000] NetLabel: Initializing
[    0.256000] NetLabel:  domain hash size = 128
[    0.256000] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.256000] NetLabel:  unlabeled traffic allowed by default
[    0.256000] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.256000] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.257041] Switching to clocksource tsc
[    0.272278] AppArmor: AppArmor Filesystem Enabled
[    0.272299] pnp: PnP ACPI init
[    0.272325] ACPI: bus type pnp registered
[    0.279883] pnp: PnP ACPI: found 10 devices
[    0.279889] ACPI: ACPI bus type pnp unregistered
[    0.279894] PnPBIOS: Disabled by ACPI PNP
[    0.279919] system 00:01: [io  0x0f50-0x0f51] has been reserved
[    0.279925] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.279930] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.279944] system 00:08: [io  0x0220-0x022f] has been reserved
[    0.279948] system 00:08: [io  0x040b] has been reserved
[    0.279953] system 00:08: [io  0x04d0-0x04d1] has been reserved
[    0.279957] system 00:08: [io  0x04d6] has been reserved
[    0.279961] system 00:08: [io  0x0530-0x0537] has been reserved
[    0.279965] system 00:08: [io  0x0c00-0x0c01] has been reserved
[    0.279969] system 00:08: [io  0x0c14] has been reserved
[    0.279973] system 00:08: [io  0x0c50-0x0c52] has been reserved
[    0.279976] system 00:08: [io  0x0c6c] has been reserved
[    0.279980] system 00:08: [io  0x0c6f] has been reserved
[    0.279984] system 00:08: [io  0x0cd0-0x0cd1] has been reserved
[    0.279988] system 00:08: [io  0x0cd2-0x0cd3] has been reserved
[    0.279992] system 00:08: [io  0x0cd4-0x0cd5] has been reserved
[    0.279996] system 00:08: [io  0x0cd6-0x0cd7] has been reserved
[    0.280000] system 00:08: [io  0x0cd8-0x0cdf] has been reserved
[    0.280005] system 00:08: [io  0x8000-0x805f] has been reserved
[    0.280009] system 00:08: [io  0x8100-0x81ff window] has been reserved
[    0.280014] system 00:08: [io  0x8200-0x82ff window] has been reserved
[    0.280025] system 00:08: [io  0x0f40-0x0f47] has been reserved
[    0.280029] system 00:08: [io  0x087f] has been reserved
[    0.280038] system 00:09: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.280043] system 00:09: [mem 0xffe00000-0xffffffff] could not be reserved
[    0.280047] system 00:09: [mem 0xfec10000-0xfec1001f] has been reserved
[    0.280052] system 00:09: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.280056] system 00:09: [mem 0xfed61000-0xfed613ff] has been reserved
[    0.280060] system 00:09: [mem 0xfed80000-0xfed80fff] has been reserved
[    0.280065] system 00:09: [mem 0xfffffd00-0x0001fcff] could not be reserved
[    0.316656] pci 0000:00:04.0: BAR 14: assigned [mem 0x80000000-0x800fffff]
[    0.316662] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.316667] pci 0000:00:01.0:   bridge window [io  0x9000-0x9fff]
[    0.316673] pci 0000:00:01.0:   bridge window [mem 0xd0400000-0xd05fffff]
[    0.316678] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.316686] pci 0000:02:00.0: BAR 6: assigned [mem 0xd0020000-0xd003ffff pref]
[    0.316690] pci 0000:00:04.0: PCI bridge to [bus 02-07]
[    0.316695] pci 0000:00:04.0:   bridge window [io  0xa000-0xbfff]
[    0.316700] pci 0000:00:04.0:   bridge window [mem 0x80000000-0x800fffff]
[    0.316706] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.316712] pci 0000:00:05.0: PCI bridge to [bus 08-08]
[    0.316716] pci 0000:00:05.0:   bridge window [io  0xc000-0xcfff]
[    0.316722] pci 0000:00:05.0:   bridge window [mem 0xd0600000-0xd06fffff]
[    0.316726] pci 0000:00:05.0:   bridge window [mem pref disabled]
[    0.316733] pci 0000:00:14.4: PCI bridge to [bus 09-09]
[    0.316735] pci 0000:00:14.4:   bridge window [io  disabled]
[    0.316746] pci 0000:00:14.4:   bridge window [mem disabled]
[    0.316751] pci 0000:00:14.4:   bridge window [mem pref disabled]
[    0.316773]   alloc irq_desc for 16 on node -1
[    0.316776]   alloc kstat_irqs on node -1
[    0.316786] pci 0000:00:04.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.316790] pci 0000:00:04.0: setting latency timer to 64
[    0.316801]   alloc irq_desc for 17 on node -1
[    0.316804]   alloc kstat_irqs on node -1
[    0.316810] pci 0000:00:05.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    0.316814] pci 0000:00:05.0: setting latency timer to 64
[    0.316826] pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff]
[    0.316830] pci_bus 0000:00: resource 5 [mem 0x80000000-0xdfffffff]
[    0.316834] pci_bus 0000:00: resource 6 [mem 0xf0000000-0xffffffff]
[    0.316838] pci_bus 0000:00: resource 7 [io  0x0000-0x0cf7]
[    0.316842] pci_bus 0000:00: resource 8 [io  0x0d00-0xffff]
[    0.316846] pci_bus 0000:01: resource 0 [io  0x9000-0x9fff]
[    0.316850] pci_bus 0000:01: resource 1 [mem 0xd0400000-0xd05fffff]
[    0.316854] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.316859] pci_bus 0000:02: resource 0 [io  0xa000-0xbfff]
[    0.316863] pci_bus 0000:02: resource 1 [mem 0x80000000-0x800fffff]
[    0.316867] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.316871] pci_bus 0000:08: resource 0 [io  0xc000-0xcfff]
[    0.316875] pci_bus 0000:08: resource 1 [mem 0xd0600000-0xd06fffff]
[    0.316879] pci_bus 0000:09: resource 4 [mem 0x000a0000-0x000bffff]
[    0.316883] pci_bus 0000:09: resource 5 [mem 0x80000000-0xdfffffff]
[    0.316887] pci_bus 0000:09: resource 6 [mem 0xf0000000-0xffffffff]
[    0.316891] pci_bus 0000:09: resource 7 [io  0x0000-0x0cf7]
[    0.316895] pci_bus 0000:09: resource 8 [io  0x0d00-0xffff]
[    0.316945] NET: Registered protocol family 2
[    0.317032] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.317341] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.318183] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.318613] TCP: Hash tables configured (established 131072 bind 65536)
[    0.318617] TCP reno registered
[    0.318622] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.318638] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.318755] NET: Registered protocol family 1
[    0.318776] pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
[    0.350217] pci 0000:01:05.0: Boot video device
[    0.350234] PCI: CLS 32 bytes, default 64
[    0.350527] cpufreq-nforce2: No nForce2 chipset.
[    0.350566] Scanning for low memory corruption every 60 seconds
[    0.350747] audit: initializing netlink socket (disabled)
[    0.350761] type=2000 audit(1294955033.348:1): initialized
[    0.366213] highmem bounce pool size: 64 pages
[    0.366219] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    0.368132] VFS: Disk quotas dquot_6.5.2
[    0.368213] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.369003] fuse init (API version 7.14)
[    0.369128] msgmni has been set to 1680
[    0.369567] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.369572] io scheduler noop registered
[    0.369575] io scheduler deadline registered
[    0.369596] io scheduler cfq registered (default)
[    0.369743] pcieport 0000:00:04.0: setting latency timer to 64
[    0.369777]   alloc irq_desc for 40 on node -1
[    0.369780]   alloc kstat_irqs on node -1
[    0.369790] pcieport 0000:00:04.0: irq 40 for MSI/MSI-X
[    0.369864] pcieport 0000:00:05.0: setting latency timer to 64
[    0.369894]   alloc irq_desc for 41 on node -1
[    0.369897]   alloc kstat_irqs on node -1
[    0.369904] pcieport 0000:00:05.0: irq 41 for MSI/MSI-X
[    0.370000] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.370028] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.370874] ACPI: AC Adapter [ACAD] (off-line)
[    0.370966] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.370974] ACPI: Power Button [PWRB]
[    0.371058] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
[    0.371555] ACPI: Lid Switch [LID]
[    0.371650] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.371659] ACPI: Power Button [PWRF]
[    0.371977] ACPI: acpi_idle registered with cpuidle
[    0.372010] ACPI: processor limited to max C-state 1
[    0.377330] thermal LNXTHERM:01: registered as thermal_zone0
[    0.377346] ACPI: Thermal Zone [TZ00] (37 C)
[    0.377557] [Firmware Bug]: ERST: ERST table is invalid
[    0.377805] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.379620] brd: module loaded
[    0.380296] loop: module loaded
[    0.380927] Fixed MDIO Bus: probed
[    0.380973] PPP generic driver version 2.4.2
[    0.381015] tun: Universal TUN/TAP device driver, 1.6
[    0.381018] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.381115] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.381177] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.381202] ehci_hcd 0000:00:12.2: EHCI Host Controller
[    0.381243] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
[    0.381284] ehci_hcd 0000:00:12.2: debug port 1
[    0.381313] ehci_hcd 0000:00:12.2: irq 17, io mem 0xd0906000
[    0.381439] isapnp: Scanning for PnP cards...
[    0.435869] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    0.436044] hub 1-0:1.0: USB hub found
[    0.436050] hub 1-0:1.0: 5 ports detected
[    0.436167] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.436180] ehci_hcd 0000:00:13.2: EHCI Host Controller
[    0.436220] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
[    0.436257] ehci_hcd 0000:00:13.2: debug port 1
[    0.436271] ehci_hcd 0000:00:13.2: irq 17, io mem 0xd0906400
[    0.485148] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    0.485304] hub 2-0:1.0: USB hub found
[    0.485309] hub 2-0:1.0: 5 ports detected
[    0.485417] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.485433]   alloc irq_desc for 18 on node -1
[    0.485436]   alloc kstat_irqs on node -1
[    0.485444] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.485457] ohci_hcd 0000:00:12.0: OHCI Host Controller
[    0.485524] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
[    0.485558] ohci_hcd 0000:00:12.0: irq 18, io mem 0xd0904000
[    0.587328] hub 3-0:1.0: USB hub found
[    0.587340] hub 3-0:1.0: 5 ports detected
[    0.587437] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.587450] ohci_hcd 0000:00:13.0: OHCI Host Controller
[    0.587491] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 4
[    0.587516] ohci_hcd 0000:00:13.0: irq 18, io mem 0xd0905000
[    0.683520] hub 4-0:1.0: USB hub found
[    0.683528] hub 4-0:1.0: 5 ports detected
[    0.683613] uhci_hcd: USB Universal Host Controller Interface driver
[    0.683711] PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12
[    0.707793] i8042.c: Detected active multiplexing controller, rev 1.1.
[    0.746346] ACPI: Battery Slot [BAT1] (battery present)
[    0.768992] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.768999] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    0.769035] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    0.769072] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    0.769104] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    0.769225] mice: PS/2 mouse device common for all mice
[    0.769426] rtc_cmos 00:04: RTC can wake from S4
[    0.769473] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    0.769506] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.769644] device-mapper: uevent: version 1.0.3
[    0.816769] isapnp: No Plug & Play device found
[    0.816877] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com
[    0.816982] device-mapper: multipath: version 1.1.1 loaded
[    0.816985] device-mapper: multipath round-robin: version 1.0.0 loaded
[    0.817132] EISA: Probing bus 0 at eisa.0
[    0.817135] EISA: Cannot allocate resource for mainboard
[    0.817138] Cannot allocate resource for EISA slot 1
[    0.817141] Cannot allocate resource for EISA slot 2
[    0.817144] Cannot allocate resource for EISA slot 3
[    0.817146] Cannot allocate resource for EISA slot 4
[    0.817149] Cannot allocate resource for EISA slot 5
[    0.817152] Cannot allocate resource for EISA slot 6
[    0.817154] Cannot allocate resource for EISA slot 7
[    0.817157] Cannot allocate resource for EISA slot 8
[    0.817160] EISA: Detected 0 cards.
[    0.817243] cpuidle: using governor ladder
[    0.817246] cpuidle: using governor menu
[    0.817656] TCP cubic registered
[    0.817827] NET: Registered protocol family 10
[    0.818331] lo: Disabled Privacy Extensions
[    0.818661] NET: Registered protocol family 17
[    0.818699] powernow-k8: Found 1 AMD Athlon(tm) II Neo K325 Dual-Core Processor (2 cpu cores) (version 2.20.00)
[    0.818748] powernow-k8:    0 : pstate 0 (1300 MHz)
[    0.818751] powernow-k8:    1 : pstate 1 (1100 MHz)
[    0.818754] powernow-k8:    2 : pstate 2 (800 MHz)
[    0.819165] Using IPI No-Shortcut mode
[    0.819297] PM: Resume from disk failed.
[    0.819321] registered taskstats version 1
[    0.819612]   Magic number: 11:856:752
[    0.819637] tty ttyS3: hash matches
[    0.819761] rtc_cmos 00:04: setting system clock to 2011-01-13 21:43:55 UTC (1294955035)
[    0.819766] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.819768] EDD information not available.
[    0.843281] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    0.847768] Freeing initrd memory: 15556k freed
[    0.857126] Freeing unused kernel memory: 688k freed
[    0.857793] Write protecting the kernel text: 4936k
[    0.857864] Write protecting the kernel read-only data: 1980k
[    0.893374] udev[78]: starting version 163
[    0.938148] usb 1-5: new high speed USB device using ehci_hcd and address 3
[    0.985672] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    0.985703] r8169 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.985751] r8169 0000:02:00.0: setting latency timer to 64
[    0.985793]   alloc irq_desc for 42 on node -1
[    0.985796]   alloc kstat_irqs on node -1
[    0.985811] r8169 0000:02:00.0: irq 42 for MSI/MSI-X
[    1.023996] r8169 0000:02:00.0: eth0: RTL8168d/8111d at 0xf80aa000, 60:eb:69:03:1e:9a, XID 083000c0 IRQ 42
[    1.091522] usb 1-5: config 1 has an invalid interface number: 1 but max is 0
[    1.091528] usb 1-5: config 1 has no interface number 0
[    1.099788] ahci 0000:00:11.0: version 3.0
[    1.099844]   alloc irq_desc for 19 on node -1
[    1.099848]   alloc kstat_irqs on node -1
[    1.099859] ahci 0000:00:11.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[    1.099918]   alloc irq_desc for 43 on node -1
[    1.099921]   alloc kstat_irqs on node -1
[    1.099934] ahci 0000:00:11.0: irq 43 for MSI/MSI-X
[    1.100021] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[    1.100028] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part sxs 
[    1.104968] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    1.106461] acpi device:30: registered as cooling_device2
[    1.106822] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:2f/LNXVIDEO:02/input/input4
[    1.106890] ACPI: Video Device [VGA2] (multi-head: yes  rom: no  post: no)
[    1.107133] scsi0 : ahci
[    1.107388] Linux agpgart interface v0.103
[    1.110057] scsi1 : ahci
[    1.110317] ata1: SATA max UDMA/133 abar m1024@0xd0906800 port 0xd0906900 irq 43
[    1.110324] ata2: SATA max UDMA/133 abar m1024@0xd0906800 port 0xd0906980 irq 43
[    1.138166] [drm] Initialized drm 1.1.0 20060810
[    1.205090] usb 2-2: new high speed USB device using ehci_hcd and address 2
[    1.363788] Initializing USB Mass Storage driver...
[    1.363950] scsi2 : usb-storage 2-2:1.0
[    1.364067] usbcore: registered new interface driver usb-storage
[    1.364071] USB Mass Storage support registered.
[    1.428098] ata2: SATA link down (SStatus 0 SControl 300)
[    1.464088] usb 2-3: new high speed USB device using ehci_hcd and address 3
[    1.600050] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.601820] ata1.00: ATA-8: HITACHI HTS545025B9A300, PB2ZC61H, max UDMA/100
[    1.601827] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.603310] ata1.00: configured for UDMA/100
[    1.617330] scsi 0:0:0:0: Direct-Access     ATA      HITACHI HTS54502 PB2Z PQ: 0 ANSI: 5
[    1.617589] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.617665] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    1.617758] sd 0:0:0:0: [sda] Write Protect is off
[    1.617763] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.617790] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.618044]  sda: sda1 sda2
[    1.659054] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.712989] [drm] radeon defaulting to kernel modesetting.
[    1.712994] [drm] radeon kernel modesetting enabled.
[    1.713115] radeon 0000:01:05.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    1.713121] radeon 0000:01:05.0: setting latency timer to 64
[    1.715381] [drm] initializing kernel modesetting (RS880 0x1002:0x9712).
[    1.715579] [drm] register mmio base: 0xD0500000
[    1.715582] [drm] register mmio size: 65536
[    1.715768] ATOM BIOS: Lenovo_PS2A
[    1.715794] [drm] Clocks initialized !
[    1.715807] radeon 0000:01:05.0: VRAM: 256M 0xC0000000 - 0xCFFFFFFF (256M used)
[    1.715812] radeon 0000:01:05.0: GTT: 512M 0xA0000000 - 0xBFFFFFFF
[    1.716281] [drm] Detected VRAM RAM=256M, BAR=256M
[    1.716287] [drm] RAM width 32bits DDR
[    1.716416] [TTM] Zone  kernel: Available graphics memory: 438208 kiB.
[    1.716421] [TTM] Zone highmem: Available graphics memory: 900320 kiB.
[    1.716425] [TTM] Initializing pool allocator.
[    1.716454] [drm] radeon: 256M of VRAM memory ready
[    1.716457] [drm] radeon: 512M of GTT memory ready.
[    1.716505] [drm] radeon: irq initialized.
[    1.716509] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    1.717314] [drm] Loading RS780 Microcode
[    1.761257] [drm] ring test succeeded in 0 usecs
[    1.761523] [drm] radeon: ib pool ready.
[    1.761618] [drm] ib test succeeded in 0 usecs
[    1.761622] [drm] Enabling audio support
[    1.761933] [drm] Unknown TV standard; defaulting to NTSC
[    1.762172] [drm] Radeon Display Connectors
[    1.762175] [drm] Connector 0:
[    1.762177] [drm]   VGA
[    1.762181] [drm]   DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
[    1.762184] [drm]   Encoders:
[    1.762187] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    1.762190] [drm] Connector 1:
[    1.762192] [drm]   LVDS
[    1.762195] [drm]   DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
[    1.762198] [drm]   Encoders:
[    1.762200] [drm]     LCD1: INTERNAL_KLDSCP_LVTMA
[    1.762203] [drm] Connector 2:
[    1.762205] [drm]   HDMI-A
[    1.762207] [drm]   HPD1
[    1.762210] [drm]   DDC: 0x7e20 0x7e20 0x7e24 0x7e24 0x7e28 0x7e28 0x7e2c 0x7e2c
[    1.762213] [drm]   Encoders:
[    1.762215] [drm]     DFP1: INTERNAL_UNIPHY
[    1.824249] [drm] radeon: power management initialized
[    1.865033] usb 3-4: new full speed USB device using ohci_hcd and address 2
[    1.906535] [drm] fb mappable at 0xC0141000
[    1.906540] [drm] vram apper at 0xC0000000
[    1.906543] [drm] size 4325376
[    1.906545] [drm] fb depth is 24
[    1.906547] [drm]    pitch is 5632
[    2.363689] scsi 2:0:0:0: Direct-Access     Generic- Multi-Card       1.00 PQ: 0 ANSI: 0 CCS
[    2.364606] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    2.369131] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[    2.855543] Console: switching to colour frame buffer device 170x48
[    2.870944] fb0: radeondrmfb frame buffer device
[    2.870947] drm: registered panic notifier
[    2.870973] Slow work thread pool: Starting up
[    2.871144] Slow work thread pool: Ready
[    2.871160] [drm] Initialized radeon 2.5.0 20080528 for 0000:01:05.0 on minor 0
[    3.245973] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   12.433657] udev[419]: starting version 163
[   12.531199] Adding 7807584k swap on /dev/sda2.  Priority:-1 extents:1 across:7807584k 
[   12.923768] shpchp 0000:00:01.0: HPC vendor_id 1022 device_id 9602 ss_vid 1022 ss_did 9602
[   12.923777] shpchp 0000:00:01.0: Cannot reserve MMIO region
[   12.923816] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   13.019750] EXT4-fs (sda1): warning: maximal mount count reached, running e2fsck is recommended
[   13.064392] ACPI: resource piix4_smbus [io  0x8040-0x8047] conflicts with ACPI region SMB0 [??? 0x00008040-0x0000804f flags 0x30]
[   13.064398] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   13.065722] type=1400 audit(1294955047.742:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient3" pid=725 comm="apparmor_parser"
[   13.066177] type=1400 audit(1294955047.742:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=725 comm="apparmor_parser"
[   13.066433] type=1400 audit(1294955047.742:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=725 comm="apparmor_parser"
[   13.080257] lp: driver loaded but no devices found
[   13.089793] Non-volatile memory driver v1.3
[   13.110520] usbcore: registered new interface driver usbserial
[   13.110626] USB Serial support registered for generic
[   13.110737] usbcore: registered new interface driver usbserial_generic
[   13.110741] usbserial: USB Serial Driver core
[   13.242471] Linux video capture interface: v2.00
[   13.295452] USB Serial support registered for Qualcomm USB modem
[   13.295490] qcserial 1-5:1.1: Qualcomm USB modem converter detected
[   13.295645] usb 1-5: Qualcomm USB modem converter now attached to ttyUSB0
[   13.295678] usbcore: registered new interface driver qcserial
[   13.316105] uvcvideo: Found UVC 1.00 device Integrated Camera (04f2:b1b4)
[   13.317411] input: Integrated Camera as /devices/pci0000:00/0000:00:13.2/usb2/2-3/2-3:1.0/input/input5
[   13.317492] usbcore: registered new interface driver uvcvideo
[   13.317495] USB Video Class driver (v0.1.0)
[   13.357192] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   13.370842] Bluetooth: Core ver 2.15
[   13.370906] NET: Registered protocol family 31
[   13.370910] Bluetooth: HCI device and connection manager initialized
[   13.370915] Bluetooth: HCI socket layer initialized
[   13.409085] Bluetooth: Generic Bluetooth USB driver ver 0.6
[   13.409286] usbcore: registered new interface driver btusb
[   13.775077] type=1400 audit(1294955048.450:5): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=940 comm="apparmor_parser"
[   13.775320] type=1400 audit(1294955048.450:6): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=941 comm="apparmor_parser"
[   13.775784] type=1400 audit(1294955048.450:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=941 comm="apparmor_parser"
[   13.776201] type=1400 audit(1294955048.450:8): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=941 comm="apparmor_parser"
[   13.782387] type=1400 audit(1294955048.458:9): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=945 comm="apparmor_parser"
[   13.782980] type=1400 audit(1294955048.458:10): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=945 comm="apparmor_parser"
[   13.786710] type=1400 audit(1294955048.462:11): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=946 comm="apparmor_parser"
[   13.824698] r8169 0000:02:00.0: eth0: link down
[   13.825143] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   14.105203] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   14.192847] thinkpad_acpi: ThinkPad ACPI Extras v0.24
[   14.192852] thinkpad_acpi: http://ibm-acpi.sf.net/
[   14.192856] thinkpad_acpi: ThinkPad BIOS 87ET34WW (1.08 ), EC 87HT20WW-1.165000
[   14.192860] thinkpad_acpi: Lenovo ThinkPad Edge, model 254523U
[   14.199686] thinkpad_acpi: detected a 16-level brightness capable ThinkPad
[   14.201939] thinkpad_acpi: radio switch found; radios are enabled
[   14.202005] thinkpad_acpi: possible tablet mode switch found; ThinkPad in laptop mode
[   14.202032] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
[   14.202036] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
[   14.205617] thinkpad_acpi: asked for hotkey mask 0x04000070, but firmware forced it to 0x00000070
[   14.238730] HDA Intel 0000:01:05.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[   14.238794] HDA Intel 0000:01:05.1: setting latency timer to 64
[   14.245085] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
[   14.269591] Bluetooth: L2CAP ver 2.14
[   14.269596] Bluetooth: L2CAP socket layer initialized
[   14.279741] thinkpad_acpi: rfkill switch tpacpi_wwan_sw: radio is unblocked
[   14.279815] Registered led device: tpacpi::thinklight
[   14.279848] Registered led device: tpacpi::power
[   14.279870] Registered led device: tpacpi::standby
[   14.279893] Registered led device: tpacpi::thinkvantage
[   14.291684] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one.
[   14.291854] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
[   14.294959] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_delete_codec_preset
[   14.294965] snd_hda_codec_atihdmi: Unknown symbol snd_hda_delete_codec_preset (err -22)
[   14.295100] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_multi_out_dig_open
[   14.295105] snd_hda_codec_atihdmi: Unknown symbol snd_hda_multi_out_dig_open (err -22)
[   14.295256] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_multi_out_dig_close
[   14.295261] snd_hda_codec_atihdmi: Unknown symbol snd_hda_multi_out_dig_close (err -22)
[   14.295400] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_sequence_write
[   14.295404] snd_hda_codec_atihdmi: Unknown symbol snd_hda_sequence_write (err -22)
[   14.295543] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_codec_write
[   14.295547] snd_hda_codec_atihdmi: Unknown symbol snd_hda_codec_write (err -22)
[   14.295687] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_add_codec_preset
[   14.295691] snd_hda_codec_atihdmi: Unknown symbol snd_hda_add_codec_preset (err -22)
[   14.295845] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_create_spdif_out_ctls
[   14.295849] snd_hda_codec_atihdmi: Unknown symbol snd_hda_create_spdif_out_ctls (err -22)
[   14.296000] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_multi_out_dig_prepare
[   14.296004] snd_hda_codec_atihdmi: Unknown symbol snd_hda_multi_out_dig_prepare (err -22)
[   14.301648] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input6
[   14.457634] Synaptics Touchpad, model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd047b1/0xb40000/0xa0000
[   14.457643] serio: Synaptics pass-through port at isa0060/serio4/input0
[   14.461680] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   14.461683] Bluetooth: BNEP filters: protocol multicast
[   14.498797] Bluetooth: SCO (Voice Link) ver 0.6
[   14.498803] Bluetooth: SCO socket layer initialized
[   14.511389] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input7
[   14.706812] ppdev: user-space parallel port driver
[   14.807993] Bluetooth: RFCOMM TTY layer initialized
[   14.808004] Bluetooth: RFCOMM socket layer initialized
[   14.808008] Bluetooth: RFCOMM ver 1.11
[   15.839392] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=600
[   17.569188] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=600
[   17.636457] hda-intel: IRQ timing workaround is activated for card #1. Suggest a bigger bdl_pos_adj.
[   17.676478] psmouse serio5: ID: 10 00 64
[   22.105458] IBM TrackPoint firmware: 0x0e, buttons: 3/3
[   22.397668] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio4/serio5/input/input8

[-- Attachment #3: dmesg.dmipatch-after-sr --]
[-- Type: application/octet-stream, Size: 66556 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.35-25-generic (root@tangerine) (gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5) ) #43 SMP Thu Jan 13 04:57:49 UTC 2011 (Ubuntu 2.6.35-25.43-generic 2.6.35.10)
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009dc00 (usable)
[    0.000000]  BIOS-e820: 000000000009dc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000d0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000006fe8e000 (usable)
[    0.000000]  BIOS-e820: 000000006fe8e000 - 000000006fea0000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000006fea0000 - 000000006feb1000 (ACPI data)
[    0.000000]  BIOS-e820: 000000006feb1000 - 000000006feb3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000006feb3000 - 000000006feff000 (reserved)
[    0.000000]  BIOS-e820: 000000006ff00000 - 0000000080000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
[    0.000000] DMI present.
[    0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x6fe8e max_arch_pfn = 0x100000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-DFFFF write-back
[    0.000000]   E0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFFC0000000 write-back
[    0.000000]   1 base 000040000000 mask FFFFE0000000 write-back
[    0.000000]   2 base 000060000000 mask FFFFF0000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820 update range: 0000000000002000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (reserved)
[    0.000000]  modified: 0000000000001000 - 0000000000002000 (usable)
[    0.000000]  modified: 0000000000002000 - 0000000000010000 (reserved)
[    0.000000]  modified: 0000000000010000 - 000000000009dc00 (usable)
[    0.000000]  modified: 000000000009dc00 - 00000000000a0000 (reserved)
[    0.000000]  modified: 00000000000d0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 000000006fe8e000 (usable)
[    0.000000]  modified: 000000006fe8e000 - 000000006fea0000 (ACPI NVS)
[    0.000000]  modified: 000000006fea0000 - 000000006feb1000 (ACPI data)
[    0.000000]  modified: 000000006feb1000 - 000000006feb3000 (ACPI NVS)
[    0.000000]  modified: 000000006feb3000 - 000000006feff000 (reserved)
[    0.000000]  modified: 000000006ff00000 - 0000000080000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 00000000fec10000 (reserved)
[    0.000000]  modified: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  modified: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] initial memory mapped : 0 - 00c00000
[    0.000000] found SMP MP-table at [c00f7970] f7970
[    0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
[    0.000000]  0000000000 - 0000400000 page 4k
[    0.000000]  0000400000 - 0037400000 page 2M
[    0.000000]  0037400000 - 00377fe000 page 4k
[    0.000000] kernel direct mapping tables up to 377fe000 @ 15000-1a000
[    0.000000] RAMDISK: 370bf000 - 37ff0000
[    0.000000] Allocated new RAMDISK: 009a9000 - 018d90dd
[    0.000000] Move RAMDISK from 00000000370bf000 - 0000000037fef0dc to 009a9000 - 018d90dc
[    0.000000] ------------[ cut here ]------------
[    0.000000] WARNING: at /home/manjo/ubuntu-maverick-674710/arch/x86/kernel/acpi/boot.c:1345 dmi_ignore_irq0_timer_override+0x2e/0x52()
[    0.000000] Hardware name: 254523U
[    0.000000] ati_ixp4x0 quirk not complete.
[    0.000000] Modules linked in:
[    0.000000] Pid: 0, comm: swapper Not tainted 2.6.35-25-generic #43
[    0.000000] Call Trace:
[    0.000000]  [<c014ad42>] warn_slowpath_common+0x72/0xa0
[    0.000000]  [<c0826724>] ? dmi_ignore_irq0_timer_override+0x2e/0x52
[    0.000000]  [<c0826724>] ? dmi_ignore_irq0_timer_override+0x2e/0x52
[    0.000000]  [<c014ae13>] warn_slowpath_fmt+0x33/0x40
[    0.000000]  [<c0826724>] dmi_ignore_irq0_timer_override+0x2e/0x52
[    0.000000]  [<c04dd7d0>] dmi_check_system+0x30/0x50
[    0.000000]  [<c0826df4>] acpi_boot_table_init+0x10/0x7d
[    0.000000]  [<c0821ea7>] ? io_delay_init+0x16/0x18
[    0.000000]  [<c081f556>] setup_arch+0x562/0x645
[    0.000000]  [<c012cf19>] ? default_spin_lock_flags+0x9/0x10
[    0.000000]  [<c081b57b>] start_kernel+0xcf/0x374
[    0.000000]  [<c081b0d7>] i386_start_kernel+0xd7/0xdf
[    0.000000] ---[ end trace a7919e7f17c0a725 ]---
[    0.000000] ThinkPad Edge detected: Ignoring BIOS IRQ0 pin2 override
[    0.000000] ACPI: RSDP 000f78c0 00024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 6fea234c 00084 (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: FACP 6feb0083 000F4 (v03 LENOVO TP-87    00001080 AMD  000F4240)
[    0.000000] ACPI: DSDT 6fea23d0 0DCB3 (v01 LENOVO TP-87    00001080 MSFT 03000001)
[    0.000000] ACPI: FACS 6feb2fc0 00040
[    0.000000] ACPI: TCPA 6feb01eb 00032 (v02 LENOVO TP-87    00001080 PTEC 00000000)
[    0.000000] ACPI: EINJ 6feb021d 001B0 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: HEST 6feb03cd 002E4 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: BERT 6feb06b1 00030 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: SSDT 6feb06e1 000E1 (v01 LENOVO TP-87    00001080 INTL 20050624)
[    0.000000] ACPI: ERST 6feb07c2 00270 (v01 LENOVO TP-87    00001080 PTL  00000001)
[    0.000000] ACPI: SSDT 6feb0a32 00386 (v01 LENOVO TP-87    00001080 AMD  00000001)
[    0.000000] ACPI: APIC 6feb0db8 0005E (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: MCFG 6feb0e16 0003C (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: HPET 6feb0e52 00038 (v01 LENOVO TP-87    00001080  LTP 00000001)
[    0.000000] ACPI: SLIC 6feb0e8a 00176 (v01 LENOVO TP-87    00001080  LTP 00000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 902MB HIGHMEM available.
[    0.000000] 887MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 377fe000
[    0.000000]   low ram: 0 - 377fe000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000001 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000377fe
[    0.000000]   HighMem  0x000377fe -> 0x0006fe8e
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000001 -> 0x00000002
[    0.000000]     0: 0x00000010 -> 0x0000009d
[    0.000000]     0: 0x00000100 -> 0x0006fe8e
[    0.000000] On node 0 totalpages: 458268
[    0.000000] free_area_init_node: node 0, pgdat c0801fc0, node_mem_map c18db020
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3950 pages, LIFO batch:0
[    0.000000]   Normal zone: 1744 pages used for memmap
[    0.000000]   Normal zone: 221486 pages, LIFO batch:31
[    0.000000]   HighMem zone: 1806 pages used for memmap
[    0.000000]   HighMem zone: 229250 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x8008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 low level)
[    0.000000] ACPI: BIOS IRQ0 pin2 override ignored.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x43538210 base: 0xfed00000
[    0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] early_res array is doubled to 64 at [16000 - 167ff]
[    0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000010000
[    0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
[    0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d0000
[    0.000000] PM: Registered nosave memory: 00000000000d0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:7ec00000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] PERCPU: Embedded 14 pages/cpu @c2800000 s36416 r0 d20928 u2097152
[    0.000000] pcpu-alloc: s36416 r0 d20928 u2097152 alloc=1*4194304
[    0.000000] pcpu-alloc: [0] 0 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 454686
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-25-generic root=UUID=d5c705ef-5eb6-40af-9c36-2dccfbec5452 ro quiet splash
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Enabling fast FPU save and restore... done.
[    0.000000] Enabling unmasked SIMD FPU exception support... done.
[    0.000000] Initializing CPU#0
[    0.000000] allocated 9167620 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Subtract (52 early reservations)
[    0.000000]   #1 [0000001000 - 0000002000]   EX TRAMPOLINE
[    0.000000]   #2 [0000100000 - 00009a4adc]   TEXT DATA BSS
[    0.000000]   #3 [00009a5000 - 00009a8130]             BRK
[    0.000000]   #4 [00000f7980 - 0000100000]   BIOS reserved
[    0.000000]   #5 [00000f7970 - 00000f7980]    MP-table mpf
[    0.000000]   #6 [000009dc00 - 000009e071]   BIOS reserved
[    0.000000]   #7 [000009e1bd - 00000f7970]   BIOS reserved
[    0.000000]   #8 [000009e071 - 000009e1bd]    MP-table mpc
[    0.000000]   #9 [0000010000 - 0000011000]      TRAMPOLINE
[    0.000000]   #10 [0000011000 - 0000015000]     ACPI WAKEUP
[    0.000000]   #11 [0000015000 - 0000016000]         PGTABLE
[    0.000000]   #12 [00009a9000 - 00018da000]     NEW RAMDISK
[    0.000000]   #13 [00018da000 - 00018db000]         BOOTMEM
[    0.000000]   #14 [00018db000 - 00026db000]         BOOTMEM
[    0.000000]   #15 [00026db000 - 00026db004]         BOOTMEM
[    0.000000]   #16 [00026db040 - 00026db100]         BOOTMEM
[    0.000000]   #17 [00026db100 - 00026db154]         BOOTMEM
[    0.000000]   #18 [00026db180 - 00026de180]         BOOTMEM
[    0.000000]   #19 [00026de180 - 00026de1d8]         BOOTMEM
[    0.000000]   #20 [00026de200 - 00026e1200]         BOOTMEM
[    0.000000]   #21 [00026e1200 - 00026e1225]         BOOTMEM
[    0.000000]   #22 [00026e1240 - 00026e1267]         BOOTMEM
[    0.000000]   #23 [00026e1280 - 00026e1424]         BOOTMEM
[    0.000000]   #24 [00026e1440 - 00026e1480]         BOOTMEM
[    0.000000]   #25 [00026e1480 - 00026e14c0]         BOOTMEM
[    0.000000]   #26 [00026e14c0 - 00026e1500]         BOOTMEM
[    0.000000]   #27 [00026e1500 - 00026e1540]         BOOTMEM
[    0.000000]   #28 [00026e1540 - 00026e1580]         BOOTMEM
[    0.000000]   #29 [00026e1580 - 00026e15c0]         BOOTMEM
[    0.000000]   #30 [00026e15c0 - 00026e1600]         BOOTMEM
[    0.000000]   #31 [00026e1600 - 00026e1640]         BOOTMEM
[    0.000000]   #32 [00026e1640 - 00026e1680]         BOOTMEM
[    0.000000]   #33 [00026e1680 - 00026e16c0]         BOOTMEM
[    0.000000]   #34 [00026e16c0 - 00026e1700]         BOOTMEM
[    0.000000]   #35 [00026e1700 - 00026e1740]         BOOTMEM
[    0.000000]   #36 [00026e1740 - 00026e1750]         BOOTMEM
[    0.000000]   #37 [00026e1780 - 00026e1790]         BOOTMEM
[    0.000000]   #38 [00026e17c0 - 00026e182a]         BOOTMEM
[    0.000000]   #39 [00026e1840 - 00026e18aa]         BOOTMEM
[    0.000000]   #40 [0002800000 - 000280e000]         BOOTMEM
[    0.000000]   #41 [0002a00000 - 0002a0e000]         BOOTMEM
[    0.000000]   #42 [00026e38c0 - 00026e38c4]         BOOTMEM
[    0.000000]   #43 [00026e3900 - 00026e3904]         BOOTMEM
[    0.000000]   #44 [00026e3940 - 00026e3948]         BOOTMEM
[    0.000000]   #45 [00026e3980 - 00026e3988]         BOOTMEM
[    0.000000]   #46 [00026e39c0 - 00026e3a68]         BOOTMEM
[    0.000000]   #47 [00026e3a80 - 00026e3ae8]         BOOTMEM
[    0.000000]   #48 [00026e3b00 - 00026e7b00]         BOOTMEM
[    0.000000]   #49 [00026e7b00 - 0002767b00]         BOOTMEM
[    0.000000]   #50 [0002767b00 - 00027a7b00]         BOOTMEM
[    0.000000]   #51 [0002a0e000 - 00032cc304]         BOOTMEM
[    0.000000] Initializing HighMem for node 0 (000377fe:0006fe8e)
[    0.000000] Memory: 1784396k/1833528k available (4933k kernel code, 48676k reserved, 2339k data, 688k init, 924224k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff16000 - 0xfffff000   ( 932 kB)
[    0.000000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
[    0.000000]     vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
[    0.000000]       .init : 0xc081b000 - 0xc08c7000   ( 688 kB)
[    0.000000]       .data : 0xc05d17ce - 0xc081a7a8   (2339 kB)
[    0.000000]       .text : 0xc0100000 - 0xc05d17ce   (4933 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU-based detection of stalled CPUs is disabled.
[    0.000000] 	Verbose stalled-CPUs detection is disabled.
[    0.000000] NR_IRQS:2304 nr_irqs:512
[    0.000000] Extended CMOS year: 2000
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1296.715 MHz processor.
[    0.004006] Calibrating delay loop (skipped), value calculated using timer frequency.. 2593.43 BogoMIPS (lpj=5186860)
[    0.004016] pid_max: default: 32768 minimum: 301
[    0.004047] Security Framework initialized
[    0.004079] AppArmor: AppArmor initialized
[    0.004082] Yama: becoming mindful.
[    0.004182] Mount-cache hash table entries: 512
[    0.008014] Initializing cgroup subsys ns
[    0.008021] Initializing cgroup subsys cpuacct
[    0.008029] Initializing cgroup subsys memory
[    0.008043] Initializing cgroup subsys devices
[    0.008048] Initializing cgroup subsys freezer
[    0.008053] Initializing cgroup subsys net_cls
[    0.008090] CPU: Physical Processor ID: 0
[    0.008093] CPU: Processor Core ID: 0
[    0.008098] mce: CPU supports 6 MCE banks
[    0.008113] using C1E aware idle routine
[    0.008122] Performance Events: AMD PMU driver.
[    0.008134] ... version:                0
[    0.008138] ... bit width:              48
[    0.008142] ... generic registers:      4
[    0.008146] ... value mask:             0000ffffffffffff
[    0.008150] ... max period:             00007fffffffffff
[    0.008154] ... fixed-purpose events:   0
[    0.008158] ... event mask:             000000000000000f
[    0.012482] ACPI: Core revision 20100428
[    0.040033] ftrace: converting mcount calls to 0f 1f 44 00 00
[    0.040046] ftrace: allocating 21756 entries in 43 pages
[    0.044106] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.044455] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
[    0.052000] ..MP-BIOS bug: 8254 timer not connected to IO-APIC
[    0.052000] ...trying to set up timer (IRQ0) through the 8259A ...
[    0.052000] ..... (found apic 0 pin 0) ...
[    0.095460] ....... works.
[    0.095463] CPU0: AMD Athlon(tm) II Neo K325 Dual-Core Processor stepping 03
[    0.096000] Booting Node   0, Processors  #1 Ok.
[    0.008000] Initializing CPU#1
[    0.184013] Brought up 2 CPUs
[    0.184017] Total of 2 processors activated (5186.98 BogoMIPS).
[    0.184030] System has AMD C1E enabled
[    0.184048] Switch to broadcast mode on CPU1
[    0.184392] Switch to broadcast mode on CPU0
[    0.184392] devtmpfs: initialized
[    0.185542] regulator: core version 0.5
[    0.185610] Time: 21:43:55  Date: 01/13/11
[    0.185670] NET: Registered protocol family 16
[    0.185730] Trying to unpack rootfs image as initramfs...
[    0.185847] EISA bus registered
[    0.185855] node 0 link 0: io port [1000, ffff]
[    0.185860] TOM: 0000000080000000 aka 2048M
[    0.185863] Fam 10h mmconf [e0000000, efffffff]
[    0.185867] node 0 link 0: mmio [80000000, bfffffff]
[    0.185872] node 0 link 0: mmio [c0000000, cfffffff]
[    0.185877] node 0 link 0: mmio [d0000000, d03fffff]
[    0.185881] node 0 link 0: mmio [d0400000, d05fffff]
[    0.185885] node 0 link 0: mmio [d0600000, dfffffff]
[    0.185889] node 0 link 0: mmio [e0000000, efffffff] ==> none
[    0.185894] node 0 link 0: mmio [f0000000, febfffff]
[    0.185898] node 0 link 0: mmio [fec00000, ffffffff]
[    0.185903] bus: [00, 1f] on node 0 link 0
[    0.185907] bus: 00 index 0 [io  0x0000-0xffff]
[    0.185911] bus: 00 index 1 [mem 0x80000000-0xdfffffff]
[    0.185915] bus: 00 index 2 [mem 0xf0000000-0xffffffff]
[    0.185927] ACPI: bus type pci registered
[    0.186058] PCI: MMCONFIG for domain 0000 [bus 00-08] at [mem 0xe0000000-0xe08fffff] (base 0xe0000000)
[    0.186062] PCI: not using MMCONFIG
[    0.186410] PCI: PCI BIOS revision 2.10 entry at 0xfdc8a, last bus=9
[    0.186413] PCI: Using configuration type 1 for base access
[    0.186415] PCI: Using configuration type 1 for extended access
[    0.186441] mtrr: your CPUs had inconsistent fixed MTRR settings
[    0.186443] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.186446] mtrr: probably your BIOS does not setup all CPUs.
[    0.186448] mtrr: corrected configuration.
[    0.192319] bio: create slab <bio-0> at 0
[    0.195363] ACPI: EC: Look up EC in DSDT
[    0.195646] \_SB_:_OSC evaluation returned wrong type
[    0.195646] _OSC request data:1 7 
[    0.204000] ACPI: BIOS _OSI(Linux) query ignored
[    0.204699] ACPI: OEMN 6feb1ab3 00131 (v01 AMD    NAHP     00000001 MSFT 03000001)
[    0.205540] ACPI: Enabled 1 new runtime GPEs, added 0 new wakeup GPEs
[    0.205547] ACPI: Dynamic OEM Table Load:
[    0.205552] ACPI: OEMN (null) 00131 (v01 AMD    NAHP     00000001 MSFT 03000001)
[    0.212265] ACPI: Interpreter enabled
[    0.212274] ACPI: (supports S0 S3 S4 S5)
[    0.212309] ACPI: Using IOAPIC for interrupt routing
[    0.212838] PCI: MMCONFIG for domain 0000 [bus 00-08] at [mem 0xe0000000-0xe08fffff] (base 0xe0000000)
[    0.213737] [Firmware Bug]: PCI: MMCONFIG at [mem 0xe0000000-0xe08fffff] not reserved in ACPI motherboard resources
[    0.213741] PCI: not using MMCONFIG
[    0.214369] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.214515] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.218660] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    0.224525] ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
[    0.224997] ACPI: No dock devices found.
[    0.225004] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.226709] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.229030] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.229037] pci_root PNP0A08:00: host bridge window [mem 0x80000000-0xdfffffff]
[    0.229042] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xffffffff]
[    0.229047] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.229051] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    0.229220] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
[    0.229225] pci 0000:00:04.0: PME# disabled
[    0.229281] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
[    0.229285] pci 0000:00:05.0: PME# disabled
[    0.229354] pci 0000:00:11.0: reg 10: [io  0x8440-0x8447]
[    0.229363] pci 0000:00:11.0: reg 14: [io  0x8430-0x8433]
[    0.229372] pci 0000:00:11.0: reg 18: [io  0x8420-0x8427]
[    0.229381] pci 0000:00:11.0: reg 1c: [io  0x8410-0x8413]
[    0.229389] pci 0000:00:11.0: reg 20: [io  0x8400-0x840f]
[    0.229398] pci 0000:00:11.0: reg 24: [mem 0xd0906800-0xd0906bff]
[    0.229471] pci 0000:00:12.0: reg 10: [mem 0xd0904000-0xd0904fff]
[    0.229548] pci 0000:00:12.2: reg 10: [mem 0xd0906000-0xd09060ff]
[    0.229608] pci 0000:00:12.2: supports D1 D2
[    0.229611] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.229617] pci 0000:00:12.2: PME# disabled
[    0.229653] pci 0000:00:13.0: reg 10: [mem 0xd0905000-0xd0905fff]
[    0.229730] pci 0000:00:13.2: reg 10: [mem 0xd0906400-0xd09064ff]
[    0.229789] pci 0000:00:13.2: supports D1 D2
[    0.229792] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.229798] pci 0000:00:13.2: PME# disabled
[    0.229906] pci 0000:00:14.2: reg 10: [mem 0xd0900000-0xd0903fff 64bit]
[    0.229955] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.229961] pci 0000:00:14.2: PME# disabled
[    0.230240] pci 0000:01:05.0: reg 10: [mem 0xc0000000-0xcfffffff pref]
[    0.230246] pci 0000:01:05.0: reg 14: [io  0x9000-0x90ff]
[    0.230252] pci 0000:01:05.0: reg 18: [mem 0xd0500000-0xd050ffff]
[    0.230264] pci 0000:01:05.0: reg 24: [mem 0xd0400000-0xd04fffff]
[    0.230283] pci 0000:01:05.0: supports D1 D2
[    0.230308] pci 0000:01:05.1: reg 10: [mem 0xd0510000-0xd0513fff]
[    0.230339] pci 0000:01:05.1: supports D1 D2
[    0.230391] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.230398] pci 0000:00:01.0:   bridge window [io  0x9000-0x9fff]
[    0.230403] pci 0000:00:01.0:   bridge window [mem 0xd0400000-0xd05fffff]
[    0.230410] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.230475] pci 0000:02:00.0: reg 10: [io  0xbc00-0xbcff]
[    0.230495] pci 0000:02:00.0: reg 18: [mem 0xd0200000-0xd0200fff 64bit pref]
[    0.230510] pci 0000:02:00.0: reg 20: [mem 0xd0000000-0xd0003fff 64bit pref]
[    0.230520] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[    0.230558] pci 0000:02:00.0: supports D1 D2
[    0.230562] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.230567] pci 0000:02:00.0: PME# disabled
[    0.236044] pci 0000:00:04.0: PCI bridge to [bus 02-07]
[    0.236054] pci 0000:00:04.0:   bridge window [io  0xa000-0xbfff]
[    0.236061] pci 0000:00:04.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.236068] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.236150] pci 0000:08:00.0: reg 10: [io  0xc000-0xc0ff]
[    0.236174] pci 0000:08:00.0: reg 18: [mem 0xd0600000-0xd0603fff 64bit]
[    0.236236] pci 0000:08:00.0: supports D1 D2
[    0.236240] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.236246] pci 0000:08:00.0: PME# disabled
[    0.244050] pci 0000:00:05.0: PCI bridge to [bus 08-08]
[    0.244062] pci 0000:00:05.0:   bridge window [io  0xc000-0xcfff]
[    0.244067] pci 0000:00:05.0:   bridge window [mem 0xd0600000-0xd06fffff]
[    0.244074] pci 0000:00:05.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.244157] pci 0000:00:14.4: PCI bridge to [bus 09-09] (subtractive decode)
[    0.244164] pci 0000:00:14.4:   bridge window [io  0xf000-0x0000] (disabled)
[    0.244170] pci 0000:00:14.4:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.244177] pci 0000:00:14.4:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.244182] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.244186] pci 0000:00:14.4:   bridge window [mem 0x80000000-0xdfffffff] (subtractive decode)
[    0.244190] pci 0000:00:14.4:   bridge window [mem 0xf0000000-0xffffffff] (subtractive decode)
[    0.244195] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.244199] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.244218] pci_bus 0000:00: on NUMA node 0
[    0.244231] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.244616] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB4_._PRT]
[    0.244740] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB5_._PRT]
[    0.244929] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
[    0.245078] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
[    0.251869] ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11) *0
[    0.252179] ACPI: PCI Interrupt Link [LNKB] (IRQs 10 11) *0
[    0.252509] ACPI: PCI Interrupt Link [LNKC] (IRQs 10 11) *0
[    0.252837] ACPI: PCI Interrupt Link [LNKD] (IRQs 10 11) *0
[    0.253104] ACPI: PCI Interrupt Link [LNKE] (IRQs 10 11) *0
[    0.253321] ACPI: PCI Interrupt Link [LNKF] (IRQs 10 11) *0
[    0.253539] ACPI: PCI Interrupt Link [LNKG] (IRQs 10 11) *0
[    0.253756] ACPI: PCI Interrupt Link [LNKH] (IRQs 10 11) *0
[    0.253929] HEST: HEST table parsing is initialized.
[    0.254044] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    0.254050] vgaarb: loaded
[    0.254258] SCSI subsystem initialized
[    0.256000] libata version 3.00 loaded.
[    0.256000] usbcore: registered new interface driver usbfs
[    0.256000] usbcore: registered new interface driver hub
[    0.256000] usbcore: registered new device driver usb
[    0.256000] ACPI: WMI: Mapper loaded
[    0.256000] PCI: Using ACPI for IRQ routing
[    0.256000] PCI: pci_cache_line_size set to 64 bytes
[    0.256000] reserve RAM buffer: 0000000000002000 - 000000000000ffff 
[    0.256000] reserve RAM buffer: 000000000009dc00 - 000000000009ffff 
[    0.256000] reserve RAM buffer: 000000006fe8e000 - 000000006fffffff 
[    0.256000] NetLabel: Initializing
[    0.256000] NetLabel:  domain hash size = 128
[    0.256000] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.256000] NetLabel:  unlabeled traffic allowed by default
[    0.256000] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.256000] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.257041] Switching to clocksource tsc
[    0.272278] AppArmor: AppArmor Filesystem Enabled
[    0.272299] pnp: PnP ACPI init
[    0.272325] ACPI: bus type pnp registered
[    0.279883] pnp: PnP ACPI: found 10 devices
[    0.279889] ACPI: ACPI bus type pnp unregistered
[    0.279894] PnPBIOS: Disabled by ACPI PNP
[    0.279919] system 00:01: [io  0x0f50-0x0f51] has been reserved
[    0.279925] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.279930] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.279944] system 00:08: [io  0x0220-0x022f] has been reserved
[    0.279948] system 00:08: [io  0x040b] has been reserved
[    0.279953] system 00:08: [io  0x04d0-0x04d1] has been reserved
[    0.279957] system 00:08: [io  0x04d6] has been reserved
[    0.279961] system 00:08: [io  0x0530-0x0537] has been reserved
[    0.279965] system 00:08: [io  0x0c00-0x0c01] has been reserved
[    0.279969] system 00:08: [io  0x0c14] has been reserved
[    0.279973] system 00:08: [io  0x0c50-0x0c52] has been reserved
[    0.279976] system 00:08: [io  0x0c6c] has been reserved
[    0.279980] system 00:08: [io  0x0c6f] has been reserved
[    0.279984] system 00:08: [io  0x0cd0-0x0cd1] has been reserved
[    0.279988] system 00:08: [io  0x0cd2-0x0cd3] has been reserved
[    0.279992] system 00:08: [io  0x0cd4-0x0cd5] has been reserved
[    0.279996] system 00:08: [io  0x0cd6-0x0cd7] has been reserved
[    0.280000] system 00:08: [io  0x0cd8-0x0cdf] has been reserved
[    0.280005] system 00:08: [io  0x8000-0x805f] has been reserved
[    0.280009] system 00:08: [io  0x8100-0x81ff window] has been reserved
[    0.280014] system 00:08: [io  0x8200-0x82ff window] has been reserved
[    0.280025] system 00:08: [io  0x0f40-0x0f47] has been reserved
[    0.280029] system 00:08: [io  0x087f] has been reserved
[    0.280038] system 00:09: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.280043] system 00:09: [mem 0xffe00000-0xffffffff] could not be reserved
[    0.280047] system 00:09: [mem 0xfec10000-0xfec1001f] has been reserved
[    0.280052] system 00:09: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.280056] system 00:09: [mem 0xfed61000-0xfed613ff] has been reserved
[    0.280060] system 00:09: [mem 0xfed80000-0xfed80fff] has been reserved
[    0.280065] system 00:09: [mem 0xfffffd00-0x0001fcff] could not be reserved
[    0.316656] pci 0000:00:04.0: BAR 14: assigned [mem 0x80000000-0x800fffff]
[    0.316662] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.316667] pci 0000:00:01.0:   bridge window [io  0x9000-0x9fff]
[    0.316673] pci 0000:00:01.0:   bridge window [mem 0xd0400000-0xd05fffff]
[    0.316678] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.316686] pci 0000:02:00.0: BAR 6: assigned [mem 0xd0020000-0xd003ffff pref]
[    0.316690] pci 0000:00:04.0: PCI bridge to [bus 02-07]
[    0.316695] pci 0000:00:04.0:   bridge window [io  0xa000-0xbfff]
[    0.316700] pci 0000:00:04.0:   bridge window [mem 0x80000000-0x800fffff]
[    0.316706] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.316712] pci 0000:00:05.0: PCI bridge to [bus 08-08]
[    0.316716] pci 0000:00:05.0:   bridge window [io  0xc000-0xcfff]
[    0.316722] pci 0000:00:05.0:   bridge window [mem 0xd0600000-0xd06fffff]
[    0.316726] pci 0000:00:05.0:   bridge window [mem pref disabled]
[    0.316733] pci 0000:00:14.4: PCI bridge to [bus 09-09]
[    0.316735] pci 0000:00:14.4:   bridge window [io  disabled]
[    0.316746] pci 0000:00:14.4:   bridge window [mem disabled]
[    0.316751] pci 0000:00:14.4:   bridge window [mem pref disabled]
[    0.316773]   alloc irq_desc for 16 on node -1
[    0.316776]   alloc kstat_irqs on node -1
[    0.316786] pci 0000:00:04.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.316790] pci 0000:00:04.0: setting latency timer to 64
[    0.316801]   alloc irq_desc for 17 on node -1
[    0.316804]   alloc kstat_irqs on node -1
[    0.316810] pci 0000:00:05.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    0.316814] pci 0000:00:05.0: setting latency timer to 64
[    0.316826] pci_bus 0000:00: resource 4 [mem 0x000a0000-0x000bffff]
[    0.316830] pci_bus 0000:00: resource 5 [mem 0x80000000-0xdfffffff]
[    0.316834] pci_bus 0000:00: resource 6 [mem 0xf0000000-0xffffffff]
[    0.316838] pci_bus 0000:00: resource 7 [io  0x0000-0x0cf7]
[    0.316842] pci_bus 0000:00: resource 8 [io  0x0d00-0xffff]
[    0.316846] pci_bus 0000:01: resource 0 [io  0x9000-0x9fff]
[    0.316850] pci_bus 0000:01: resource 1 [mem 0xd0400000-0xd05fffff]
[    0.316854] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.316859] pci_bus 0000:02: resource 0 [io  0xa000-0xbfff]
[    0.316863] pci_bus 0000:02: resource 1 [mem 0x80000000-0x800fffff]
[    0.316867] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd03fffff 64bit pref]
[    0.316871] pci_bus 0000:08: resource 0 [io  0xc000-0xcfff]
[    0.316875] pci_bus 0000:08: resource 1 [mem 0xd0600000-0xd06fffff]
[    0.316879] pci_bus 0000:09: resource 4 [mem 0x000a0000-0x000bffff]
[    0.316883] pci_bus 0000:09: resource 5 [mem 0x80000000-0xdfffffff]
[    0.316887] pci_bus 0000:09: resource 6 [mem 0xf0000000-0xffffffff]
[    0.316891] pci_bus 0000:09: resource 7 [io  0x0000-0x0cf7]
[    0.316895] pci_bus 0000:09: resource 8 [io  0x0d00-0xffff]
[    0.316945] NET: Registered protocol family 2
[    0.317032] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.317341] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.318183] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.318613] TCP: Hash tables configured (established 131072 bind 65536)
[    0.318617] TCP reno registered
[    0.318622] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.318638] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.318755] NET: Registered protocol family 1
[    0.318776] pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
[    0.350217] pci 0000:01:05.0: Boot video device
[    0.350234] PCI: CLS 32 bytes, default 64
[    0.350527] cpufreq-nforce2: No nForce2 chipset.
[    0.350566] Scanning for low memory corruption every 60 seconds
[    0.350747] audit: initializing netlink socket (disabled)
[    0.350761] type=2000 audit(1294955033.348:1): initialized
[    0.366213] highmem bounce pool size: 64 pages
[    0.366219] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    0.368132] VFS: Disk quotas dquot_6.5.2
[    0.368213] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.369003] fuse init (API version 7.14)
[    0.369128] msgmni has been set to 1680
[    0.369567] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.369572] io scheduler noop registered
[    0.369575] io scheduler deadline registered
[    0.369596] io scheduler cfq registered (default)
[    0.369743] pcieport 0000:00:04.0: setting latency timer to 64
[    0.369777]   alloc irq_desc for 40 on node -1
[    0.369780]   alloc kstat_irqs on node -1
[    0.369790] pcieport 0000:00:04.0: irq 40 for MSI/MSI-X
[    0.369864] pcieport 0000:00:05.0: setting latency timer to 64
[    0.369894]   alloc irq_desc for 41 on node -1
[    0.369897]   alloc kstat_irqs on node -1
[    0.369904] pcieport 0000:00:05.0: irq 41 for MSI/MSI-X
[    0.370000] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.370028] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.370874] ACPI: AC Adapter [ACAD] (off-line)
[    0.370966] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.370974] ACPI: Power Button [PWRB]
[    0.371058] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
[    0.371555] ACPI: Lid Switch [LID]
[    0.371650] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.371659] ACPI: Power Button [PWRF]
[    0.371977] ACPI: acpi_idle registered with cpuidle
[    0.372010] ACPI: processor limited to max C-state 1
[    0.377330] thermal LNXTHERM:01: registered as thermal_zone0
[    0.377346] ACPI: Thermal Zone [TZ00] (37 C)
[    0.377557] [Firmware Bug]: ERST: ERST table is invalid
[    0.377805] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.379620] brd: module loaded
[    0.380296] loop: module loaded
[    0.380927] Fixed MDIO Bus: probed
[    0.380973] PPP generic driver version 2.4.2
[    0.381015] tun: Universal TUN/TAP device driver, 1.6
[    0.381018] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.381115] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.381177] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.381202] ehci_hcd 0000:00:12.2: EHCI Host Controller
[    0.381243] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
[    0.381284] ehci_hcd 0000:00:12.2: debug port 1
[    0.381313] ehci_hcd 0000:00:12.2: irq 17, io mem 0xd0906000
[    0.381439] isapnp: Scanning for PnP cards...
[    0.435869] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    0.436044] hub 1-0:1.0: USB hub found
[    0.436050] hub 1-0:1.0: 5 ports detected
[    0.436167] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.436180] ehci_hcd 0000:00:13.2: EHCI Host Controller
[    0.436220] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
[    0.436257] ehci_hcd 0000:00:13.2: debug port 1
[    0.436271] ehci_hcd 0000:00:13.2: irq 17, io mem 0xd0906400
[    0.485148] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    0.485304] hub 2-0:1.0: USB hub found
[    0.485309] hub 2-0:1.0: 5 ports detected
[    0.485417] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.485433]   alloc irq_desc for 18 on node -1
[    0.485436]   alloc kstat_irqs on node -1
[    0.485444] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.485457] ohci_hcd 0000:00:12.0: OHCI Host Controller
[    0.485524] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
[    0.485558] ohci_hcd 0000:00:12.0: irq 18, io mem 0xd0904000
[    0.587328] hub 3-0:1.0: USB hub found
[    0.587340] hub 3-0:1.0: 5 ports detected
[    0.587437] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.587450] ohci_hcd 0000:00:13.0: OHCI Host Controller
[    0.587491] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 4
[    0.587516] ohci_hcd 0000:00:13.0: irq 18, io mem 0xd0905000
[    0.683520] hub 4-0:1.0: USB hub found
[    0.683528] hub 4-0:1.0: 5 ports detected
[    0.683613] uhci_hcd: USB Universal Host Controller Interface driver
[    0.683711] PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12
[    0.707793] i8042.c: Detected active multiplexing controller, rev 1.1.
[    0.746346] ACPI: Battery Slot [BAT1] (battery present)
[    0.768992] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.768999] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    0.769035] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    0.769072] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    0.769104] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    0.769225] mice: PS/2 mouse device common for all mice
[    0.769426] rtc_cmos 00:04: RTC can wake from S4
[    0.769473] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    0.769506] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.769644] device-mapper: uevent: version 1.0.3
[    0.816769] isapnp: No Plug & Play device found
[    0.816877] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com
[    0.816982] device-mapper: multipath: version 1.1.1 loaded
[    0.816985] device-mapper: multipath round-robin: version 1.0.0 loaded
[    0.817132] EISA: Probing bus 0 at eisa.0
[    0.817135] EISA: Cannot allocate resource for mainboard
[    0.817138] Cannot allocate resource for EISA slot 1
[    0.817141] Cannot allocate resource for EISA slot 2
[    0.817144] Cannot allocate resource for EISA slot 3
[    0.817146] Cannot allocate resource for EISA slot 4
[    0.817149] Cannot allocate resource for EISA slot 5
[    0.817152] Cannot allocate resource for EISA slot 6
[    0.817154] Cannot allocate resource for EISA slot 7
[    0.817157] Cannot allocate resource for EISA slot 8
[    0.817160] EISA: Detected 0 cards.
[    0.817243] cpuidle: using governor ladder
[    0.817246] cpuidle: using governor menu
[    0.817656] TCP cubic registered
[    0.817827] NET: Registered protocol family 10
[    0.818331] lo: Disabled Privacy Extensions
[    0.818661] NET: Registered protocol family 17
[    0.818699] powernow-k8: Found 1 AMD Athlon(tm) II Neo K325 Dual-Core Processor (2 cpu cores) (version 2.20.00)
[    0.818748] powernow-k8:    0 : pstate 0 (1300 MHz)
[    0.818751] powernow-k8:    1 : pstate 1 (1100 MHz)
[    0.818754] powernow-k8:    2 : pstate 2 (800 MHz)
[    0.819165] Using IPI No-Shortcut mode
[    0.819297] PM: Resume from disk failed.
[    0.819321] registered taskstats version 1
[    0.819612]   Magic number: 11:856:752
[    0.819637] tty ttyS3: hash matches
[    0.819761] rtc_cmos 00:04: setting system clock to 2011-01-13 21:43:55 UTC (1294955035)
[    0.819766] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.819768] EDD information not available.
[    0.843281] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    0.847768] Freeing initrd memory: 15556k freed
[    0.857126] Freeing unused kernel memory: 688k freed
[    0.857793] Write protecting the kernel text: 4936k
[    0.857864] Write protecting the kernel read-only data: 1980k
[    0.893374] udev[78]: starting version 163
[    0.938148] usb 1-5: new high speed USB device using ehci_hcd and address 3
[    0.985672] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    0.985703] r8169 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.985751] r8169 0000:02:00.0: setting latency timer to 64
[    0.985793]   alloc irq_desc for 42 on node -1
[    0.985796]   alloc kstat_irqs on node -1
[    0.985811] r8169 0000:02:00.0: irq 42 for MSI/MSI-X
[    1.023996] r8169 0000:02:00.0: eth0: RTL8168d/8111d at 0xf80aa000, 60:eb:69:03:1e:9a, XID 083000c0 IRQ 42
[    1.091522] usb 1-5: config 1 has an invalid interface number: 1 but max is 0
[    1.091528] usb 1-5: config 1 has no interface number 0
[    1.099788] ahci 0000:00:11.0: version 3.0
[    1.099844]   alloc irq_desc for 19 on node -1
[    1.099848]   alloc kstat_irqs on node -1
[    1.099859] ahci 0000:00:11.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[    1.099918]   alloc irq_desc for 43 on node -1
[    1.099921]   alloc kstat_irqs on node -1
[    1.099934] ahci 0000:00:11.0: irq 43 for MSI/MSI-X
[    1.100021] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[    1.100028] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part sxs 
[    1.104968] [Firmware Bug]: ACPI: ACPI brightness control misses _BQC function
[    1.106461] acpi device:30: registered as cooling_device2
[    1.106822] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:2f/LNXVIDEO:02/input/input4
[    1.106890] ACPI: Video Device [VGA2] (multi-head: yes  rom: no  post: no)
[    1.107133] scsi0 : ahci
[    1.107388] Linux agpgart interface v0.103
[    1.110057] scsi1 : ahci
[    1.110317] ata1: SATA max UDMA/133 abar m1024@0xd0906800 port 0xd0906900 irq 43
[    1.110324] ata2: SATA max UDMA/133 abar m1024@0xd0906800 port 0xd0906980 irq 43
[    1.138166] [drm] Initialized drm 1.1.0 20060810
[    1.205090] usb 2-2: new high speed USB device using ehci_hcd and address 2
[    1.363788] Initializing USB Mass Storage driver...
[    1.363950] scsi2 : usb-storage 2-2:1.0
[    1.364067] usbcore: registered new interface driver usb-storage
[    1.364071] USB Mass Storage support registered.
[    1.428098] ata2: SATA link down (SStatus 0 SControl 300)
[    1.464088] usb 2-3: new high speed USB device using ehci_hcd and address 3
[    1.600050] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.601820] ata1.00: ATA-8: HITACHI HTS545025B9A300, PB2ZC61H, max UDMA/100
[    1.601827] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.603310] ata1.00: configured for UDMA/100
[    1.617330] scsi 0:0:0:0: Direct-Access     ATA      HITACHI HTS54502 PB2Z PQ: 0 ANSI: 5
[    1.617589] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.617665] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    1.617758] sd 0:0:0:0: [sda] Write Protect is off
[    1.617763] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.617790] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.618044]  sda: sda1 sda2
[    1.659054] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.712989] [drm] radeon defaulting to kernel modesetting.
[    1.712994] [drm] radeon kernel modesetting enabled.
[    1.713115] radeon 0000:01:05.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    1.713121] radeon 0000:01:05.0: setting latency timer to 64
[    1.715381] [drm] initializing kernel modesetting (RS880 0x1002:0x9712).
[    1.715579] [drm] register mmio base: 0xD0500000
[    1.715582] [drm] register mmio size: 65536
[    1.715768] ATOM BIOS: Lenovo_PS2A
[    1.715794] [drm] Clocks initialized !
[    1.715807] radeon 0000:01:05.0: VRAM: 256M 0xC0000000 - 0xCFFFFFFF (256M used)
[    1.715812] radeon 0000:01:05.0: GTT: 512M 0xA0000000 - 0xBFFFFFFF
[    1.716281] [drm] Detected VRAM RAM=256M, BAR=256M
[    1.716287] [drm] RAM width 32bits DDR
[    1.716416] [TTM] Zone  kernel: Available graphics memory: 438208 kiB.
[    1.716421] [TTM] Zone highmem: Available graphics memory: 900320 kiB.
[    1.716425] [TTM] Initializing pool allocator.
[    1.716454] [drm] radeon: 256M of VRAM memory ready
[    1.716457] [drm] radeon: 512M of GTT memory ready.
[    1.716505] [drm] radeon: irq initialized.
[    1.716509] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    1.717314] [drm] Loading RS780 Microcode
[    1.761257] [drm] ring test succeeded in 0 usecs
[    1.761523] [drm] radeon: ib pool ready.
[    1.761618] [drm] ib test succeeded in 0 usecs
[    1.761622] [drm] Enabling audio support
[    1.761933] [drm] Unknown TV standard; defaulting to NTSC
[    1.762172] [drm] Radeon Display Connectors
[    1.762175] [drm] Connector 0:
[    1.762177] [drm]   VGA
[    1.762181] [drm]   DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
[    1.762184] [drm]   Encoders:
[    1.762187] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    1.762190] [drm] Connector 1:
[    1.762192] [drm]   LVDS
[    1.762195] [drm]   DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
[    1.762198] [drm]   Encoders:
[    1.762200] [drm]     LCD1: INTERNAL_KLDSCP_LVTMA
[    1.762203] [drm] Connector 2:
[    1.762205] [drm]   HDMI-A
[    1.762207] [drm]   HPD1
[    1.762210] [drm]   DDC: 0x7e20 0x7e20 0x7e24 0x7e24 0x7e28 0x7e28 0x7e2c 0x7e2c
[    1.762213] [drm]   Encoders:
[    1.762215] [drm]     DFP1: INTERNAL_UNIPHY
[    1.824249] [drm] radeon: power management initialized
[    1.865033] usb 3-4: new full speed USB device using ohci_hcd and address 2
[    1.906535] [drm] fb mappable at 0xC0141000
[    1.906540] [drm] vram apper at 0xC0000000
[    1.906543] [drm] size 4325376
[    1.906545] [drm] fb depth is 24
[    1.906547] [drm]    pitch is 5632
[    2.363689] scsi 2:0:0:0: Direct-Access     Generic- Multi-Card       1.00 PQ: 0 ANSI: 0 CCS
[    2.364606] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    2.369131] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[    2.855543] Console: switching to colour frame buffer device 170x48
[    2.870944] fb0: radeondrmfb frame buffer device
[    2.870947] drm: registered panic notifier
[    2.870973] Slow work thread pool: Starting up
[    2.871144] Slow work thread pool: Ready
[    2.871160] [drm] Initialized radeon 2.5.0 20080528 for 0000:01:05.0 on minor 0
[    3.245973] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   12.433657] udev[419]: starting version 163
[   12.531199] Adding 7807584k swap on /dev/sda2.  Priority:-1 extents:1 across:7807584k 
[   12.923768] shpchp 0000:00:01.0: HPC vendor_id 1022 device_id 9602 ss_vid 1022 ss_did 9602
[   12.923777] shpchp 0000:00:01.0: Cannot reserve MMIO region
[   12.923816] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   13.019750] EXT4-fs (sda1): warning: maximal mount count reached, running e2fsck is recommended
[   13.064392] ACPI: resource piix4_smbus [io  0x8040-0x8047] conflicts with ACPI region SMB0 [??? 0x00008040-0x0000804f flags 0x30]
[   13.064398] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   13.065722] type=1400 audit(1294955047.742:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient3" pid=725 comm="apparmor_parser"
[   13.066177] type=1400 audit(1294955047.742:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=725 comm="apparmor_parser"
[   13.066433] type=1400 audit(1294955047.742:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=725 comm="apparmor_parser"
[   13.080257] lp: driver loaded but no devices found
[   13.089793] Non-volatile memory driver v1.3
[   13.110520] usbcore: registered new interface driver usbserial
[   13.110626] USB Serial support registered for generic
[   13.110737] usbcore: registered new interface driver usbserial_generic
[   13.110741] usbserial: USB Serial Driver core
[   13.242471] Linux video capture interface: v2.00
[   13.295452] USB Serial support registered for Qualcomm USB modem
[   13.295490] qcserial 1-5:1.1: Qualcomm USB modem converter detected
[   13.295645] usb 1-5: Qualcomm USB modem converter now attached to ttyUSB0
[   13.295678] usbcore: registered new interface driver qcserial
[   13.316105] uvcvideo: Found UVC 1.00 device Integrated Camera (04f2:b1b4)
[   13.317411] input: Integrated Camera as /devices/pci0000:00/0000:00:13.2/usb2/2-3/2-3:1.0/input/input5
[   13.317492] usbcore: registered new interface driver uvcvideo
[   13.317495] USB Video Class driver (v0.1.0)
[   13.357192] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   13.370842] Bluetooth: Core ver 2.15
[   13.370906] NET: Registered protocol family 31
[   13.370910] Bluetooth: HCI device and connection manager initialized
[   13.370915] Bluetooth: HCI socket layer initialized
[   13.409085] Bluetooth: Generic Bluetooth USB driver ver 0.6
[   13.409286] usbcore: registered new interface driver btusb
[   13.775077] type=1400 audit(1294955048.450:5): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=940 comm="apparmor_parser"
[   13.775320] type=1400 audit(1294955048.450:6): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=941 comm="apparmor_parser"
[   13.775784] type=1400 audit(1294955048.450:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=941 comm="apparmor_parser"
[   13.776201] type=1400 audit(1294955048.450:8): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=941 comm="apparmor_parser"
[   13.782387] type=1400 audit(1294955048.458:9): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=945 comm="apparmor_parser"
[   13.782980] type=1400 audit(1294955048.458:10): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=945 comm="apparmor_parser"
[   13.786710] type=1400 audit(1294955048.462:11): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=946 comm="apparmor_parser"
[   13.824698] r8169 0000:02:00.0: eth0: link down
[   13.825143] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   14.105203] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   14.192847] thinkpad_acpi: ThinkPad ACPI Extras v0.24
[   14.192852] thinkpad_acpi: http://ibm-acpi.sf.net/
[   14.192856] thinkpad_acpi: ThinkPad BIOS 87ET34WW (1.08 ), EC 87HT20WW-1.165000
[   14.192860] thinkpad_acpi: Lenovo ThinkPad Edge, model 254523U
[   14.199686] thinkpad_acpi: detected a 16-level brightness capable ThinkPad
[   14.201939] thinkpad_acpi: radio switch found; radios are enabled
[   14.202005] thinkpad_acpi: possible tablet mode switch found; ThinkPad in laptop mode
[   14.202032] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
[   14.202036] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
[   14.205617] thinkpad_acpi: asked for hotkey mask 0x04000070, but firmware forced it to 0x00000070
[   14.238730] HDA Intel 0000:01:05.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[   14.238794] HDA Intel 0000:01:05.1: setting latency timer to 64
[   14.245085] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
[   14.269591] Bluetooth: L2CAP ver 2.14
[   14.269596] Bluetooth: L2CAP socket layer initialized
[   14.279741] thinkpad_acpi: rfkill switch tpacpi_wwan_sw: radio is unblocked
[   14.279815] Registered led device: tpacpi::thinklight
[   14.279848] Registered led device: tpacpi::power
[   14.279870] Registered led device: tpacpi::standby
[   14.279893] Registered led device: tpacpi::thinkvantage
[   14.291684] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one.
[   14.291854] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
[   14.294959] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_delete_codec_preset
[   14.294965] snd_hda_codec_atihdmi: Unknown symbol snd_hda_delete_codec_preset (err -22)
[   14.295100] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_multi_out_dig_open
[   14.295105] snd_hda_codec_atihdmi: Unknown symbol snd_hda_multi_out_dig_open (err -22)
[   14.295256] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_multi_out_dig_close
[   14.295261] snd_hda_codec_atihdmi: Unknown symbol snd_hda_multi_out_dig_close (err -22)
[   14.295400] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_sequence_write
[   14.295404] snd_hda_codec_atihdmi: Unknown symbol snd_hda_sequence_write (err -22)
[   14.295543] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_codec_write
[   14.295547] snd_hda_codec_atihdmi: Unknown symbol snd_hda_codec_write (err -22)
[   14.295687] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_add_codec_preset
[   14.295691] snd_hda_codec_atihdmi: Unknown symbol snd_hda_add_codec_preset (err -22)
[   14.295845] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_create_spdif_out_ctls
[   14.295849] snd_hda_codec_atihdmi: Unknown symbol snd_hda_create_spdif_out_ctls (err -22)
[   14.296000] snd_hda_codec_atihdmi: disagrees about version of symbol snd_hda_multi_out_dig_prepare
[   14.296004] snd_hda_codec_atihdmi: Unknown symbol snd_hda_multi_out_dig_prepare (err -22)
[   14.301648] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input6
[   14.457634] Synaptics Touchpad, model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd047b1/0xb40000/0xa0000
[   14.457643] serio: Synaptics pass-through port at isa0060/serio4/input0
[   14.461680] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   14.461683] Bluetooth: BNEP filters: protocol multicast
[   14.498797] Bluetooth: SCO (Voice Link) ver 0.6
[   14.498803] Bluetooth: SCO socket layer initialized
[   14.511389] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input7
[   14.706812] ppdev: user-space parallel port driver
[   14.807993] Bluetooth: RFCOMM TTY layer initialized
[   14.808004] Bluetooth: RFCOMM socket layer initialized
[   14.808008] Bluetooth: RFCOMM ver 1.11
[   15.839392] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=600
[   17.569188] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=600
[   17.636457] hda-intel: IRQ timing workaround is activated for card #1. Suggest a bigger bdl_pos_adj.
[   17.676478] psmouse serio5: ID: 10 00 64
[   22.105458] IBM TrackPoint firmware: 0x0e, buttons: 3/3
[   22.397668] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio4/serio5/input/input8
[   62.235452] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=0
[   63.338735] usb 3-4: USB disconnect, address 2
[   63.338982] btusb_intr_complete: hci0 urb f2881b80 failed to resubmit (19)
[   63.338993] btusb_bulk_complete: hci0 urb f2881d00 failed to resubmit (19)
[   63.340001] btusb_bulk_complete: hci0 urb f2881800 failed to resubmit (19)
[   63.340997] btusb_send_frame: hci0 urb f2b81080 submission failed
[   63.740532] PM: Syncing filesystems ... done.
[   63.743473] PM: Preparing system for mem sleep
[   63.972553] Freezing user space processes ... (elapsed 0.01 seconds) done.
[   63.989093] Freezing remaining freezable tasks ... (elapsed 0.03 seconds) done.
[   64.020113] PM: Entering mem sleep
[   64.020139] Suspending console(s) (use no_console_suspend to debug)
[   64.205863] PM: suspend of drv:psmouse dev:serio5 complete after 185.483 msecs
[   64.206061] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[   64.206178] sd 0:0:0:0: [sda] Stopping disk
[   64.262844] ACPI handle has no context!
[   64.263440] ohci_hcd 0000:00:13.0: PCI INT A disabled
[   64.263479] ohci_hcd 0000:00:12.0: PCI INT A disabled
[   64.276085] ehci_hcd 0000:00:13.2: PCI INT B disabled
[   64.276108] ehci_hcd 0000:00:12.2: PCI INT B disabled
[   64.365111] HDA Intel 0000:01:05.1: PCI INT B disabled
[   64.365136] ACPI handle has no context!
[   64.366035] HDA Intel 0000:00:14.2: PCI INT A disabled
[   64.381063] PM: suspend of drv:HDA Intel dev:0000:01:05.1 complete after 118.121 msecs
[   64.381133] PM: suspend of drv:HDA Intel dev:0000:00:14.2 complete after 117.783 msecs
[   64.653650] PM: suspend of drv:sd dev:0:0:0:0 complete after 447.589 msecs
[   64.653695] PM: suspend of drv:scsi dev:target0:0:0 complete after 447.538 msecs
[   64.653718] PM: suspend of drv:scsi dev:host0 complete after 447.355 msecs
[   64.701187] PM: suspend of drv:ahci dev:0000:00:11.0 complete after 437.683 msecs
[   65.292158] [drm] Disabling audio support
[   65.407462] radeon 0000:01:05.0: PCI INT A disabled
[   65.420079] PM: suspend of drv:radeon dev:0000:01:05.0 complete after 1157.090 msecs
[   65.420123] PM: suspend of drv:pci dev:0000:00:01.0 complete after 1156.570 msecs
[   65.420152] PM: suspend of drv: dev:pci0000:00 complete after 1156.349 msecs
[   65.420161] PM: suspend of devices complete after 1399.795 msecs
[   65.420166] PM: suspend devices took 1.400 seconds
[   65.420385] r8169 0000:02:00.0: PME# enabled
[   65.420403] pcieport 0000:00:04.0: wake-up capability enabled by ACPI
[   65.468172] PM: late suspend of devices complete after 47.996 msecs
[   65.488173] ACPI: Preparing to enter system sleep state S3
[   65.600229] PM: Saving platform NVS memory
[   65.602857] Disabling non-boot CPUs ...
[   65.603042] Broke affinity for irq 1
[   65.603059] Broke affinity for irq 9
[   65.603068] Broke affinity for irq 12
[   65.604102] CPU 1 is now offline
[   65.604106] SMP alternatives: switching to UP code
[   65.610471] Extended CMOS year: 2000
[   65.610471] Back to C!
[   65.610471] PM: Restoring platform NVS memory
[   65.610471] Extended CMOS year: 2000
[   65.610471] Enabling non-boot CPUs ...
[   65.610471] SMP alternatives: switching to SMP code
[   65.616498] Booting Node 0 Processor 1 APIC 0x1
[   65.609962] Initializing CPU#1
[   65.724238] Switch to broadcast mode on CPU1
[   65.756479] CPU1 is up
[   65.756799] ACPI: Waking up from system sleep state S3
[   65.925337] pci 0000:00:01.0: restoring config space at offset 0x9 (was 0x10001, writing 0xcff1c001)
[   65.925374] pcieport 0000:00:04.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10008)
[   65.925416] pcieport 0000:00:05.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10008)
[   65.925473] ahci 0000:00:11.0: restoring config space at offset 0x1 (was 0x2300007, writing 0x2300407)
[   65.940088] ehci_hcd 0000:00:12.2: BAR 0: set to [mem 0xd0906000-0xd09060ff] (PCI address [0xd0906000-0xd09060ff]
[   65.940125] ehci_hcd 0000:00:12.2: restoring config space at offset 0x1 (was 0x2b00000, writing 0x2b00013)
[   65.956091] ehci_hcd 0000:00:13.2: BAR 0: set to [mem 0xd0906400-0xd09064ff] (PCI address [0xd0906400-0xd09064ff]
[   65.956129] ehci_hcd 0000:00:13.2: restoring config space at offset 0x1 (was 0x2b00000, writing 0x2b00013)
[   65.956181] HDA Intel 0000:00:14.2: restoring config space at offset 0xf (was 0x10b, writing 0xb)
[   65.956205] HDA Intel 0000:00:14.2: restoring config space at offset 0x1 (was 0x4100006, writing 0x4100002)
[   65.956341] HDA Intel 0000:01:05.1: restoring config space at offset 0xf (was 0x2ff, writing 0x205)
[   65.956355] HDA Intel 0000:01:05.1: restoring config space at offset 0x4 (was 0x0, writing 0xd0510000)
[   65.956360] HDA Intel 0000:01:05.1: restoring config space at offset 0x3 (was 0x800000, writing 0x800008)
[   65.956367] HDA Intel 0000:01:05.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100003)
[   65.956402] r8169 0000:02:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10b)
[   65.956416] r8169 0000:02:00.0: restoring config space at offset 0x8 (was 0xc, writing 0xd000000c)
[   65.956424] r8169 0000:02:00.0: restoring config space at offset 0x6 (was 0xc, writing 0xd020000c)
[   65.956431] r8169 0000:02:00.0: restoring config space at offset 0x4 (was 0x1, writing 0xbc01)
[   65.956437] r8169 0000:02:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x8)
[   65.956445] r8169 0000:02:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[   65.956511] pci 0000:08:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10a)
[   65.956531] pci 0000:08:00.0: restoring config space at offset 0x6 (was 0x4, writing 0xd0600004)
[   65.956541] pci 0000:08:00.0: restoring config space at offset 0x4 (was 0x1, writing 0xc001)
[   65.956549] pci 0000:08:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x8)
[   65.956557] pci 0000:08:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[   65.956666] PM: early resume of devices complete after 31.397 msecs
[   65.956885] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[   65.956911] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[   65.957027] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[   65.957107] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[   65.957118] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   65.957190] radeon 0000:01:05.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[   65.957196] HDA Intel 0000:01:05.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[   65.957201] radeon 0000:01:05.0: setting latency timer to 64
[   65.957206] HDA Intel 0000:01:05.1: setting latency timer to 64
[   65.957242] pcieport 0000:00:04.0: wake-up capability disabled by ACPI
[   65.957248] r8169 0000:02:00.0: PME# disabled
[   65.958073] [drm] Clocks initialized !
[   66.002707] sd 0:0:0:0: [sda] Starting disk
[   66.031444] [drm] ring test succeeded in 0 usecs
[   66.031465] [drm] ib test succeeded in 0 usecs
[   66.031468] [drm] Enabling audio support
[   66.125083] PM: resume of drv:usb dev:usb1 complete after 130.243 msecs
[   66.125124] PM: resume of drv:hub dev:1-0:1.0 complete after 130.277 msecs
[   66.133086] PM: resume of drv:usb dev:usb2 complete after 138.212 msecs
[   66.133127] PM: resume of drv:hub dev:2-0:1.0 complete after 138.235 msecs
[   66.134063] i8042.c: i8042 controller selftest failed. (0xe0 != 0x55)
[   66.237085] usb 1-5: reset high speed USB device using ehci_hcd and address 3
[   66.308084] ata2: SATA link down (SStatus 0 SControl 300)
[   66.371885] qcserial 1-5:1.1: no reset_resume for driver qcserial?
[   66.372042] qcserial ttyUSB0: Qualcomm USB modem converter now disconnected from ttyUSB0
[   66.372057] qcserial 1-5:1.1: device disconnected
[   66.372065] PM: resume of drv:usb dev:1-5 complete after 369.664 msecs
[   66.372102] PM: resume of drv:usb dev:1-5:1.1 complete after 369.678 msecs
[   66.372123] PM: resume of drv: dev:ep_81 complete after 171.681 msecs
[   66.481084] usb 2-3: reset high speed USB device using ehci_hcd and address 3
[   66.701089] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[   66.717685] ata1.00: configured for UDMA/100
[   66.725089] usb 2-2: reset high speed USB device using ehci_hcd and address 2
[   66.759631] PM: resume of drv:sd dev:0:0:0:0 complete after 756.919 msecs
[   66.759668] PM: resume of drv:scsi_device dev:0:0:0:0 complete after 756.907 msecs
[   66.868057] PM: resume of drv:usb dev:2-2 complete after 865.609 msecs
[   66.868096] PM: resume of drv:usb-storage dev:2-2:1.0 complete after 865.627 msecs
[   66.868117] PM: resume of drv:scsi dev:host2 complete after 865.634 msecs
[   66.868134] PM: resume of drv: dev:ep_01 complete after 495.995 msecs
[   66.868139] PM: resume of drv:scsi dev:target2:0:0 complete after 865.363 msecs
[   66.868147] PM: resume of drv:scsi_host dev:host2 complete after 865.647 msecs
[   66.868163] PM: resume of drv:sd dev:2:0:0:0 complete after 865.366 msecs
[   66.868175] PM: resume of drv:scsi_device dev:2:0:0:0 complete after 865.357 msecs
[   67.057069] [drm:atom_op_jump] *ERROR* atombios stuck in loop for more than 1sec aborting
[   67.057076] [drm:atom_execute_table_locked] *ERROR* atombios stuck executing E96A (len 498, WS 0, PS 4) @ 0xE9AB
[   67.140771] PM: resume of drv:usb dev:2-3 complete after 1138.249 msecs
[   67.140810] PM: resume of drv:uvcvideo dev:2-3:1.0 complete after 1138.268 msecs
[   67.140818] PM: resume of drv:uvcvideo dev:2-3:1.1 complete after 1138.122 msecs
[   67.140834] PM: resume of drv: dev:ep_83 complete after 272.691 msecs
[   68.077073] [drm:atom_op_jump] *ERROR* atombios stuck in loop for more than 1sec aborting
[   68.077080] [drm:atom_execute_table_locked] *ERROR* atombios stuck executing E96A (len 498, WS 0, PS 4) @ 0xE9AB
[   68.089116] PM: resume of drv:radeon dev:0000:01:05.0 complete after 2131.927 msecs
[   68.089157] PM: resume of drv:drm dev:controlD64 complete after 948.302 msecs
[   68.097799] PM: resume of devices complete after 2141.060 msecs
[   68.097893] qcserial 1-5:1.1: Qualcomm USB modem converter detected
[   68.098039] usb 1-5: Qualcomm USB modem converter now attached to ttyUSB1
[   68.098190] PM: resume devices took 2.140 seconds
[   68.099192] PM: Finishing wakeup.
[   68.099194] Restarting tasks ... done.
[   68.135083] video LNXVIDEO:02: Restoring backlight state
[   68.142416] [drm:drm_mode_getfb] *ERROR* invalid framebuffer id
[   68.220670] r8169 0000:02:00.0: eth0: link down
[   68.220987] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   68.873052] usb 3-4: new full speed USB device using ohci_hcd and address 3
[   69.475169] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=600

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 21:30                               ` Thomas Gleixner
@ 2011-01-13 21:48                                 ` Borislav Petkov
  2011-01-13 22:55                                   ` Thomas Gleixner
  0 siblings, 1 reply; 33+ messages in thread
From: Borislav Petkov @ 2011-01-13 21:48 UTC (permalink / raw)
  To: Thomas Gleixner
  Cc: Matthew Garrett, Manoj Iyer, linux-kernel, Rafael J. Wysocki,
	Herrmann3, Andreas

On Thu, Jan 13, 2011 at 04:30:43PM -0500, Thomas Gleixner wrote:
> The more interesting info is there in Manoj's logs:
> 
> [    0.036455] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
> [    0.040000] ..MP-BIOS bug: 8254 timer not connected to IO-APIC
> [    0.040000] ...trying to set up timer (IRQ0) through the 8259A ...
> [    0.040000] ..... (found apic 0 pin 0) ...
> [    0.080021] ....... works.
> 
> versus
> 
> [    0.036460] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
> 
> So the "working" state is using "apic 0 pin 0" while the non working
> state is using "vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1".
> 
> Something changes across suspend/resume which makes the BIOS
> advertised routing work with PIT but not with HPET. Further why does
> the apic 0/0 solution found by the kernel (when ignoring BIOS) works
> always (except that we don't know whether the "nohpet" case works as
> well, but I bet it does).

Yes, it does. With "nohpet" we use PIT and PIT obviously works.

> So we are back to the question I raised above: What changes and even
> more interesting what changes after the HPET expires - which we know
> for sure that it must happen as otherwise we wont get a HPET interrupt
> after the 32bit wraparound.
> 
> We need answers to these questions before applying any
> patch/workaround/quirk or whatever.

Well, this is easily answered in the theoretical sense, without the
actual details :):

1. HPET gets reinitialized first
2. Something programs it
3. Timer expires but timer IRQ routing is still wrong and "Something"
   doesn't get its IRQ.
4. Timer IRQ routing gets "fixed" as part of the resume path.

... we end up waiting for the counter to wraparound and get an IRQ which
gets delivered this time.

Does that make sense at all?

-- 
Regards/Gruss,
Boris.

Advanced Micro Devices GmbH
Einsteinring 24, 85609 Dornach
General Managers: Alberto Bozzo, Andrew Bowd
Registration: Dornach, Gemeinde Aschheim, Landkreis Muenchen
Registergericht Muenchen, HRB Nr. 43632

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 21:48                                   ` Manoj Iyer
@ 2011-01-13 22:40                                     ` Thomas Gleixner
  0 siblings, 0 replies; 33+ messages in thread
From: Thomas Gleixner @ 2011-01-13 22:40 UTC (permalink / raw)
  To: Manoj Iyer
  Cc: Borislav Petkov, Matthew Garrett, linux-kernel,
	Rafael J. Wysocki, Herrmann3, Andreas

On Thu, 13 Jan 2011, Manoj Iyer wrote:

> Thomas,
> 
> Attached are 2 dmesg outputs
> 
> 1. dmesg output after boot with the patch applied.
> 2. dmesg output after suspend/resume with patch applied.

I don't see any of the pr_debug printks at all.

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 21:48                                 ` Borislav Petkov
@ 2011-01-13 22:55                                   ` Thomas Gleixner
  2011-01-14 19:55                                     ` Manoj Iyer
  0 siblings, 1 reply; 33+ messages in thread
From: Thomas Gleixner @ 2011-01-13 22:55 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: Matthew Garrett, Manoj Iyer, linux-kernel, Rafael J. Wysocki,
	Herrmann3, Andreas

On Thu, 13 Jan 2011, Borislav Petkov wrote:
> On Thu, Jan 13, 2011 at 04:30:43PM -0500, Thomas Gleixner wrote:
> > The more interesting info is there in Manoj's logs:
> > 
> > [    0.036455] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
> > [    0.040000] ..MP-BIOS bug: 8254 timer not connected to IO-APIC
> > [    0.040000] ...trying to set up timer (IRQ0) through the 8259A ...
> > [    0.040000] ..... (found apic 0 pin 0) ...
> > [    0.080021] ....... works.
> > 
> > versus
> > 
> > [    0.036460] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
> > 
> > So the "working" state is using "apic 0 pin 0" while the non working
> > state is using "vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1".
> > 
> > Something changes across suspend/resume which makes the BIOS
> > advertised routing work with PIT but not with HPET. Further why does
> > the apic 0/0 solution found by the kernel (when ignoring BIOS) works
> > always (except that we don't know whether the "nohpet" case works as
> > well, but I bet it does).
> 
> Yes, it does. With "nohpet" we use PIT and PIT obviously works.

No. We have no prove that acpi_skip_timer_override and nohpet work
together :)

> > So we are back to the question I raised above: What changes and even
> > more interesting what changes after the HPET expires - which we know
> > for sure that it must happen as otherwise we wont get a HPET interrupt
> > after the 32bit wraparound.
> > 
> > We need answers to these questions before applying any
> > patch/workaround/quirk or whatever.
> 
> Well, this is easily answered in the theoretical sense, without the
> actual details :):
> 
> 1. HPET gets reinitialized first
> 2. Something programs it
> 3. Timer expires but timer IRQ routing is still wrong and "Something"
>    doesn't get its IRQ.
> 4. Timer IRQ routing gets "fixed" as part of the resume path.
> 
> ... we end up waiting for the counter to wraparound and get an IRQ which
> gets delivered this time.
> 
> Does that make sense at all?

Yes, that's what I figured, but we need some explanation WHY this is
"working" magically. Once we have that we can fix the issue at hand
w/o applying random quirks.

Thanks,

	tglx

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-13 22:55                                   ` Thomas Gleixner
@ 2011-01-14 19:55                                     ` Manoj Iyer
  2011-01-14 21:41                                       ` Borislav Petkov
  2011-01-28 17:59                                       ` Andreas Herrmann
  0 siblings, 2 replies; 33+ messages in thread
From: Manoj Iyer @ 2011-01-14 19:55 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: Matthew Garrett, linux-kernel, Rafael J. Wysocki, Herrmann3,
	Andreas, Thomas Gleixner

Borislav,

Any more thoughts on this one ?

Many Thanks
Manoj

On Thu, Jan 13, 2011 at 4:55 PM, Thomas Gleixner <tglx@linutronix.de> wrote:
> On Thu, 13 Jan 2011, Borislav Petkov wrote:
>> On Thu, Jan 13, 2011 at 04:30:43PM -0500, Thomas Gleixner wrote:
>> > The more interesting info is there in Manoj's logs:
>> >
>> > [    0.036455] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
>> > [    0.040000] ..MP-BIOS bug: 8254 timer not connected to IO-APIC
>> > [    0.040000] ...trying to set up timer (IRQ0) through the 8259A ...
>> > [    0.040000] ..... (found apic 0 pin 0) ...
>> > [    0.080021] ....... works.
>> >
>> > versus
>> >
>> > [    0.036460] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
>> >
>> > So the "working" state is using "apic 0 pin 0" while the non working
>> > state is using "vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1".
>> >
>> > Something changes across suspend/resume which makes the BIOS
>> > advertised routing work with PIT but not with HPET. Further why does
>> > the apic 0/0 solution found by the kernel (when ignoring BIOS) works
>> > always (except that we don't know whether the "nohpet" case works as
>> > well, but I bet it does).
>>
>> Yes, it does. With "nohpet" we use PIT and PIT obviously works.
>
> No. We have no prove that acpi_skip_timer_override and nohpet work
> together :)
>
>> > So we are back to the question I raised above: What changes and even
>> > more interesting what changes after the HPET expires - which we know
>> > for sure that it must happen as otherwise we wont get a HPET interrupt
>> > after the 32bit wraparound.
>> >
>> > We need answers to these questions before applying any
>> > patch/workaround/quirk or whatever.
>>
>> Well, this is easily answered in the theoretical sense, without the
>> actual details :):
>>
>> 1. HPET gets reinitialized first
>> 2. Something programs it
>> 3. Timer expires but timer IRQ routing is still wrong and "Something"
>>    doesn't get its IRQ.
>> 4. Timer IRQ routing gets "fixed" as part of the resume path.
>>
>> ... we end up waiting for the counter to wraparound and get an IRQ which
>> gets delivered this time.
>>
>> Does that make sense at all?
>
> Yes, that's what I figured, but we need some explanation WHY this is
> "working" magically. Once we have that we can fix the issue at hand
> w/o applying random quirks.
>
> Thanks,
>
>        tglx
>



-- 
--manjo

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-14 19:55                                     ` Manoj Iyer
@ 2011-01-14 21:41                                       ` Borislav Petkov
  2011-01-28 17:59                                       ` Andreas Herrmann
  1 sibling, 0 replies; 33+ messages in thread
From: Borislav Petkov @ 2011-01-14 21:41 UTC (permalink / raw)
  To: Manoj Iyer
  Cc: Matthew Garrett, linux-kernel, Rafael J. Wysocki, Herrmann3,
	Andreas, Thomas Gleixner

On Fri, Jan 14, 2011 at 02:55:30PM -0500, Manoj Iyer wrote:
> Borislav,
> 
> Any more thoughts on this one ?

We're working on it but it takes a little time. I'll get back to you
after I have something.

Thanks.

-- 
Regards/Gruss,
Boris.

Advanced Micro Devices GmbH
Einsteinring 24, 85609 Dornach
General Managers: Alberto Bozzo, Andrew Bowd
Registration: Dornach, Gemeinde Aschheim, Landkreis Muenchen
Registergericht Muenchen, HRB Nr. 43632

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-14 19:55                                     ` Manoj Iyer
  2011-01-14 21:41                                       ` Borislav Petkov
@ 2011-01-28 17:59                                       ` Andreas Herrmann
  2011-01-31 16:44                                         ` Manoj Iyer
  1 sibling, 1 reply; 33+ messages in thread
From: Andreas Herrmann @ 2011-01-28 17:59 UTC (permalink / raw)
  To: Manoj Iyer, James C. Georgas
  Cc: Borislav Petkov, Matthew Garrett, linux-kernel,
	Rafael J. Wysocki, Thomas Gleixner

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

On Fri, Jan 14, 2011 at 02:55:30PM -0500, Manoj Iyer wrote:
> Borislav,
> 
> Any more thoughts on this one ?

Seems that we've identified the root cause.

I wondered why systems with the problem have configured IOAPIC pin
with polarity=1 (low active).  That was different to what the working
systems used.

Switching the configuration to the usual polarity=0 (high active)
fixed the issue.

The explanation is that when hpet interrupt is triggerd, signal goes
from low to high. (AFAIK HPET spec even mentions that HPET interrupts
are all active high.)

Now if IO-APIC pin is configured as low active it just ignores this
signal change. It just triggers later when for next interrupt signal
will go from high to low and high again. (That happens the first time
after resume when the HPET counter wrapped around.) 

Setting the correct polarity fixes the detection of the first hpet
interrupt after resume.

To confirm that your systems behave similar you should boot with
"apic=debug" kernel parameter. The output for IO APIC should show
polarity=1 for IO APIC pin 2, e.g.

  [    0.158179] IO APIC #2......
   ...
  [    0.158205]  NR Dst Mask Trig IRR Pol Stat Dmod Deli Vect:
  [    0.158210]  00 000 1    0    0   0   0    0    0    00
  [    0.158217]  01 003 0    0    0   0   0    1    1    31
  [    0.158224]  02 003 0    0    0   1   0    1    1    30

Furthermore you can check with attached test patch whether changing
the polarity fixes the problem on your system. IO APIC debug output
with this patch should change to

  [    0.156170] IO APIC #2......
   ...
  [    0.156197]  NR Dst Mask Trig IRR Pol Stat Dmod Deli Vect:
  [    0.156202]  00 000 1    0    0   0   0    0    0    00
  [    0.156209]  01 003 0    0    0   0   0    1    1    31
  [    0.156216]  02 003 0    0    0   0   0    1    1    30


I'll come up with an SB800 quirk asap. (Of course we'll also try to
fix the respective BIOSes but too often BIOS updates are only
available for a limited time period.)


Regards,

Andreas

-- 
Operating | Advanced Micro Devices GmbH
  System  | Einsteinring 24, 85609 Dornach b. München, Germany
 Research | Geschäftsführer: Alberto Bozzo, Andrew Bowd
  Center  | Sitz: Dornach, Gemeinde Aschheim, Landkreis München
  (OSRC)  | Registergericht München, HRB Nr. 43632

[-- Attachment #2: polarity-fix.diff --]
[-- Type: text/plain, Size: 549 bytes --]

diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
index 697dc34..9bf2b87 100644
--- a/arch/x86/kernel/apic/io_apic.c
+++ b/arch/x86/kernel/apic/io_apic.c
@@ -1365,6 +1365,10 @@ static void setup_ioapic_irq(int apic_id, int pin, unsigned int irq,
 		    apic_id, mp_ioapics[apic_id].apicid, pin, cfg->vector,
 		    irq, trigger, polarity);
 
+	if (pin == 2) {
+		polarity = 0;
+		trigger = 0;
+	}
 
 	if (setup_ioapic_entry(mp_ioapics[apic_id].apicid, irq, &entry,
 			       dest, trigger, polarity, cfg->vector, pin)) {

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-28 17:59                                       ` Andreas Herrmann
@ 2011-01-31 16:44                                         ` Manoj Iyer
  2011-01-31 17:54                                           ` Manoj Iyer
  0 siblings, 1 reply; 33+ messages in thread
From: Manoj Iyer @ 2011-01-31 16:44 UTC (permalink / raw)
  To: Andreas Herrmann
  Cc: James C. Georgas, Borislav Petkov, Matthew Garrett, linux-kernel,
	Rafael J. Wysocki, Thomas Gleixner

Sorry, I was not able to get to this last week, I will test your patch
today and reply by EOBD today.

On Fri, Jan 28, 2011 at 11:59 AM, Andreas Herrmann
<andreas.herrmann3@amd.com> wrote:
> On Fri, Jan 14, 2011 at 02:55:30PM -0500, Manoj Iyer wrote:
>> Borislav,
>>
>> Any more thoughts on this one ?
>
> Seems that we've identified the root cause.
>
> I wondered why systems with the problem have configured IOAPIC pin
> with polarity=1 (low active).  That was different to what the working
> systems used.
>
> Switching the configuration to the usual polarity=0 (high active)
> fixed the issue.
>
> The explanation is that when hpet interrupt is triggerd, signal goes
> from low to high. (AFAIK HPET spec even mentions that HPET interrupts
> are all active high.)
>
> Now if IO-APIC pin is configured as low active it just ignores this
> signal change. It just triggers later when for next interrupt signal
> will go from high to low and high again. (That happens the first time
> after resume when the HPET counter wrapped around.)
>
> Setting the correct polarity fixes the detection of the first hpet
> interrupt after resume.
>
> To confirm that your systems behave similar you should boot with
> "apic=debug" kernel parameter. The output for IO APIC should show
> polarity=1 for IO APIC pin 2, e.g.
>
>  [    0.158179] IO APIC #2......
>   ...
>  [    0.158205]  NR Dst Mask Trig IRR Pol Stat Dmod Deli Vect:
>  [    0.158210]  00 000 1    0    0   0   0    0    0    00
>  [    0.158217]  01 003 0    0    0   0   0    1    1    31
>  [    0.158224]  02 003 0    0    0   1   0    1    1    30
>
> Furthermore you can check with attached test patch whether changing
> the polarity fixes the problem on your system. IO APIC debug output
> with this patch should change to
>
>  [    0.156170] IO APIC #2......
>   ...
>  [    0.156197]  NR Dst Mask Trig IRR Pol Stat Dmod Deli Vect:
>  [    0.156202]  00 000 1    0    0   0   0    0    0    00
>  [    0.156209]  01 003 0    0    0   0   0    1    1    31
>  [    0.156216]  02 003 0    0    0   0   0    1    1    30
>
>
> I'll come up with an SB800 quirk asap. (Of course we'll also try to
> fix the respective BIOSes but too often BIOS updates are only
> available for a limited time period.)
>
>
> Regards,
>
> Andreas
>
> --
> Operating | Advanced Micro Devices GmbH
>  System  | Einsteinring 24, 85609 Dornach b. München, Germany
>  Research | Geschäftsführer: Alberto Bozzo, Andrew Bowd
>  Center  | Sitz: Dornach, Gemeinde Aschheim, Landkreis München
>  (OSRC)  | Registergericht München, HRB Nr. 43632
>



-- 
-----------------------------------------------------
Manoj Iyer
Ubuntu/Canonical Kernel Developer
Hardware Enablement Team
------------------------------------------------------

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

* Re: [PATCH] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15
  2011-01-31 16:44                                         ` Manoj Iyer
@ 2011-01-31 17:54                                           ` Manoj Iyer
  0 siblings, 0 replies; 33+ messages in thread
From: Manoj Iyer @ 2011-01-31 17:54 UTC (permalink / raw)
  To: Andreas Herrmann
  Cc: James C. Georgas, Borislav Petkov, Matthew Garrett, linux-kernel,
	Rafael J. Wysocki, Thomas Gleixner

Andreas,

I tested your patch on a ThinkPad Edge 14, I only tested if the
machines was able to suspend and resume without delay, in that respect
I think your test patch works well. Please let me know when you have
your final patch ready I will be happy to test it and report back to
you.

On Mon, Jan 31, 2011 at 10:44 AM, Manoj Iyer <manoj.iyer@canonical.com> wrote:
> Sorry, I was not able to get to this last week, I will test your patch
> today and reply by EOBD today.
>
> On Fri, Jan 28, 2011 at 11:59 AM, Andreas Herrmann
> <andreas.herrmann3@amd.com> wrote:
>> On Fri, Jan 14, 2011 at 02:55:30PM -0500, Manoj Iyer wrote:
>>> Borislav,
>>>
>>> Any more thoughts on this one ?
>>
>> Seems that we've identified the root cause.
>>
>> I wondered why systems with the problem have configured IOAPIC pin
>> with polarity=1 (low active).  That was different to what the working
>> systems used.
>>
>> Switching the configuration to the usual polarity=0 (high active)
>> fixed the issue.
>>
>> The explanation is that when hpet interrupt is triggerd, signal goes
>> from low to high. (AFAIK HPET spec even mentions that HPET interrupts
>> are all active high.)
>>
>> Now if IO-APIC pin is configured as low active it just ignores this
>> signal change. It just triggers later when for next interrupt signal
>> will go from high to low and high again. (That happens the first time
>> after resume when the HPET counter wrapped around.)
>>
>> Setting the correct polarity fixes the detection of the first hpet
>> interrupt after resume.
>>
>> To confirm that your systems behave similar you should boot with
>> "apic=debug" kernel parameter. The output for IO APIC should show
>> polarity=1 for IO APIC pin 2, e.g.
>>
>>  [    0.158179] IO APIC #2......
>>   ...
>>  [    0.158205]  NR Dst Mask Trig IRR Pol Stat Dmod Deli Vect:
>>  [    0.158210]  00 000 1    0    0   0   0    0    0    00
>>  [    0.158217]  01 003 0    0    0   0   0    1    1    31
>>  [    0.158224]  02 003 0    0    0   1   0    1    1    30
>>
>> Furthermore you can check with attached test patch whether changing
>> the polarity fixes the problem on your system. IO APIC debug output
>> with this patch should change to
>>
>>  [    0.156170] IO APIC #2......
>>   ...
>>  [    0.156197]  NR Dst Mask Trig IRR Pol Stat Dmod Deli Vect:
>>  [    0.156202]  00 000 1    0    0   0   0    0    0    00
>>  [    0.156209]  01 003 0    0    0   0   0    1    1    31
>>  [    0.156216]  02 003 0    0    0   0   0    1    1    30
>>
>>
>> I'll come up with an SB800 quirk asap. (Of course we'll also try to
>> fix the respective BIOSes but too often BIOS updates are only
>> available for a limited time period.)
>>
>>
>> Regards,
>>
>> Andreas
>>
>> --
>> Operating | Advanced Micro Devices GmbH
>>  System  | Einsteinring 24, 85609 Dornach b. München, Germany
>>  Research | Geschäftsführer: Alberto Bozzo, Andrew Bowd
>>  Center  | Sitz: Dornach, Gemeinde Aschheim, Landkreis München
>>  (OSRC)  | Registergericht München, HRB Nr. 43632
>>
>
>
>
> --
> -----------------------------------------------------
> Manoj Iyer
> Ubuntu/Canonical Kernel Developer
> Hardware Enablement Team
> ------------------------------------------------------
>



-- 
-----------------------------------------------------
Manoj Iyer
Ubuntu/Canonical Kernel Developer
Hardware Enablement Team
------------------------------------------------------

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

end of thread, other threads:[~2011-01-31 17:54 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-13 16:02 [PATCH 0/1] Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15 Manoj Iyer
2011-01-13 16:02 ` [PATCH] " Manoj Iyer
2011-01-13 16:46   ` Matthew Garrett
2011-01-13 17:10     ` Thomas Gleixner
2011-01-13 17:22       ` Borislav Petkov
2011-01-13 17:33         ` Manoj Iyer
2011-01-13 17:55           ` Borislav Petkov
2011-01-13 18:11             ` Manoj Iyer
2011-01-13 18:30               ` Borislav Petkov
2011-01-13 18:51                 ` Thomas Gleixner
2011-01-13 18:58                   ` Matthew Garrett
2011-01-13 19:07                     ` Borislav Petkov
2011-01-13 19:13                       ` Thomas Gleixner
2011-01-13 19:28                         ` Borislav Petkov
2011-01-13 19:41                           ` Thomas Gleixner
2011-01-13 20:33                             ` Manoj Iyer
2011-01-13 21:12                               ` Manoj Iyer
2011-01-13 21:40                                 ` Thomas Gleixner
2011-01-13 21:48                                   ` Manoj Iyer
2011-01-13 22:40                                     ` Thomas Gleixner
2011-01-13 21:09                             ` Borislav Petkov
2011-01-13 21:30                               ` Thomas Gleixner
2011-01-13 21:48                                 ` Borislav Petkov
2011-01-13 22:55                                   ` Thomas Gleixner
2011-01-14 19:55                                     ` Manoj Iyer
2011-01-14 21:41                                       ` Borislav Petkov
2011-01-28 17:59                                       ` Andreas Herrmann
2011-01-31 16:44                                         ` Manoj Iyer
2011-01-31 17:54                                           ` Manoj Iyer
2011-01-13 19:11                     ` Thomas Gleixner
2011-01-13 18:57                 ` Manoj Iyer
2011-01-13 17:39       ` Matthew Garrett
     [not found]         ` <AANLkTimk_Y4Q_cxg1SJxZiTT2gT9ywr5UGmsqPqwmeCy@mail.gmail.com>
2011-01-13 17:56           ` Matthew Garrett

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.