Re: [PATCH v3 11/12] ACPI: video: convert to acpi_get_pci_dev

From: Troy Moure
Date: Fri Jun 26 2009 - 02:43:13 EST



> Troy, I applied your S-o-B, but maybe that was not a good
> assumption on my part? To be sure, could you please respond with
> your S-o-B?
[...]
> From: Troy Moure <twmoure@xxxxxxxxx>
>
> ACPI: prevent NULL deref in acpi_get_pci_dev()
>
[...]
> ---
> diff --git a/drivers/acpi/pci_root.c b/drivers/acpi/pci_root.c
> index 8a5bf3b..55b5b90 100644
> --- a/drivers/acpi/pci_root.c
> +++ b/drivers/acpi/pci_root.c
> @@ -395,7 +395,7 @@ struct pci_dev *acpi_get_pci_dev(acpi_handle handle)
> fn = adr & 0xffff;
>
> pdev = pci_get_slot(pbus, PCI_DEVFN(dev, fn));
> - if (hnd == handle)
> + if (!pdev || hnd == handle)
> break;
>
> pbus = pdev->subordinate;
>
Sure, for the record,
Signed-off-by: Troy Moure <twmoure@xxxxxxxxx>

I also tried out your debug patch on my machine, which was hitting the
problem (it's an Acer Aspire 5100). I put a small patchlet on top of it,
to get the names out right (see below). The dmesg and lspci output are
attached.

If you'd like me to do anything else, just let me know.

Regards,
-- Troy

diff --git a/drivers/acpi/pci_root.c b/drivers/acpi/pci_root.c
index 7674987..9e37e62 100644
--- a/drivers/acpi/pci_root.c
+++ b/drivers/acpi/pci_root.c
@@ -367,7 +367,7 @@ struct pci_dev *acpi_get_pci_dev(acpi_handle handle)
printk("Starting root bridge search from %s\n", (char *)buffer.pointer);
kfree(buffer.pointer);
buffer.pointer = NULL;
- buffer.length = 0;
+ buffer.length = ACPI_ALLOCATE_BUFFER;

while (!acpi_is_root_bridge(phandle)) {
node = kzalloc(sizeof(struct acpi_handle_node), GFP_KERNEL);
@@ -382,7 +382,7 @@ struct pci_dev *acpi_get_pci_dev(acpi_handle handle)
printk("+ Adding %s\n", (char *)buffer.pointer);
kfree(buffer.pointer);
buffer.pointer = NULL;
- buffer.length = 0;
+ buffer.length = ACPI_ALLOCATE_BUFFER;

status = acpi_get_parent(phandle, &phandle);
if (ACPI_FAILURE(status))00:00.0 Host bridge: ATI Technologies Inc RS480 Host Bridge (rev 10)
Subsystem: Acer Incorporated [ALI] Device 009f
Flags: bus master, 66MHz, medium devsel, latency 64

00:01.0 PCI bridge: ATI Technologies Inc RS480 PCI Bridge (prog-if 00 [Normal decode])
Flags: bus master, 66MHz, medium devsel, latency 64
Bus: primary=00, secondary=01, subordinate=01, sec-latency=64
I/O behind bridge: 00009000-00009fff
Memory behind bridge: d0100000-d01fffff
Prefetchable memory behind bridge: 00000000d4000000-00000000d7ffffff
Capabilities: [44] HyperTransport: MSI Mapping Enable+ Fixed+
Capabilities: [b0] Subsystem: Acer Incorporated [ALI] Device 009f

00:04.0 PCI bridge: ATI Technologies Inc RS480 PCI Bridge (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=02, subordinate=03, sec-latency=0
Capabilities: [50] Power Management version 3
Capabilities: [58] Express Root Port (Slot+), MSI 00
Capabilities: [80] MSI: Mask- 64bit- Count=1/1 Enable-
Capabilities: [b0] Subsystem: ATI Technologies Inc Device 5950
Capabilities: [b8] HyperTransport: MSI Mapping Enable+ Fixed+

00:05.0 PCI bridge: ATI Technologies Inc RS480 PCI Bridge (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=04, subordinate=05, sec-latency=0
Capabilities: [50] Power Management version 3
Capabilities: [58] Express Root Port (Slot+), MSI 00
Capabilities: [80] MSI: Mask- 64bit- Count=1/1 Enable-
Capabilities: [b0] Subsystem: ATI Technologies Inc Device 5950
Capabilities: [b8] HyperTransport: MSI Mapping Enable+ Fixed+

00:12.0 IDE interface: ATI Technologies Inc IXP SB400 Serial ATA Controller (rev 80) (prog-if 8f [Master SecP SecO PriP PriO])
Subsystem: ATI Technologies Inc IXP SB400 Serial ATA Controller
Flags: bus master, 66MHz, medium devsel, latency 64, IRQ 22
I/O ports at 8440 [size=8]
I/O ports at 8434 [size=4]
I/O ports at 8438 [size=8]
I/O ports at 8430 [size=4]
I/O ports at 8400 [size=16]
Memory at d0004000 (32-bit, non-prefetchable) [size=512]
[virtual] Expansion ROM at 84000000 [disabled] [size=512K]
Capabilities: [60] Power Management version 2
Capabilities: [50] MSI: Mask- 64bit- Count=1/1 Enable-
Kernel driver in use: sata_sil

00:13.0 USB Controller: ATI Technologies Inc IXP SB400 USB Host Controller (rev 80) (prog-if 10 [OHCI])
Subsystem: Acer Incorporated [ALI] Device 009f
Flags: bus master, 66MHz, medium devsel, latency 64, IRQ 19
Memory at d0005000 (32-bit, non-prefetchable) [size=4K]
Kernel driver in use: ohci_hcd

00:13.1 USB Controller: ATI Technologies Inc IXP SB400 USB Host Controller (rev 80) (prog-if 10 [OHCI])
Subsystem: Acer Incorporated [ALI] Device 009f
Flags: bus master, 66MHz, medium devsel, latency 64, IRQ 19
Memory at d0006000 (32-bit, non-prefetchable) [size=4K]
Kernel driver in use: ohci_hcd

00:13.2 USB Controller: ATI Technologies Inc IXP SB400 USB2 Host Controller (rev 80) (prog-if 20 [EHCI])
Subsystem: Acer Incorporated [ALI] Device 009f
Flags: bus master, 66MHz, medium devsel, latency 64, IRQ 19
Memory at d0007000 (32-bit, non-prefetchable) [size=4K]
Capabilities: [dc] Power Management version 2
Kernel driver in use: ehci_hcd

00:14.0 SMBus: ATI Technologies Inc IXP SB400 SMBus Controller (rev 83)
Subsystem: Acer Incorporated [ALI] Device 009f
Flags: 66MHz, medium devsel
I/O ports at 8410 [size=16]
Memory at 84080000 (32-bit, non-prefetchable) [size=1K]
Capabilities: [b0] HyperTransport: MSI Mapping Enable- Fixed+

00:14.1 IDE interface: ATI Technologies Inc IXP SB400 IDE Controller (rev 80) (prog-if 82 [Master PriP])
Subsystem: Acer Incorporated [ALI] Device 009f
Flags: bus master, 66MHz, medium devsel, latency 0, IRQ 16
I/O ports at 01f0 [size=8]
I/O ports at 03f4 [size=1]
I/O ports at 0170 [size=8]
I/O ports at 0374 [size=1]
I/O ports at 8420 [size=16]
Capabilities: [70] MSI: Mask- 64bit- Count=1/1 Enable-
Kernel driver in use: ATIIXP_IDE

00:14.2 Audio device: ATI Technologies Inc IXP SB4x0 High Definition Audio Controller (rev 01)
Subsystem: Acer Incorporated [ALI] Device 009f
Flags: bus master, slow devsel, latency 64, IRQ 16
Memory at d0000000 (64-bit, non-prefetchable) [size=16K]
Capabilities: [50] Power Management version 2
Capabilities: [60] MSI: Mask- 64bit+ Count=1/1 Enable-
Kernel driver in use: HDA Intel

00:14.3 ISA bridge: ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80)
Subsystem: Acer Incorporated [ALI] Device 009f
Flags: bus master, 66MHz, medium devsel, latency 0

00:14.4 PCI bridge: ATI Technologies Inc IXP SB400 PCI-PCI Bridge (rev 80) (prog-if 01 [Subtractive decode])
Flags: bus master, 66MHz, medium devsel, latency 64
Bus: primary=00, secondary=06, subordinate=08, sec-latency=64
I/O behind bridge: 0000a000-0000afff
Memory behind bridge: d0200000-d02fffff
Prefetchable memory behind bridge: 80000000-83ffffff

00:18.0 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] HyperTransport Technology Configuration
Flags: fast devsel
Capabilities: [80] HyperTransport: Host or Secondary Interface

00:18.1 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Address Map
Flags: fast devsel

00:18.2 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM Controller
Flags: fast devsel

00:18.3 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control
Flags: fast devsel
Capabilities: [f0] Secure device <?>

01:05.0 VGA compatible controller: ATI Technologies Inc RS482 [Radeon Xpress 200M] (prog-if 00 [VGA controller])
Subsystem: Acer Incorporated [ALI] Device 009f
Flags: bus master, 66MHz, medium devsel, latency 66, IRQ 17
Memory at d4000000 (32-bit, prefetchable) [size=64M]
I/O ports at 9000 [size=256]
Memory at d0100000 (32-bit, non-prefetchable) [size=64K]
[virtual] Expansion ROM at d0120000 [disabled] [size=128K]
Capabilities: [50] Power Management version 2
Kernel driver in use: radeonfb

06:01.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10)
Subsystem: Acer Incorporated [ALI] Device 009f
Flags: bus master, medium devsel, latency 64, IRQ 21
I/O ports at a000 [size=256]
Memory at d0210000 (32-bit, non-prefetchable) [size=256]
Capabilities: [50] Power Management version 2
Kernel driver in use: 8139too

06:02.0 Ethernet controller: Atheros Communications Inc. AR2413 802.11bg NIC (rev 01)
Subsystem: AMBIT Microsystem Corp. Device 0418
Flags: bus master, medium devsel, latency 168, IRQ 22
Memory at d0200000 (32-bit, non-prefetchable) [size=64K]
Capabilities: [44] Power Management version 2
Kernel driver in use: ath5k

06:04.0 CardBus bridge: ENE Technology Inc CB-712/4 Cardbus Controller (rev 10)
Subsystem: Acer Incorporated [ALI] Device 009f
Flags: bus master, medium devsel, latency 168, IRQ 20
Memory at d0211000 (32-bit, non-prefetchable) [size=4K]
Bus: primary=06, secondary=07, subordinate=07, sec-latency=176
Memory window 0: 80000000-83fff000 (prefetchable)
Memory window 1: 88000000-8bfff000
I/O window 0: 0000a400-0000a4ff
I/O window 1: 0000a800-0000a8ff
16-bit legacy interface ports at 0001
Kernel driver in use: yenta_cardbus

06:04.1 FLASH memory: ENE Technology Inc ENE PCI Memory Stick Card Reader Controller (rev 01)
Subsystem: Acer Incorporated [ALI] Device 009f
Flags: bus master, medium devsel, latency 64, IRQ 10
Memory at d0210400 (32-bit, non-prefetchable) [size=128]
Capabilities: [80] Power Management version 2

06:04.2 SD Host controller: ENE Technology Inc ENE PCI Secure Digital Card Reader Controller (rev 01) (prog-if 01)
Subsystem: Acer Incorporated [ALI] Device 009f
Flags: bus master, medium devsel, latency 64, IRQ 10
Memory at d0210800 (32-bit, non-prefetchable) [size=256]
Capabilities: [80] Power Management version 2

06:04.3 FLASH memory: ENE Technology Inc FLASH memory: ENE Technology Inc: (rev 01)
Subsystem: Acer Incorporated [ALI] Device 009f
Flags: bus master, medium devsel, latency 64, IRQ 10
Memory at d0210c00 (32-bit, non-prefetchable) [size=128]
Capabilities: [80] Power Management version 2

06:04.4 FLASH memory: ENE Technology Inc SD/MMC Card Reader Controller (rev 01)
Subsystem: Acer Incorporated [ALI] Device 009f
Flags: medium devsel, IRQ 255
Memory at d0210100 (32-bit, non-prefetchable) [disabled] [size=256]
Capabilities: [80] Power Management version 2

[ 0.000000] Linux version 2.6.31-rc1-00001-gdcecde2-dirty (troy@troy-laptop) (gcc version 4.4.0 20090506 (Red Hat 4.4.0-4) (GCC) ) #32 SMP Fri Jun 26 06:59:07 BST 2009
[ 0.000000] Command line: ro root=/dev/sda3 rhgb
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Centaur CentaurHauls
[ 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 - 000000007be90000 (usable)
[ 0.000000] BIOS-e820: 000000007be90000 - 000000007be9a000 (ACPI data)
[ 0.000000] BIOS-e820: 000000007be9a000 - 000000007bf00000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007bf00000 - 0000000080000000 (reserved)
[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[ 0.000000] BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
[ 0.000000] DMI present.
[ 0.000000] last_pfn = 0x7be90 max_arch_pfn = 0x400000000
[ 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-E3FFF uncachable
[ 0.000000] E4000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 0000000000 mask FF80000000 write-back
[ 0.000000] 1 base 007C000000 mask FFFC000000 uncachable
[ 0.000000] 2 disabled
[ 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: 0000000000001000 - 0000000000006000 (usable) ==> (reserved)
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] modified physical RAM map:
[ 0.000000] modified: 0000000000000000 - 0000000000001000 (usable)
[ 0.000000] modified: 0000000000001000 - 0000000000006000 (reserved)
[ 0.000000] modified: 0000000000006000 - 000000000009dc00 (usable)
[ 0.000000] modified: 000000000009dc00 - 00000000000a0000 (reserved)
[ 0.000000] modified: 00000000000d0000 - 0000000000100000 (reserved)
[ 0.000000] modified: 0000000000100000 - 000000007be90000 (usable)
[ 0.000000] modified: 000000007be90000 - 000000007be9a000 (ACPI data)
[ 0.000000] modified: 000000007be9a000 - 000000007bf00000 (ACPI NVS)
[ 0.000000] modified: 000000007bf00000 - 0000000080000000 (reserved)
[ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved)
[ 0.000000] modified: 00000000fec00000 - 00000000fec10000 (reserved)
[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved)
[ 0.000000] modified: 00000000fff80000 - 0000000100000000 (reserved)
[ 0.000000] initial memory mapped : 0 - 20000000
[ 0.000000] init_memory_mapping: 0000000000000000-000000007be90000
[ 0.000000] 0000000000 - 007be00000 page 2M
[ 0.000000] 007be00000 - 007be90000 page 4k
[ 0.000000] kernel direct mapping tables up to 7be90000 @ 8000-c000
[ 0.000000] RAMDISK: 37c7e000 - 37fef3b0
[ 0.000000] ACPI: RSDP 00000000000f8040 00014 (v00 ACRSYS)
[ 0.000000] ACPI: RSDT 000000007be91acb 00038 (v01 ACRSYS ACRPRDCT 06040000 LTP 00000000)
[ 0.000000] ACPI: FACP 000000007be99c04 00074 (v01 ATI Bowfin 06040000 ATI 000F4240)
[ 0.000000] ACPI: DSDT 000000007be91b03 08101 (v01 Acer Navarro 06040000 MSFT 03000000)
[ 0.000000] ACPI: FACS 000000007be9afc0 00040
[ 0.000000] ACPI: SLIC 000000007be99c78 00176 (v01 ACRSYS ACRPRDCT 06040000 LOHR 00000000)
[ 0.000000] ACPI: APIC 000000007be99dee 00054 (v01 PTLTD APIC 06040000 LTP 00000000)
[ 0.000000] ACPI: MCFG 000000007be99e42 0003C (v01 PTLTD MCFG 06040000 LTP 00000000)
[ 0.000000] ACPI: SSDT 000000007be99e7e 00182 (v01 PTLTD POWERNOW 06040000 LTP 00000001)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] (7 early reservations) ==> bootmem [0000000000 - 007be90000]
[ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
[ 0.000000] #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000]
[ 0.000000] #2 [0001000000 - 00018860d4] TEXT DATA BSS ==> [0001000000 - 00018860d4]
[ 0.000000] #3 [0037c7e000 - 0037fef3b0] RAMDISK ==> [0037c7e000 - 0037fef3b0]
[ 0.000000] #4 [000009dc00 - 0000100000] BIOS reserved ==> [000009dc00 - 0000100000]
[ 0.000000] #5 [0001887000 - 00018870ed] BRK ==> [0001887000 - 00018870ed]
[ 0.000000] #6 [0000008000 - 000000a000] PGTABLE ==> [0000008000 - 000000a000]
[ 0.000000] [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff880001e00000-ffff8800039fffff] on node 0
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000000 -> 0x00001000
[ 0.000000] DMA32 0x00001000 -> 0x00100000
[ 0.000000] Normal 0x00100000 -> 0x00100000
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[3] active PFN ranges
[ 0.000000] 0: 0x00000000 -> 0x00000001
[ 0.000000] 0: 0x00000006 -> 0x0000009d
[ 0.000000] 0: 0x00000100 -> 0x0007be90
[ 0.000000] On node 0 totalpages: 507432
[ 0.000000] DMA zone: 56 pages used for memmap
[ 0.000000] DMA zone: 103 pages reserved
[ 0.000000] DMA zone: 3833 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 6883 pages used for memmap
[ 0.000000] DMA32 zone: 496557 pages, LIFO batch:31
[ 0.000000] SB4X0 revision 0x83
[ 0.000000] Ignoring ACPI timer override.
[ 0.000000] If you got timer trouble try acpi_use_timer_override
[ 0.000000] Detected use of extended apic ids on hypertransport bus
[ 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: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[ 0.000000] nr_irqs_gsi: 24
[ 0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:60000000)
[ 0.000000] NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:2 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 25 pages at ffff880001898000, static data 81504 bytes
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 500390
[ 0.000000] Kernel command line: ro root=/dev/sda3 rhgb
[ 0.000000] PID hash table entries: 4096 (order: 12, 32768 bytes)
[ 0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.000000] Initializing CPU#0
[ 0.000000] Checking aperture...
[ 0.000000] No AGP bridge found
[ 0.000000] Node 0: aperture @ d680000000 size 32 MB
[ 0.000000] Aperture beyond 4GB. Ignoring.
[ 0.000000] Memory: 1984696k/2030144k available (4681k kernel code, 416k absent, 44356k reserved, 2713k data, 412k init)
[ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[ 0.000000] Experimental hierarchical RCU implementation.
[ 0.000000] Experimental hierarchical RCU init done.
[ 0.000000] NR_IRQS:384
[ 0.000000] Fast TSC calibration failed
[ 0.000000] TSC: PIT calibration matches PMTIMER. 1 loops
[ 0.000000] Detected 1595.999 MHz processor.
[ 0.000999] Console: colour VGA+ 80x25
[ 0.000999] console [tty0] enabled
[ 0.001010] Calibrating delay loop (skipped), value calculated using timer frequency.. 3191.99 BogoMIPS (lpj=1595999)
[ 0.001229] Mount-cache hash table entries: 256
[ 0.001504] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[ 0.001598] CPU: L2 Cache: 256K (64 bytes/line)
[ 0.001688] tseg: 007bf00000
[ 0.001691] CPU: Physical Processor ID: 0
[ 0.001780] CPU: Processor Core ID: 0
[ 0.001871] mce: CPU supports 5 MCE banks
[ 0.001969] using C1E aware idle routine
[ 0.002004] Performance Counters: AMD PMU driver.
[ 0.002133] ... version: 0
[ 0.002221] ... bit width: 48
[ 0.002311] ... generic counters: 4
[ 0.002401] ... value mask: 0000ffffffffffff
[ 0.002491] ... max period: 00007fffffffffff
[ 0.002581] ... fixed-purpose counters: 0
[ 0.002669] ... counter mask: 000000000000000f
[ 0.002780] ACPI: Core revision 20090521
[ 0.015059] Setting APIC routing to flat
[ 0.015516] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
[ 0.025635] CPU0: AMD Turion(tm) 64 X2 Mobile Technology TL-50 stepping 02
[ 0.025996] Booting processor 1 APIC 0x1 ip 0x6000
[ 0.000999] Initializing CPU#1
[ 0.000999] Calibrating delay using timer specific routine.. 3191.36 BogoMIPS (lpj=1595680)
[ 0.000999] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[ 0.000999] CPU: L2 Cache: 256K (64 bytes/line)
[ 0.000999] CPU: Physical Processor ID: 0
[ 0.000999] CPU: Processor Core ID: 1
[ 0.000999] mce: CPU supports 5 MCE banks
[ 0.000999] x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106
[ 0.096413] CPU1:
[ 0.000999] System has AMD C1E enabled
[ 0.000999] Switch to broadcast mode on CPU1
[ 0.096991] AMD Turion(tm) 64 X2 Mobile Technology TL-50 stepping 02
[ 0.097126] Brought up 2 CPUs
[ 0.097215] Total of 2 processors activated (6383.35 BogoMIPS).
[ 0.097371] Switch to broadcast mode on CPU0
[ 0.098073] NET: Registered protocol family 16
[ 0.098186] node 0 link 0: io port [1000, fffff]
[ 0.098186] TOM: 0000000080000000 aka 2048M
[ 0.098186] node 0 link 0: mmio [d8000000, dfffffff]
[ 0.098186] node 0 link 0: mmio [d4000000, d7ffffff]
[ 0.098186] node 0 link 0: mmio [a0000, bffff]
[ 0.098186] node 0 link 0: mmio [f0000000, ffffffff]
[ 0.098186] node 0 link 0: mmio [e0000000, efffffff]
[ 0.098186] node 0 link 0: mmio [80000000, d3ffffff]
[ 0.098186] bus: [00,ff] on node 0 link 0
[ 0.098186] bus: 00 index 0 io port: [0, ffff]
[ 0.098186] bus: 00 index 1 mmio: [80000000, efffffff]
[ 0.098186] bus: 00 index 2 mmio: [a0000, bffff]
[ 0.098186] bus: 00 index 3 mmio: [f0000000, fcffffffff]
[ 0.098186] ACPI: bus type pci registered
[ 0.099026] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 7
[ 0.099105] PCI: MCFG area at e0000000 reserved in E820
[ 0.099554] PCI: Using MMCONFIG at e0000000 - e07fffff
[ 0.099642] PCI: Using configuration type 1 for base access
[ 0.108117] bio: create slab <bio-0> at 0
[ 0.109740] ACPI: EC: Look up EC in DSDT
[ 0.112374] ACPI Warning: Package List length (1) larger than NumElements count (0), truncated
[ 0.112554] 20090521 dsobject-502
[ 0.112720] ACPI Warning: Package List length (1) larger than NumElements count (0), truncated
[ 0.112893] 20090521 dsobject-502
[ 0.115595] ACPI: BIOS _OSI(Linux) query ignored
[ 0.135480] ACPI: Interpreter enabled
[ 0.135571] ACPI: (supports S0 S3 S5)
[ 0.135776] ACPI: Using IOAPIC for interrupt routing
[ 0.141057] ACPI: EC: non-query interrupt received, switching to interrupt mode
[ 0.244354] ACPI: EC: GPE = 0x10, I/O: command/status = 0x66, data = 0x62
[ 0.244354] ACPI: EC: driver started in interrupt mode
[ 0.245226] ACPI: No dock devices found.
[ 0.245648] ACPI: PCI Root Bridge [PCI0] (0000:00)
[ 0.246803] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
[ 0.246803] pci 0000:00:04.0: PME# disabled
[ 0.246803] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
[ 0.246803] pci 0000:00:05.0: PME# disabled
[ 0.246803] pci 0000:00:12.0: reg 10 io port: [0x8440-0x8447]
[ 0.246803] pci 0000:00:12.0: reg 14 io port: [0x8434-0x8437]
[ 0.246803] pci 0000:00:12.0: reg 18 io port: [0x8438-0x843f]
[ 0.246803] pci 0000:00:12.0: reg 1c io port: [0x8430-0x8433]
[ 0.246803] pci 0000:00:12.0: reg 20 io port: [0x8400-0x840f]
[ 0.246803] pci 0000:00:12.0: reg 24 32bit mmio: [0xd0004000-0xd00041ff]
[ 0.246803] pci 0000:00:12.0: reg 30 32bit mmio: [0x000000-0x07ffff]
[ 0.246803] pci 0000:00:12.0: supports D1 D2
[ 0.246803] pci 0000:00:13.0: reg 10 32bit mmio: [0xd0005000-0xd0005fff]
[ 0.246803] pci 0000:00:13.1: reg 10 32bit mmio: [0xd0006000-0xd0006fff]
[ 0.246803] pci 0000:00:13.2: reg 10 32bit mmio: [0xd0007000-0xd0007fff]
[ 0.246803] pci 0000:00:13.2: supports D1 D2
[ 0.246803] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[ 0.246803] pci 0000:00:13.2: PME# disabled
[ 0.246975] pci 0000:00:14.0: reg 10 io port: [0x8410-0x841f]
[ 0.246985] pci 0000:00:14.0: reg 14 32bit mmio: [0x000000-0x0003ff]
[ 0.247022] HPET not enabled in BIOS. You might try hpet=force boot option
[ 0.247176] pci 0000:00:14.1: reg 10 io port: [0x1f0-0x1f7]
[ 0.247185] pci 0000:00:14.1: reg 14 io port: [0x3f4-0x3f7]
[ 0.247195] pci 0000:00:14.1: reg 18 io port: [0x8450-0x8457]
[ 0.247205] pci 0000:00:14.1: reg 1c io port: [0x8448-0x844b]
[ 0.247214] pci 0000:00:14.1: reg 20 io port: [0x8420-0x842f]
[ 0.247316] pci 0000:00:14.2: reg 10 64bit mmio: [0xd0000000-0xd0003fff]
[ 0.247381] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[ 0.247473] pci 0000:00:14.2: PME# disabled
[ 0.247794] pci 0000:01:05.0: reg 10 32bit mmio: [0xd4000000-0xd7ffffff]
[ 0.247799] pci 0000:01:05.0: reg 14 io port: [0x9000-0x90ff]
[ 0.247805] pci 0000:01:05.0: reg 18 32bit mmio: [0xd0100000-0xd010ffff]
[ 0.247815] pci 0000:01:05.0: reg 30 32bit mmio: [0x000000-0x01ffff]
[ 0.247825] pci 0000:01:05.0: supports D1 D2
[ 0.247846] pci 0000:00:01.0: bridge io port: [0x9000-0x9fff]
[ 0.247850] pci 0000:00:01.0: bridge 32bit mmio: [0xd0100000-0xd01fffff]
[ 0.247856] pci 0000:00:01.0: bridge 64bit mmio pref: [0xd4000000-0xd7ffffff]
[ 0.247918] pci 0000:00:04.0: bridge io port: [0x00-0xfff]
[ 0.247922] pci 0000:00:04.0: bridge 32bit mmio: [0x000000-0x0fffff]
[ 0.247928] pci 0000:00:04.0: bridge 64bit mmio pref: [0x000000-0x0fffff]
[ 0.247993] pci 0000:00:05.0: bridge io port: [0x00-0xfff]
[ 0.247997] pci 0000:00:05.0: bridge 32bit mmio: [0x000000-0x0fffff]
[ 0.248059] pci 0000:06:01.0: reg 10 io port: [0xa000-0xa0ff]
[ 0.248070] pci 0000:06:01.0: reg 14 32bit mmio: [0xd0210000-0xd02100ff]
[ 0.248140] pci 0000:06:01.0: supports D1 D2
[ 0.248144] pci 0000:06:01.0: PME# supported from D1 D2 D3hot D3cold
[ 0.248235] pci 0000:06:01.0: PME# disabled
[ 0.248378] pci 0000:06:02.0: reg 10 32bit mmio: [0xd0200000-0xd020ffff]
[ 0.248517] pci 0000:06:04.0: reg 10 32bit mmio: [0xd0211000-0xd0211fff]
[ 0.248550] pci 0000:06:04.0: supports D1 D2
[ 0.248553] pci 0000:06:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.248646] pci 0000:06:04.0: PME# disabled
[ 0.248790] pci 0000:06:04.1: reg 10 32bit mmio: [0xd0210400-0xd021047f]
[ 0.248872] pci 0000:06:04.1: supports D1 D2
[ 0.248875] pci 0000:06:04.1: PME# supported from D0 D1 D2 D3hot
[ 0.248968] pci 0000:06:04.1: PME# disabled
[ 0.249115] pci 0000:06:04.2: reg 10 32bit mmio: [0xd0210800-0xd02108ff]
[ 0.249196] pci 0000:06:04.2: supports D1 D2
[ 0.249199] pci 0000:06:04.2: PME# supported from D0 D1 D2 D3hot
[ 0.249291] pci 0000:06:04.2: PME# disabled
[ 0.249434] pci 0000:06:04.3: reg 10 32bit mmio: [0xd0210c00-0xd0210c7f]
[ 0.249517] pci 0000:06:04.3: supports D1 D2
[ 0.249520] pci 0000:06:04.3: PME# supported from D0 D1 D2 D3hot
[ 0.249969] pci 0000:06:04.3: PME# disabled
[ 0.250113] pci 0000:06:04.4: reg 10 32bit mmio: [0x000000-0x0000ff]
[ 0.250194] pci 0000:06:04.4: supports D1 D2
[ 0.250198] pci 0000:06:04.4: PME# supported from D0 D1 D2 D3hot
[ 0.250291] pci 0000:06:04.4: PME# disabled
[ 0.250449] pci 0000:00:14.4: transparent bridge
[ 0.250543] pci 0000:00:14.4: bridge io port: [0xa000-0xafff]
[ 0.250549] pci 0000:00:14.4: bridge 32bit mmio: [0xd0200000-0xd02fffff]
[ 0.250596] pci_bus 0000:00: on NUMA node 0
[ 0.250602] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 0.251091] Starting root bridge search from \_SB_.PCI0.PB3_
[ 0.251180] + Adding \_SB_.PCI0.PB3_
[ 0.251267] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.251361] Searching for 0000:00:03.0
[ 0.251448] Ouch.
[ 0.251533] Starting root bridge search from \_SB_.PCI0.PB4_
[ 0.251621] + Adding \_SB_.PCI0.PB4_
[ 0.251708] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.251800] Searching for 0000:00:04.0
[ 0.251889] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB4_._PRT]
[ 0.251977] Starting root bridge search from \_SB_.PCI0.PB5_
[ 0.252067] + Adding \_SB_.PCI0.PB5_
[ 0.252155] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.252247] Searching for 0000:00:05.0
[ 0.252335] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PB5_._PRT]
[ 0.252418] Starting root bridge search from \_SB_.PCI0.PB6_
[ 0.252508] + Adding \_SB_.PCI0.PB6_
[ 0.252595] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.252687] Searching for 0000:00:06.0
[ 0.252773] Ouch.
[ 0.252859] Starting root bridge search from \_SB_.PCI0.PB7_
[ 0.252949] + Adding \_SB_.PCI0.PB7_
[ 0.252964] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.253056] Searching for 0000:00:07.0
[ 0.253142] Ouch.
[ 0.253229] Starting root bridge search from \_SB_.PCI0.BB4_
[ 0.253319] + Adding \_SB_.PCI0.BB4_
[ 0.253406] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.253497] Searching for 0000:00:04.0
[ 0.253586] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BB4_._PRT]
[ 0.253670] Starting root bridge search from \_SB_.PCI0.BB5_
[ 0.253759] + Adding \_SB_.PCI0.BB5_
[ 0.253846] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.253967] Searching for 0000:00:05.0
[ 0.254056] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BB5_._PRT]
[ 0.254142] Starting root bridge search from \_SB_.PCI0.OHC1
[ 0.254232] + Adding \_SB_.PCI0.OHC1
[ 0.254319] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.254410] Searching for 0000:00:13.0
[ 0.254499] Starting root bridge search from \_SB_.PCI0.OHC2
[ 0.254588] + Adding \_SB_.PCI0.OHC2
[ 0.254674] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.254767] Searching for 0000:00:13.1
[ 0.254855] Starting root bridge search from \_SB_.PCI0.EHCI
[ 0.254964] + Adding \_SB_.PCI0.EHCI
[ 0.255050] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.255141] Searching for 0000:00:13.2
[ 0.255229] Starting root bridge search from \_SB_.PCI0.SAT0
[ 0.255319] + Adding \_SB_.PCI0.SAT0
[ 0.255406] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.255497] Searching for 0000:00:12.0
[ 0.255586] Starting root bridge search from \_SB_.PCI0.SAT1
[ 0.255675] + Adding \_SB_.PCI0.SAT1
[ 0.255761] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.255852] Searching for 0000:00:11.0
[ 0.255962] Ouch.
[ 0.256049] Starting root bridge search from \_SB_.PCI0.SMB_
[ 0.256139] + Adding \_SB_.PCI0.SMB_
[ 0.256226] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.256318] Searching for 0000:00:14.0
[ 0.256407] Starting root bridge search from \_SB_.PCI0.IDE_
[ 0.256496] + Adding \_SB_.PCI0.IDE_
[ 0.256583] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.256674] Searching for 0000:00:14.1
[ 0.256763] Starting root bridge search from \_SB_.PCI0.HDA_
[ 0.256852] + Adding \_SB_.PCI0.HDA_
[ 0.256938] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.256965] Searching for 0000:00:14.2
[ 0.257053] Starting root bridge search from \_SB_.PCI0.LPC0
[ 0.257142] + Adding \_SB_.PCI0.LPC0
[ 0.257230] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.257321] Searching for 0000:00:14.3
[ 0.257412] Starting root bridge search from \_SB_.PCI0.P2P_
[ 0.257500] + Adding \_SB_.PCI0.P2P_
[ 0.257588] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.257679] Searching for 0000:00:14.4
[ 0.257768] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
[ 0.257862] Starting root bridge search from \_SB_.PCI0.P2P_.V394
[ 0.257964] + Adding \_SB_.PCI0.P2P_.V394
[ 0.258052] + Adding \_SB_.PCI0.P2P_
[ 0.258139] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.258230] Searching for 0000:00:14.4
[ 0.258320] Searching for 0000:06:00.0
[ 0.258406] Ouch.
[ 0.258491] Starting root bridge search from \_SB_.PCI0.P2P_.ELAN
[ 0.258579] + Adding \_SB_.PCI0.P2P_.ELAN
[ 0.258665] + Adding \_SB_.PCI0.P2P_
[ 0.258752] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.258843] Searching for 0000:00:14.4
[ 0.258965] Searching for 0000:06:01.0
[ 0.259054] Starting root bridge search from \_SB_.PCI0.P2P_.MIN1
[ 0.259144] + Adding \_SB_.PCI0.P2P_.MIN1
[ 0.259232] + Adding \_SB_.PCI0.P2P_
[ 0.259319] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.259410] Searching for 0000:00:14.4
[ 0.259500] Searching for 0000:06:02.0
[ 0.259588] Starting root bridge search from \_SB_.PCI0.P2P_.CB1_
[ 0.259677] + Adding \_SB_.PCI0.P2P_.CB1_
[ 0.259763] + Adding \_SB_.PCI0.P2P_
[ 0.259849] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.259965] Searching for 0000:00:14.4
[ 0.260054] Searching for 0000:06:04.0
[ 0.260143] Starting root bridge search from \_SB_.PCI0.AUDO
[ 0.260231] + Adding \_SB_.PCI0.AUDO
[ 0.260316] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.260407] Searching for 0000:00:14.5
[ 0.260493] Ouch.
[ 0.260579] Starting root bridge search from \_SB_.PCI0.MODM
[ 0.260668] + Adding \_SB_.PCI0.MODM
[ 0.260755] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.260845] Searching for 0000:00:14.6
[ 0.260932] Ouch.
[ 0.260963] Starting root bridge search from \_SB_.PCI0.AGP_
[ 0.261051] + Adding \_SB_.PCI0.AGP_
[ 0.261138] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.261230] Searching for 0000:00:01.0
[ 0.261318] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
[ 0.261402] Starting root bridge search from \_SB_.PCI0.AGP_.VGA_
[ 0.261492] + Adding \_SB_.PCI0.AGP_.VGA_
[ 0.261578] + Adding \_SB_.PCI0.AGP_
[ 0.261666] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.261756] Searching for 0000:00:01.0
[ 0.261846] Searching for 0000:01:05.0
[ 0.261965] Starting root bridge search from \_SB_.PCI0.PEG_
[ 0.262054] + Adding \_SB_.PCI0.PEG_
[ 0.262142] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 0.262233] Searching for 0000:00:02.0
[ 0.262320] Ouch.
[ 0.269298] ACPI: PCI Interrupt Link [LNKA] (IRQs 10 11) *0, disabled.
[ 0.269739] ACPI: PCI Interrupt Link [LNKB] (IRQs 10 11) *0, disabled.
[ 0.270107] ACPI: PCI Interrupt Link [LNKC] (IRQs 10 11) *0, disabled.
[ 0.270543] ACPI: PCI Interrupt Link [LNKD] (IRQs 10 11) *0, disabled.
[ 0.271060] ACPI: PCI Interrupt Link [LNKE] (IRQs 10 11) *0, disabled.
[ 0.271494] ACPI: PCI Interrupt Link [LNKF] (IRQs 10 11) *0, disabled.
[ 0.271927] ACPI: PCI Interrupt Link [LNKG] (IRQs 10 11) *0, disabled.
[ 0.272359] ACPI: PCI Interrupt Link [LNKH] (IRQs 10 11) *0, disabled.
[ 0.272792] ACPI: PCI Interrupt Link [LNKU] (IRQs 3 4 5 7) *0, disabled.
[ 0.274231] SCSI subsystem initialized
[ 0.274231] libata version 3.00 loaded.
[ 0.274231] usbcore: registered new interface driver usbfs
[ 0.275017] usbcore: registered new interface driver hub
[ 0.275055] usbcore: registered new device driver usb
[ 0.275089] ACPI: WMI: Mapper loaded
[ 0.275089] PCI: Using ACPI for IRQ routing
[ 0.275143] pci 0000:00:04.0: BAR 7: can't allocate resource
[ 0.275143] pci 0000:00:04.0: BAR 8: can't allocate resource
[ 0.275143] pci 0000:00:04.0: BAR 9: can't allocate resource
[ 0.275143] pci 0000:00:05.0: BAR 7: can't allocate resource
[ 0.275227] pci 0000:00:05.0: BAR 8: can't allocate resource
[ 0.292010] cfg80211: Calling CRDA to update world regulatory domain
[ 0.295971] pnp: PnP ACPI init
[ 0.296083] ACPI: bus type pnp registered
[ 0.300129] pnp 00:09: mem resource (0x0-0xfff) overlaps 0000:00:12.0 BAR 6 (0x0-0x7ffff), disabling
[ 0.300285] pnp 00:09: mem resource (0x0-0xfff) overlaps 0000:01:05.0 BAR 6 (0x0-0x1ffff), disabling
[ 0.336239] pnp: PnP ACPI: found 10 devices
[ 0.336327] ACPI: ACPI bus type pnp unregistered
[ 0.336429] system 00:01: iomem range 0xe0000000-0xefffffff has been reserved
[ 0.336519] system 00:01: iomem range 0xfec00000-0xfec00fff has been reserved
[ 0.336610] system 00:01: iomem range 0xfee00000-0xfee00fff has been reserved
[ 0.336708] system 00:08: ioport range 0x1080-0x1080 has been reserved
[ 0.336798] system 00:08: ioport range 0x40b-0x40b has been reserved
[ 0.336887] system 00:08: ioport range 0x4d0-0x4d1 has been reserved
[ 0.336976] system 00:08: ioport range 0x4d6-0x4d6 has been reserved
[ 0.337004] system 00:08: ioport range 0xc00-0xc01 has been reserved
[ 0.337093] system 00:08: ioport range 0xc14-0xc14 has been reserved
[ 0.337183] system 00:08: ioport range 0xc50-0xc52 has been reserved
[ 0.337272] system 00:08: ioport range 0xc6c-0xc6c has been reserved
[ 0.337362] system 00:08: ioport range 0xc6f-0xc6f has been reserved
[ 0.337452] system 00:08: ioport range 0xcd4-0xcd5 has been reserved
[ 0.337541] system 00:08: ioport range 0xcd6-0xcd7 has been reserved
[ 0.337631] system 00:08: ioport range 0xcd8-0xcdf has been reserved
[ 0.337721] system 00:08: ioport range 0x8000-0x805f has been reserved
[ 0.337812] system 00:08: ioport range 0xf40-0xf47 has been reserved
[ 0.337901] system 00:08: ioport range 0x280-0x293 has been reserved
[ 0.338004] system 00:08: ioport range 0x87f-0x87f has been reserved
[ 0.338097] system 00:09: iomem range 0xe0000-0xfffff could not be reserved
[ 0.338187] system 00:09: iomem range 0xfff00000-0xffffffff could not be reserved
[ 0.343570] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[ 0.343662] pci 0000:00:01.0: IO window: 0x9000-0x9fff
[ 0.343752] pci 0000:00:01.0: MEM window: 0xd0100000-0xd01fffff
[ 0.344004] pci 0000:00:01.0: PREFETCH window: 0x000000d4000000-0x000000d7ffffff
[ 0.345037] Switched to high resolution mode on CPU 0
[ 0.345177] Switched to high resolution mode on CPU 1
[ 0.345184] pci 0000:00:04.0: PCI bridge, secondary bus 0000:02
[ 0.345282] pci 0000:00:04.0: IO window: disabled
[ 0.345371] pci 0000:00:04.0: MEM window: disabled
[ 0.345460] pci 0000:00:04.0: PREFETCH window: disabled
[ 0.345550] pci 0000:00:05.0: PCI bridge, secondary bus 0000:04
[ 0.345639] pci 0000:00:05.0: IO window: disabled
[ 0.345728] pci 0000:00:05.0: MEM window: disabled
[ 0.345817] pci 0000:00:05.0: PREFETCH window: disabled
[ 0.345916] pci 0000:06:04.0: CardBus bridge, secondary bus 0000:07
[ 0.346005] pci 0000:06:04.0: IO window: 0x00a400-0x00a4ff
[ 0.346116] pci 0000:06:04.0: IO window: 0x00a800-0x00a8ff
[ 0.346208] pci 0000:06:04.0: PREFETCH window: 0x80000000-0x83ffffff
[ 0.346321] pci 0000:06:04.0: MEM window: 0x88000000-0x8bffffff
[ 0.346414] pci 0000:00:14.4: PCI bridge, secondary bus 0000:06
[ 0.346503] pci 0000:00:14.4: IO window: 0xa000-0xafff
[ 0.346594] pci 0000:00:14.4: MEM window: 0xd0200000-0xd02fffff
[ 0.346684] pci 0000:00:14.4: PREFETCH window: 0x80000000-0x83ffffff
[ 0.346784] pci 0000:00:04.0: setting latency timer to 64
[ 0.346791] pci 0000:00:05.0: setting latency timer to 64
[ 0.346815] pci 0000:06:04.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[ 0.346910] pci_bus 0000:00: resource 0 io: [0x00-0xffff]
[ 0.346914] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffff]
[ 0.346917] pci_bus 0000:01: resource 0 io: [0x9000-0x9fff]
[ 0.346921] pci_bus 0000:01: resource 1 mem: [0xd0100000-0xd01fffff]
[ 0.346925] pci_bus 0000:01: resource 2 pref mem [0xd4000000-0xd7ffffff]
[ 0.346929] pci_bus 0000:02: resource 0 mem: [0x0-0xfff]
[ 0.346933] pci_bus 0000:02: resource 1 mem: [0x0-0xfffff]
[ 0.346936] pci_bus 0000:02: resource 2 mem: [0x0-0xfffff]
[ 0.346940] pci_bus 0000:04: resource 0 mem: [0x0-0xfff]
[ 0.346943] pci_bus 0000:04: resource 1 mem: [0x0-0xfffff]
[ 0.346947] pci_bus 0000:06: resource 0 io: [0xa000-0xafff]
[ 0.346951] pci_bus 0000:06: resource 1 mem: [0xd0200000-0xd02fffff]
[ 0.346954] pci_bus 0000:06: resource 2 pref mem [0x80000000-0x83ffffff]
[ 0.346958] pci_bus 0000:06: resource 3 io: [0x00-0xffff]
[ 0.346962] pci_bus 0000:06: resource 4 mem: [0x000000-0xffffffffff]
[ 0.346966] pci_bus 0000:07: resource 0 io: [0xa400-0xa4ff]
[ 0.346969] pci_bus 0000:07: resource 1 io: [0xa800-0xa8ff]
[ 0.346974] pci_bus 0000:07: resource 2 pref mem [0x80000000-0x83ffffff]
[ 0.346977] pci_bus 0000:07: resource 3 mem: [0x88000000-0x8bffffff]
[ 0.347041] NET: Registered protocol family 2
[ 0.347231] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
[ 0.348129] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[ 0.350641] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.351364] TCP: Hash tables configured (established 262144 bind 65536)
[ 0.351454] TCP reno registered
[ 0.351660] NET: Registered protocol family 1
[ 0.351826] Unpacking initramfs...
[ 0.461242] Freeing initrd memory: 3524k freed
[ 0.465147] Scanning for low memory corruption every 60 seconds
[ 0.470672] NTFS driver 2.1.29 [Flags: R/O].
[ 0.471460] Btrfs loaded
[ 0.471559] msgmni has been set to 3884
[ 0.472435] alg: No test for stdrng (krng)
[ 0.472536] io scheduler noop registered
[ 0.472623] io scheduler anticipatory registered
[ 0.472711] io scheduler deadline registered
[ 0.472822] io scheduler cfq registered (default)
[ 0.472918] pci 0000:00:00.0: MSI quirk detected; MSI disabled
[ 0.473091] pci 0000:01:05.0: Boot video device
[ 0.473671] radeonfb 0000:01:05.0: power state changed by ACPI to D0
[ 0.473774] radeonfb 0000:01:05.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 0.474608] radeonfb: Retrieved PLL infos from BIOS
[ 0.474698] radeonfb: Reference=14.32 MHz (RefDiv=6) Memory=300.00 Mhz, System=200.00 MHz
[ 0.474836] radeonfb: PLL min 20000 max 40000
[ 0.889042] Non-DDC laptop panel detected
[ 0.963057] i2c-adapter i2c-2: unable to read EDID block.
[ 1.079051] i2c-adapter i2c-2: unable to read EDID block.
[ 1.195056] i2c-adapter i2c-2: unable to read EDID block.
[ 1.445044] radeonfb: Monitor 1 type LCD found
[ 1.445132] radeonfb: Monitor 2 type no found
[ 1.445221] radeonfb: panel ID string: AUO
[ 1.445322] radeonfb: detected LVDS panel size from BIOS: 1280x800
[ 1.445411] radeondb: BIOS provided dividers will be used
[ 1.479937] Console: switching to colour frame buffer device 160x50
[ 1.510704] radeonfb (0000:01:05.0): ATI Radeon 5975 "Yu"
[ 1.529453] ACPI: AC Adapter [ACAD] (on-line)
[ 1.529728] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 1.529779] ACPI: Power Button [PWRF]
[ 1.529945] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
[ 1.530077] ACPI: Lid Switch [LID]
[ 1.530235] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
[ 1.530319] ACPI: Power Button [PWRB]
[ 1.530479] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
[ 1.530532] ACPI: Sleep Button [SLPB]
[ 1.530771] Starting root bridge search from \_SB_.PCI0.AGP_.VGA_
[ 1.530817] + Adding \_SB_.PCI0.AGP_.VGA_
[ 1.530851] + Adding \_SB_.PCI0.AGP_
[ 1.530882] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 1.530930] Searching for 0000:00:01.0
[ 1.530966] Searching for 0000:01:05.0
[ 1.531150] Starting root bridge search from \_SB_.PCI0.AGP_.VGA_
[ 1.531194] + Adding \_SB_.PCI0.AGP_.VGA_
[ 1.531228] + Adding \_SB_.PCI0.AGP_
[ 1.531273] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 1.531319] Searching for 0000:00:01.0
[ 1.531355] Searching for 0000:01:05.0
[ 1.531397] Starting root bridge search from \_SB_.PCI0.PEG_.VGA_
[ 1.531440] + Adding \_SB_.PCI0.PEG_.VGA_
[ 1.531474] + Adding \_SB_.PCI0.PEG_
[ 1.532592] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 1.533784] Searching for 0000:00:02.0
[ 1.535007] Ouch.
[ 1.536779] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A03:00/device:24/device:25/input/input4
[ 1.538126] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no)
[ 1.539536] Starting root bridge search from \_SB_.PCI0.PEG_.VGA_
[ 1.540923] + Adding \_SB_.PCI0.PEG_.VGA_
[ 1.542344] + Adding \_SB_.PCI0.PEG_
[ 1.543789] pci_bus 0000:00: I'm a little pci_bus, short and stout...
[ 1.545286] Searching for 0000:00:02.0
[ 1.546828] Ouch.
[ 1.548542] ACPI: processor limited to max C-state 1
[ 1.550276] processor LNXCPU:00: registered as cooling_device0
[ 1.552035] processor LNXCPU:01: registered as cooling_device1
[ 1.655075] ACPI: Invalid active0 threshold
[ 1.686047] thermal LNXTHERM:01: registered as thermal_zone0
[ 1.687808] ACPI: Thermal Zone [THRM] (61 C)
[ 1.694651] Non-volatile memory driver v1.3
[ 1.696593] Linux agpgart interface v0.103
[ 1.698595] [drm] Initialized drm 1.1.0 20060810
[ 1.700536] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 1.702847] Platform driver 'serial8250' needs updating - please use dev_pm_ops
[ 1.706191] loop: module loaded
[ 1.708110] Uniform Multi-Platform E-IDE driver
[ 1.710084] atiixp 0000:00:14.1: IDE controller (0x1002:0x4376 rev 0x80)
[ 1.712001] ATIIXP_IDE 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 1.713872] atiixp 0000:00:14.1: not 100% native mode: will probe irqs later
[ 1.715743] ide0: BM-DMA at 0x8420-0x8427
[ 1.717646] atiixp 0000:00:14.1: simplex device: DMA disabled
[ 1.719513] ide1: DMA disabled
[ 1.721440] Probing IDE interface ide0...
[ 1.994016] ACPI: Battery Slot [BAT1] (battery present)
[ 2.393551] hda: MATSHITADVD-RAM UJ-850S, ATAPI CD/DVD-ROM drive
[ 2.701146] hda: host max PIO4 wanted PIO255(auto-tune) selected PIO4
[ 2.701458] hda: UDMA/33 mode selected
[ 2.703746] Probing IDE interface ide1...
[ 2.706753] ide1: no devices on the port
[ 2.708735] ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
[ 2.710698] ide1 at 0x170-0x177,0x376 on irq 15
[ 2.712772] ide-gd driver 1.18
[ 2.714728] ide-cd driver 5.00
[ 2.717736] ide-cd: hda: ATAPI 24X DVD-ROM DVD-R/RAM CD-R/RW drive, 2048kB Cache
[ 2.719771] Uniform CD-ROM driver Revision: 3.20
[ 2.727554] sata_sil 0000:00:12.0: version 2.4
[ 2.727590] sata_sil 0000:00:12.0: enabling device (0005 -> 0007)
[ 2.729607] sata_sil 0000:00:12.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 2.731710] scsi0 : sata_sil
[ 2.734015] scsi1 : sata_sil
[ 2.736542] ata1: SATA max UDMA/100 mmio m512@0xd0004000 tf 0xd0004080 irq 22
[ 2.738622] ata2: SATA max UDMA/100 mmio m512@0xd0004000 tf 0xd00040c0 irq 22
[ 2.741082] 8139too Fast Ethernet driver 0.9.28
[ 2.743228] 8139too 0000:06:01.0: power state changed by ACPI to D0
[ 2.745296] 8139too 0000:06:01.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[ 2.748323] eth0: RealTek RTL8139 at 0xffffc90000052000, 00:16:d4:65:9a:6a, IRQ 21
[ 2.750475] ath5k 0000:06:02.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 2.752583] ath5k 0000:06:02.0: registered as 'phy0'
[ 2.916185] ath: EEPROM regdomain: 0x63
[ 2.916187] ath: EEPROM indicates we should expect a direct regpair map
[ 2.916192] ath: Country alpha2 being used: 00
[ 2.916195] ath: Regpair used: 0x63
[ 2.916925] phy0: Selected rate control algorithm 'minstrel'
[ 2.917316] ath5k phy0: Atheros AR2413 chip found (MAC: 0x78, PHY: 0x45)
[ 2.919585] yenta_cardbus 0000:06:04.0: CardBus bridge found [1025:009f]
[ 2.921698] yenta_cardbus 0000:06:04.0: Using CSCINT to route CSC interrupts to PCI
[ 2.923771] yenta_cardbus 0000:06:04.0: Routing CardBus interrupts to PCI
[ 2.925843] yenta_cardbus 0000:06:04.0: TI: mfunc 0x90501212, devctl 0x44
[ 3.300086] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 310)
[ 3.305572] ata1.00: ATA-7: Hitachi HTS541612J9SA00, SBDOC70P, max UDMA/100
[ 3.307719] ata1.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 0/32)
[ 3.315591] ata1.00: configured for UDMA/100
[ 3.317816] scsi 0:0:0:0: Direct-Access ATA Hitachi HTS54161 SBDO PQ: 0 ANSI: 5
[ 3.320402] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/111 GiB)
[ 3.322725] sd 0:0:0:0: [sda] Write Protect is off
[ 3.324959] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 3.324987] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 3.327404] sda:
[ 3.327678] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 3.637071] ata2: SATA link down (SStatus 0 SControl 310)
[ 3.744647] sda1 sda2 sda3 sda4 < sda5 sda6 >
[ 3.783064] sd 0:0:0:0: [sda] Attached SCSI disk
[ 3.907844] yenta_cardbus 0000:06:04.0: ISA IRQ mask 0x0cf8, PCI irq 20
[ 3.910091] yenta_cardbus 0000:06:04.0: Socket status: 30000006
[ 3.912359] yenta_cardbus 0000:06:04.0: pcmcia: parent PCI bridge I/O window: 0xa000 - 0xafff
[ 3.914610] yenta_cardbus 0000:06:04.0: pcmcia: parent PCI bridge Memory window: 0xd0200000 - 0xd02fffff
[ 3.916855] yenta_cardbus 0000:06:04.0: pcmcia: parent PCI bridge Memory window: 0x80000000 - 0x83ffffff
[ 4.170378] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 4.172668] ehci_hcd: block sizes: qh 160 qtd 96 itd 192 sitd 96
[ 4.172709] ehci_hcd 0000:00:13.2: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[ 4.174960] ehci_hcd 0000:00:13.2: EHCI Host Controller
[ 4.177293] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 1
[ 4.179617] ehci_hcd 0000:00:13.2: reset hcs_params 0x2408 dbg=0 cc=2 pcc=4 ordered !ppc ports=8
[ 4.179623] ehci_hcd 0000:00:13.2: reset hcc_params a012 thresh 1 uframes 256/512/1024
[ 4.179660] ehci_hcd 0000:00:13.2: reset command 080022 (park)=0 ithresh=8 Async period=1024 Reset HALT
[ 4.179683] ehci_hcd 0000:00:13.2: MWI active
[ 4.179686] ehci_hcd 0000:00:13.2: supports USB remote wakeup
[ 4.179707] ehci_hcd 0000:00:13.2: irq 19, io mem 0xd0007000
[ 4.181985] ehci_hcd 0000:00:13.2: reset command 080002 (park)=0 ithresh=8 period=1024 Reset HALT
[ 4.181997] ehci_hcd 0000:00:13.2: init command 010009 (park)=0 ithresh=1 period=256 RUN
[ 4.187295] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
[ 4.189632] usb usb1: default language 0x0409
[ 4.189643] usb usb1: udev 1, busnum 1, minor = 0
[ 4.189646] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 4.191935] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.194180] usb usb1: Product: EHCI Host Controller
[ 4.196443] usb usb1: Manufacturer: Linux 2.6.31-rc1-00001-gdcecde2-dirty ehci_hcd
[ 4.198654] usb usb1: SerialNumber: 0000:00:13.2
[ 4.200902] usb usb1: uevent
[ 4.200968] usb usb1: usb_probe_device
[ 4.200973] usb usb1: configuration #1 chosen from 1 choice
[ 4.203129] usb usb1: adding 1-0:1.0 (config #1, interface 0)
[ 4.203152] usb 1-0:1.0: uevent
[ 4.203220] hub 1-0:1.0: usb_probe_interface
[ 4.203223] hub 1-0:1.0: usb_probe_interface - got id
[ 4.203227] hub 1-0:1.0: USB hub found
[ 4.205488] hub 1-0:1.0: 8 ports detected
[ 4.207662] hub 1-0:1.0: standalone hub
[ 4.207664] hub 1-0:1.0: no power switching (usb 1.0)
[ 4.207667] hub 1-0:1.0: individual port over-current protection
[ 4.207671] hub 1-0:1.0: power on to power good time: 20ms
[ 4.207677] hub 1-0:1.0: local power source is good
[ 4.207681] hub 1-0:1.0: trying to enable port power on non-switchable hub
[ 4.207826] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 4.210030] ohci_hcd: block sizes: ed 80 td 96
[ 4.210057] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[ 4.212280] ohci_hcd 0000:00:13.0: OHCI Host Controller
[ 4.214538] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 2
[ 4.216770] ohci_hcd 0000:00:13.0: created debug files
[ 4.216773] ohci_hcd 0000:00:13.0: supports USB remote wakeup
[ 4.216783] ohci_hcd 0000:00:13.0: irq 19, io mem 0xd0005000
[ 4.267070] ohci_hcd 0000:00:13.0: OHCI controller state
[ 4.267076] ohci_hcd 0000:00:13.0: OHCI 1.0, NO legacy support registers
[ 4.267083] ohci_hcd 0000:00:13.0: control 0x283 RWC HCFS=operational CBSR=3
[ 4.267089] ohci_hcd 0000:00:13.0: cmdstatus 0x00000 SOC=0
[ 4.267095] ohci_hcd 0000:00:13.0: intrstatus 0x00000000
[ 4.267102] ohci_hcd 0000:00:13.0: intrenable 0x8000001a MIE UE RD WDH
[ 4.267117] ohci_hcd 0000:00:13.0: hcca frame #0000
[ 4.267124] ohci_hcd 0000:00:13.0: roothub.a 00000204 POTPGT=0 NPS NDP=4(4)
[ 4.267130] ohci_hcd 0000:00:13.0: roothub.b 00000000 PPCM=0000 DR=0000
[ 4.267136] ohci_hcd 0000:00:13.0: roothub.status 00008000 DRWE
[ 4.267142] ohci_hcd 0000:00:13.0: roothub.portstatus [0] 0x00000100 PPS
[ 4.267149] ohci_hcd 0000:00:13.0: roothub.portstatus [1] 0x00000100 PPS
[ 4.267155] ohci_hcd 0000:00:13.0: roothub.portstatus [2] 0x00000100 PPS
[ 4.267162] ohci_hcd 0000:00:13.0: roothub.portstatus [3] 0x00000100 PPS
[ 4.267180] usb usb2: default language 0x0409
[ 4.267191] usb usb2: udev 1, busnum 2, minor = 128
[ 4.267194] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[ 4.269336] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.271481] usb usb2: Product: OHCI Host Controller
[ 4.273601] usb usb2: Manufacturer: Linux 2.6.31-rc1-00001-gdcecde2-dirty ohci_hcd
[ 4.275724] usb usb2: SerialNumber: 0000:00:13.0
[ 4.277881] usb usb2: uevent
[ 4.277949] usb usb2: usb_probe_device
[ 4.277953] usb usb2: configuration #1 chosen from 1 choice
[ 4.280059] usb usb2: adding 2-0:1.0 (config #1, interface 0)
[ 4.280083] usb 2-0:1.0: uevent
[ 4.280150] hub 2-0:1.0: usb_probe_interface
[ 4.280153] hub 2-0:1.0: usb_probe_interface - got id
[ 4.280157] hub 2-0:1.0: USB hub found
[ 4.282365] hub 2-0:1.0: 4 ports detected
[ 4.284495] hub 2-0:1.0: standalone hub
[ 4.284497] hub 2-0:1.0: no power switching (usb 1.0)
[ 4.284500] hub 2-0:1.0: global over-current protection
[ 4.284503] hub 2-0:1.0: power on to power good time: 0ms
[ 4.284511] hub 2-0:1.0: local power source is good
[ 4.284514] hub 2-0:1.0: no over-current condition exists
[ 4.284518] hub 2-0:1.0: trying to enable port power on non-switchable hub
[ 4.284583] ohci_hcd 0000:00:13.1: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[ 4.286740] ohci_hcd 0000:00:13.1: OHCI Host Controller
[ 4.288982] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 3
[ 4.291191] ohci_hcd 0000:00:13.1: created debug files
[ 4.291194] ohci_hcd 0000:00:13.1: supports USB remote wakeup
[ 4.291202] ohci_hcd 0000:00:13.1: irq 19, io mem 0xd0006000
[ 4.307065] ehci_hcd 0000:00:13.2: GetStatus port 4 status 001803 POWER sig=j CSC CONNECT
[ 4.307070] hub 1-0:1.0: port 4: status 0501 change 0001
[ 4.307089] ehci_hcd 0000:00:13.2: GetStatus port 7 status 001403 POWER sig=k CSC CONNECT
[ 4.307094] hub 1-0:1.0: port 7: status 0501 change 0001
[ 4.344333] ohci_hcd 0000:00:13.1: OHCI controller state
[ 4.344340] ohci_hcd 0000:00:13.1: OHCI 1.0, NO legacy support registers
[ 4.344346] ohci_hcd 0000:00:13.1: control 0x283 RWC HCFS=operational CBSR=3
[ 4.344352] ohci_hcd 0000:00:13.1: cmdstatus 0x00000 SOC=0
[ 4.344358] ohci_hcd 0000:00:13.1: intrstatus 0x00000000
[ 4.344364] ohci_hcd 0000:00:13.1: intrenable 0x8000001a MIE UE RD WDH
[ 4.344379] ohci_hcd 0000:00:13.1: hcca frame #0000
[ 4.344385] ohci_hcd 0000:00:13.1: roothub.a 00000204 POTPGT=0 NPS NDP=4(4)
[ 4.344390] ohci_hcd 0000:00:13.1: roothub.b 00000000 PPCM=0000 DR=0000
[ 4.344397] ohci_hcd 0000:00:13.1: roothub.status 00008000 DRWE
[ 4.344403] ohci_hcd 0000:00:13.1: roothub.portstatus [0] 0x00000100 PPS
[ 4.344410] ohci_hcd 0000:00:13.1: roothub.portstatus [1] 0x00000100 PPS
[ 4.344416] ohci_hcd 0000:00:13.1: roothub.portstatus [2] 0x00000100 PPS
[ 4.344423] ohci_hcd 0000:00:13.1: roothub.portstatus [3] 0x00000100 PPS
[ 4.344438] usb usb3: default language 0x0409
[ 4.344448] usb usb3: udev 1, busnum 3, minor = 256
[ 4.344451] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[ 4.346587] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.348713] usb usb3: Product: OHCI Host Controller
[ 4.350789] usb usb3: Manufacturer: Linux 2.6.31-rc1-00001-gdcecde2-dirty ohci_hcd
[ 4.352820] usb usb3: SerialNumber: 0000:00:13.1
[ 4.354877] usb usb3: uevent
[ 4.354944] usb usb3: usb_probe_device
[ 4.354948] usb usb3: configuration #1 chosen from 1 choice
[ 4.356939] usb usb3: adding 3-0:1.0 (config #1, interface 0)
[ 4.356959] usb 3-0:1.0: uevent
[ 4.357049] hub 3-0:1.0: usb_probe_interface
[ 4.357052] hub 3-0:1.0: usb_probe_interface - got id
[ 4.357055] hub 3-0:1.0: USB hub found
[ 4.359033] hub 3-0:1.0: 4 ports detected
[ 4.360999] hub 3-0:1.0: standalone hub
[ 4.361002] hub 3-0:1.0: no power switching (usb 1.0)
[ 4.361005] hub 3-0:1.0: global over-current protection
[ 4.361011] hub 3-0:1.0: power on to power good time: 0ms
[ 4.361019] hub 3-0:1.0: local power source is good
[ 4.361022] hub 3-0:1.0: no over-current condition exists
[ 4.361025] hub 3-0:1.0: trying to enable port power on non-switchable hub
[ 4.361149] uhci_hcd: USB Universal Host Controller Interface driver
[ 4.363410] usbcore: registered new interface driver usblp
[ 4.365346] Initializing USB Mass Storage driver...
[ 4.367351] usbcore: registered new interface driver usb-storage
[ 4.369285] USB Mass Storage support registered.
[ 4.371345] usbcore: registered new interface driver libusual
[ 4.373410] PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSS0] at 0x60,0x64 irq 1,12
[ 4.375354] Platform driver 'i8042' needs updating - please use dev_pm_ops
[ 4.377676] i8042.c: Detected active multiplexing controller, rev 1.1.
[ 4.379684] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 4.381592] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[ 4.383501] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[ 4.385390] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[ 4.387266] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[ 4.389247] hub 2-0:1.0: state 7 ports 4 chg 0000 evt 0000
[ 4.389288] mice: PS/2 mouse device common for all mice
[ 4.391718] rtc_cmos 00:04: RTC can wake from S4
[ 4.393709] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[ 4.395634] rtc0: alarms up to one month, 114 bytes nvram
[ 4.397721] cpuidle: using governor ladder
[ 4.399638] cpuidle: using governor menu
[ 4.400533] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input5
[ 4.405766] usbcore: registered new interface driver hiddev
[ 4.407701] hub 1-0:1.0: state 7 ports 8 chg 0090 evt 0000
[ 4.407717] hub 1-0:1.0: port 4, status 0501, change 0000, 480 Mb/s
[ 4.407790] usbcore: registered new interface driver usbhid
[ 4.409699] usbhid: v2.6:USB HID core driver
[ 4.411499] acer-wmi: Acer Laptop ACPI-WMI Extras
[ 4.424849] Platform driver 'acer-wmi' needs updating - please use dev_pm_ops
[ 4.426937] Registered led device: acer-wmi::mail
[ 4.457920] Advanced Linux Sound Architecture Driver Version 1.0.20.
[ 4.459849] ehci_hcd 0000:00:13.2: port 4 high speed
[ 4.459856] ehci_hcd 0000:00:13.2: GetStatus port 4 status 001005 POWER sig=se0 PE CONNECT
[ 4.460302] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 4.494144] hda_codec: Unknown model for ALC883, trying auto-probe from BIOS...
[ 4.510059] usb 1-4: new high speed USB device using ehci_hcd and address 2
[ 4.522305] ALSA device list:
[ 4.524217] #0: HDA ATI SB at 0xd0000000 irq 16
[ 4.526242] oprofile: using NMI interrupt.
[ 4.528187] Netfilter messages via NETLINK v0.30.
[ 4.530091] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[ 4.532459] ctnetlink v0.93: registering with nfnetlink.
[ 4.535228] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 4.537156] TCP cubic registered
[ 4.539003] Initializing XFRM netlink socket
[ 4.541415] NET: Registered protocol family 10
[ 4.545223] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 4.547176] IPv6 over IPv4 tunneling driver
[ 4.550033] NET: Registered protocol family 17
[ 4.551880] lib80211: common routines for IEEE802.11 drivers
[ 4.553687] lib80211_crypt: registered algorithm 'NULL'
[ 4.553722] powernow-k8: Found 1 AMD Turion(tm) 64 X2 Mobile Technology TL-50 processors (2 cpu cores) (version 2.20.00)
[ 4.555652] powernow-k8: 0 : fid 0x8 (1600 MHz), vid 0x13
[ 4.557547] powernow-k8: 1 : fid 0x0 (800 MHz), vid 0x1e
[ 4.560444] [drm] Initialized radeon 1.30.0 20080528 for 0000:01:05.0 on minor 0
[ 4.563143] Freeing unused kernel memory: 412k freed
[ 4.563319] ehci_hcd 0000:00:13.2: port 4 high speed
[ 4.563325] ehci_hcd 0000:00:13.2: GetStatus port 4 status 001005 POWER sig=se0 PE CONNECT
[ 4.565378] Write protecting the kernel read-only data: 6676k
[ 4.632720] usb 1-4: default language 0x0409
[ 4.633971] usb 1-4: udev 2, busnum 1, minor = 1
[ 4.633975] usb 1-4: New USB device found, idVendor=0402, idProduct=5602
[ 4.635911] usb 1-4: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 4.637834] usb 1-4: Product: USB2.0 Camera
[ 4.639877] usb 1-4: uevent
[ 4.639971] usb 1-4: usb_probe_device
[ 4.639975] usb 1-4: configuration #1 chosen from 1 choice
[ 4.642110] usb 1-4: adding 1-4:1.0 (config #1, interface 0)
[ 4.642131] usb 1-4:1.0: uevent
[ 4.642276] hub 1-0:1.0: port 7, status 0501, change 0000, 480 Mb/s
[ 4.642292] ehci_hcd 0000:00:13.2: port 7 low speed --> companion
[ 4.693062] ehci_hcd 0000:00:13.2: GetStatus port 7 status 003002 POWER OWNER sig=se0 CSC
[ 4.693103] hub 3-0:1.0: state 7 ports 4 chg 0000 evt 0000
[ 4.693107] hub 1-0:1.0: state 7 ports 8 chg 0000 evt fe80
[ 4.693116] hub 2-0:1.0: state 7 ports 4 chg 0000 evt 0010
[ 4.693124] ohci_hcd 0000:00:13.0: GetStatus roothub.portstatus [3] = 0x00010301 CSC LSDA PPS CCS
[ 4.693131] hub 2-0:1.0: port 4, status 0301, change 0001, 1.5 Mb/s
[ 4.797301] hub 2-0:1.0: debounce: port 4: total 100ms stable 100ms status 0x301
[ 4.859284] ohci_hcd 0000:00:13.0: GetStatus roothub.portstatus [3] = 0x00100303 PRSC LSDA PPS PES CCS
[ 4.911071] usb 2-4: new low speed USB device using ohci_hcd and address 2
[ 4.979302] ohci_hcd 0000:00:13.0: GetStatus roothub.portstatus [3] = 0x00100303 PRSC LSDA PPS PES CCS
[ 4.999670] Synaptics Touchpad, model: 1, fw: 6.2, id: 0x1280b1, caps: 0xa04713/0x204000
[ 5.029727] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input6
[ 5.048099] usb 2-4: skipped 1 descriptor after interface
[ 5.050093] usb 2-4: default language 0x0409
[ 5.054098] usb 2-4: udev 2, busnum 2, minor = 129
[ 5.054102] usb 2-4: New USB device found, idVendor=046d, idProduct=c016
[ 5.054105] usb 2-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 5.054109] usb 2-4: Product: Optical USB Mouse
[ 5.054112] usb 2-4: Manufacturer: Logitech
[ 5.054167] usb 2-4: uevent
[ 5.054183] usb 2-4: usb_probe_device
[ 5.054186] usb 2-4: configuration #1 chosen from 1 choice
[ 5.056097] usb 2-4: adding 2-4:1.0 (config #1, interface 0)
[ 5.056117] usb 2-4:1.0: uevent
[ 5.056148] usbhid 2-4:1.0: usb_probe_interface
[ 5.056151] usbhid 2-4:1.0: usb_probe_interface - got id
[ 5.061461] input: Logitech Optical USB Mouse as /devices/pci0000:00/0000:00:13.0/usb2/2-4/2-4:1.0/input/input7
[ 5.061567] generic-usb 0003:046D:C016.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech Optical USB Mouse] on usb-0000:00:13.0-4/input0
[ 5.061610] hub 2-0:1.0: state 7 ports 4 chg 0000 evt 0010
[ 5.221754] device fsid 274602298a1fc5d5-f02658d97f5041ab devid 1 transid 9942 /dev/root
[ 5.454287] ohci_hcd 0000:00:13.1: auto-stop root hub
[ 10.652275] udev: starting version 141
[ 10.922506] usb usb2: uevent
[ 10.922530] usb 2-0:1.0: uevent
[ 10.922558] usb 2-4: uevent
[ 10.922580] usb 2-4:1.0: uevent
[ 10.922791] usb usb3: uevent
[ 10.922814] usb 3-0:1.0: uevent
[ 10.922879] usb usb1: uevent
[ 10.922902] usb 1-0:1.0: uevent
[ 10.922928] usb 1-4: uevent
[ 10.922950] usb 1-4:1.0: uevent
[ 11.313133] usb usb3: uevent
[ 11.314112] usb usb2: uevent
[ 11.314953] usb usb1: uevent
[ 11.319355] usb 2-4: uevent
[ 11.319775] usb 1-4: uevent
[ 11.330085] usb 2-4:1.0: uevent
[ 11.330213] usb 2-4: uevent
[ 11.334265] usb 2-4:1.0: uevent
[ 11.334377] usb 2-4: uevent
[ 12.220401] cfg80211: Calling CRDA for country: GB
[ 12.577561] cfg80211: Regulatory domain changed to country: GB
[ 12.577566] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[ 12.577570] (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[ 12.577574] (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[ 12.577578] (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[ 12.577581] (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm)
[ 18.246617] kjournald starting. Commit interval 5 seconds
[ 18.246878] EXT3 FS on sda2, internal journal
[ 18.246885] EXT3-fs: mounted filesystem with writeback data mode.
[ 18.247780] device fsid 5546849524d35efd-a3766877130d7194 devid 1 transid 10384 /dev/sda6
[ 20.039624] Adding 1535992k swap on /dev/sda5. Priority:-1 extents:1 across:1535992k