Re: PCIe enumeration

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



* Yinghai Lu wrote:
> On Mon, Nov 16, 2009 at 7:40 AM, Thierry Reding
> <thierry.reding@xxxxxxxxxxxxxxxxx> wrote:
> > Hi,
> >
> > I have a setup where an FPGA is connected to a PCIe port. The FPGA itself
> > acts as a bridge and forwards PCI requests to some user logic that in turn
> > simulates multiple PCIe endpoints. The communication between the root complex
> > and the user logic works fine and all endpoints are visible to the BIOS and
> > Linux later on.
> >
> > One problem that we're facing now is that during PCIe enumeration, the BIOS
> > seems to correctly allocate and assign resources for all endpoints, but only
> > if all BARs are designated prefetchable.
> >
> > If the BARs are configured as non-prefetchable, however, the BIOS still seems
> > to allocate and assign resources correctly, but after the first assignment of
> > base addresses, it decides to overwrite these with 0, except for the very
> > first endpoint. Now when Linux comes up it reads those BARs and decodes them
> > again, then writes the original 0 back. Therefore when the BARs are marked
> > non-prefetchable, all endpoints except the first end up unusable in the
> > system.
> >
> > Does anyone have an idea what might be going on here? Is there some
> > restriction in PCIe that may be causing this behaviour? I've been going
> > through the specification looking for clues but so far haven't come up with
> > anything.
> >
> > Presuming I can't make the BIOS "do the right thing", is it possible to have
> > the Linux kernel redo the PCIe enumeration and ignore the BIOS completely?
> > Again I've been going through the code but all I've been able to find is those
> > places where Linux checks the resources as allocated by the BIOS. There seems
> > to be no code to override the BIOS.
> 
> please send out bootlog and lspci -tv...

dmesg (prefetchable and non-prefetchable cases) and lspci -tv output is
attached. Perhaps I should give some more details about the setup: as can be
seen from the lspci setup, there are three endpoints implemented in the FPGA,
each behind its own bridge. All endpoints have all 6 BARs implemented, each
BAR being 1MB non-prefetchable. For what it's worth, decreasing the BAR size
to 64KB makes no difference.

The odd thing, judging by the dmesg output, is that the bridges before the
endpoints seem to get the correct configuration. Only for the endpoints does
the BIOS seem to get things wrong. Dumping accesses to the BARs from within
the FPGA shows that the BIOS indeed writes the correct bases to the endpoint
registers (the bases nicely fitting into the window that the bridge is
configured with) but then goes and overwrites those values with 0.

Again, switching from non-prefetchable to prefetchable mode no longer exposes
the issue as demonstrated by the second dmesg output.

Thierry
-[0000:00]-+-00.0  Intel Corporation System Controller Hub (SCH Poulsbo)
           +-02.0  Intel Corporation System Controller Hub (SCH Poulsbo) Graphics Controller
           +-1b.0  Intel Corporation System Controller Hub (SCH Poulsbo) HD Audio Controller
           +-1c.0-[0000:01-06]----00.0-[0000:02-05]--+-00.0-[0000:03]----00.0  Device a510:0001
           |                                         +-01.0-[0000:04]----00.0  Device a510:0001
           |                                         \-02.0-[0000:05]----00.0  Device a510:0001
           +-1c.1-[0000:07]----00.0  Intel Corporation 82574L Gigabit Network Connection
           +-1d.0  Intel Corporation System Controller Hub (SCH Poulsbo) USB UHCI #1
           +-1d.1  Intel Corporation System Controller Hub (SCH Poulsbo) USB UHCI #2
           +-1d.2  Intel Corporation System Controller Hub (SCH Poulsbo) USB UHCI #3
           +-1d.7  Intel Corporation System Controller Hub (SCH Poulsbo) USB EHCI #1
           +-1e.0  Intel Corporation System Controller Hub (SCH Poulsbo) SDIO Controller #1
           +-1f.0  Intel Corporation System Controller Hub (SCH Poulsbo) LPC Bridge
           \-1f.1  Intel Corporation System Controller Hub (SCH Poulsbo) IDE Controller
[    0.000000] Linux version 2.6.32-rc7-rmu (thierry.reding@avionic-0027) (gcc version 4.4.2 (GCC) ) #6 SMP Mon Nov 16 16:15:04 CET 2009
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   NSC Geode by NSC
[    0.000000]   Cyrix CyrixInstead
[    0.000000]   Centaur CentaurHauls
[    0.000000]   Transmeta GenuineTMx86
[    0.000000]   Transmeta TransmetaCPU
[    0.000000]   UMC UMC UMC UMC
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f400 (usable)
[    0.000000]  BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000001fa50000 (usable)
[    0.000000]  BIOS-e820: 000000001fa50000 - 000000001fa60000 (reserved)
[    0.000000]  BIOS-e820: 000000001fa60000 - 000000001fa6e000 (ACPI data)
[    0.000000]  BIOS-e820: 000000001fa6e000 - 000000001faaff90 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000001faaff90 - 000000001fac0000 (reserved)
[    0.000000]  BIOS-e820: 000000001facc000 - 000000001fc00000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] DMI present.
[    0.000000] last_pfn = 0x1fa50 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-DFFFF uncachable
[    0.000000]   E0000-EFFFF write-through
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask 0E0000000 write-back
[    0.000000]   1 base 01FB00000 mask 0FFF00000 uncachable
[    0.000000]   2 base 01FC00000 mask 0FFC00000 uncachable
[    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] initial memory mapped : 0 - 01800000
[    0.000000] init_memory_mapping: 0000000000000000-000000001fa50000
[    0.000000]  0000000000 - 0000400000 page 4k
[    0.000000]  0000400000 - 001f800000 page 2M
[    0.000000]  001f800000 - 001fa50000 page 4k
[    0.000000] kernel direct mapping tables up to 1fa50000 @ 7000-c000
[    0.000000] RAMDISK: 1f967000 - 1fa4f611
[    0.000000] ACPI: RSDP 000f8fe0 00024 (v02 ACPIAM)
[    0.000000] ACPI: XSDT 1fa60100 0005C (v01 072009 XSDT1401 20090720 MSFT 00000097)
[    0.000000] ACPI: FACP 1fa60290 000F4 (v04 072009 FACP1401 20090720 MSFT 00000097)
[    0.000000] ACPI: DSDT 1fa60430 05C34 (v02  NOW1R NOW1R113 00000113 INTL 20051117)
[    0.000000] ACPI: FACS 1fa6e000 00040
[    0.000000] ACPI: APIC 1fa60390 0005C (v02 072009 APIC1401 20090720 MSFT 00000097)
[    0.000000] ACPI: MCFG 1fa603f0 0003C (v01 072009 OEMMCFG  20090720 MSFT 00000097)
[    0.000000] ACPI: OEMB 1fa6e040 00131 (v01 072009 OEMB1401 20090720 MSFT 00000097)
[    0.000000] ACPI: HPET 1fa66070 00038 (v01 072009 OEMHPET  20090720 MSFT 00000097)
[    0.000000] ACPI: GSCI 1fa6e180 02024 (v01 072009 GMCHSCI  20090720 MSFT 00000097)
[    0.000000] ACPI: SSDT 1fa70b70 004F0 (v01  PmRef    CpuPm 00003000 INTL 20051117)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 0MB HIGHMEM available.
[    0.000000] 506MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 1fa50000
[    0.000000]   low ram: 0 - 1fa50000
[    0.000000]   node 0 low ram: 00000000 - 1fa50000
[    0.000000]   node 0 bootmap 00002000 - 00005f4c
[    0.000000] (9 early reservations) ==> bootmem [0000000000 - 001fa50000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [0000001000 - 0000002000]    EX TRAMPOLINE ==> [0000001000 - 0000002000]
[    0.000000]   #2 [0000006000 - 0000007000]       TRAMPOLINE ==> [0000006000 - 0000007000]
[    0.000000]   #3 [0001000000 - 000151e604]    TEXT DATA BSS ==> [0001000000 - 000151e604]
[    0.000000]   #4 [001f967000 - 001fa4f611]          RAMDISK ==> [001f967000 - 001fa4f611]
[    0.000000]   #5 [000009f400 - 0000100000]    BIOS reserved ==> [000009f400 - 0000100000]
[    0.000000]   #6 [000151f000 - 0001525193]              BRK ==> [000151f000 - 0001525193]
[    0.000000]   #7 [0000007000 - 0000008000]          PGTABLE ==> [0000007000 - 0000008000]
[    0.000000]   #8 [0000002000 - 0000006000]          BOOTMAP ==> [0000002000 - 0000006000]
[    0.000000] found SMP MP-table at [c00ff780] ff780
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x0001fa50
[    0.000000]   HighMem  0x0001fa50 -> 0x0001fa50
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[2] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x0001fa50
[    0.000000] On node 0 totalpages: 129519
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3967 pages, LIFO batch:0
[    0.000000]   Normal zone: 981 pages used for memmap
[    0.000000]   Normal zone: 124539 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x908
[    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[0x81] disabled)
[    0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 1, version 32, 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 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] SMP: Allowing 2 CPUs, 1 hotplug CPUs
[    0.000000] nr_irqs_gsi: 24
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[    0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 1fc00000 (gap: 1fc00000:df200000)
[    0.000000] NR_CPUS:2 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] PERCPU: Embedded 12 pages/cpu @c1c00000 s26008 r0 d23144 u2097152
[    0.000000] pcpu-alloc: s26008 r0 d23144 u2097152 alloc=1*4194304
[    0.000000] pcpu-alloc: [0] 0 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 128506
[    0.000000] Kernel command line: initrd=initrd.gz root=/dev/sda1:/rootfs.img BOOT_IMAGE=vmlinuz 
[    0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes)
[    0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 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] Initializing HighMem for node 0 (00000000:00000000)
[    0.000000] Memory: 506972k/518464k available (2965k kernel code, 10844k reserved, 1378k data, 348k init, 0k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff91000 - 0xfffff000   ( 440 kB)
[    0.000000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
[    0.000000]     vmalloc : 0xe0250000 - 0xff7fe000   ( 501 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xdfa50000   ( 506 MB)
[    0.000000]       .init : 0xc143f000 - 0xc1496000   ( 348 kB)
[    0.000000]       .data : 0xc12e57d4 - 0xc143e1e4   (1378 kB)
[    0.000000]       .text : 0xc1000000 - 0xc12e57d4   (2965 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:2304 nr_irqs:424
[    0.000000] Extended CMOS year: 2000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1100.056 MHz processor.
[    0.004010] Calibrating delay loop (skipped), value calculated using timer frequency.. 2200.11 BogoMIPS (lpj=4400224)
[    0.004356] Mount-cache hash table entries: 512
[    0.004755] CPU: L1 I cache: 32K, L1 D cache: 24K
[    0.004917] CPU: L2 cache: 512K
[    0.005019] mce: CPU supports 5 MCE banks
[    0.005122] Disabling lock debugging due to kernel taint
[    0.008014] CPU0: Thermal monitoring handled by SMI
[    0.008025] using mwait in idle threads.
[    0.008148] Checking 'hlt' instruction... OK.
[    0.024592] SMP alternatives: switching to UP code
[    0.029085] ACPI: Core revision 20090903
[    0.048591] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.090810] CPU0: Intel(R) Atom(TM) CPU Z510   @ 1.10GHz stepping 02
[    0.092001] Brought up 1 CPUs
[    0.092001] Total of 1 processors activated (2200.11 BogoMIPS).
[    0.092001] CPU0 attaching NULL sched-domain.
[    0.092001] NET: Registered protocol family 16
[    0.092001] ACPI: bus type pci registered
[    0.092001] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.092001] PCI: Not using MMCONFIG.
[    0.092001] PCI: PCI BIOS revision 3.00 entry at 0xf0031, last bus=7
[    0.092018] PCI: Using configuration type 1 for base access
[    0.101447] bio: create slab <bio-0> at 0
[    0.103577] ACPI: EC: Look up EC in DSDT
[    0.110212] ACPI: Executed 1 blocks of module-level executable AML code
[    0.120696] ACPI: Interpreter enabled
[    0.120827] ACPI: (supports S0 S3 S5)
[    0.121159] ACPI: Using IOAPIC for interrupt routing
[    0.121418] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.131461] PCI: MCFG area at e0000000 reserved in ACPI motherboard resources
[    0.131573] PCI: Using MMCONFIG for extended config space
[    0.153972] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.154406] pci 0000:00:02.0: reg 10 32bit mmio: [0xdff80000-0xdfffffff]
[    0.154424] pci 0000:00:02.0: reg 14 io port: [0xe880-0xe887]
[    0.154439] pci 0000:00:02.0: reg 18 32bit mmio: [0xc0000000-0xcfffffff]
[    0.154454] pci 0000:00:02.0: reg 1c 32bit mmio: [0xdff40000-0xdff7ffff]
[    0.154612] pci 0000:00:1b.0: reg 10 64bit mmio: [0xdff3c000-0xdff3ffff]
[    0.154677] pci 0000:00:1b.0: PME# supported from D0 D3hot
[    0.154786] pci 0000:00:1b.0: PME# disabled
[    0.154978] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.155090] pci 0000:00:1c.0: PME# disabled
[    0.155284] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.155394] pci 0000:00:1c.1: PME# disabled
[    0.155563] pci 0000:00:1d.0: reg 20 io port: [0xe480-0xe49f]
[    0.155642] pci 0000:00:1d.1: reg 20 io port: [0xe080-0xe09f]
[    0.155720] pci 0000:00:1d.2: reg 20 io port: [0xef00-0xef1f]
[    0.155829] pci 0000:00:1d.7: reg 10 32bit mmio: [0xdff3bc00-0xdff3bfff]
[    0.155929] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.156071] pci 0000:00:1d.7: PME# disabled
[    0.156215] pci 0000:00:1e.0: reg 10 32bit mmio: [0xdff3b800-0xdff3b8ff]
[    0.156403] pci 0000:00:1f.1: reg 20 io port: [0xffa0-0xffaf]
[    0.156604] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    0.156716] pci 0000:01:00.0: PME# disabled
[    0.156893] pci 0000:00:1c.0: bridge io port: [0xc000-0xcfff]
[    0.156904] pci 0000:00:1c.0: bridge 32bit mmio: [0xbce00000-0xbfcfffff]
[    0.156917] pci 0000:00:1c.0: bridge 32bit mmio pref: [0xfc500000-0xfeafffff]
[    0.157467] pci 0000:02:00.0: reg 10 32bit mmio pref: [0xfca00000-0xfcafffff]
[    0.157865] pci 0000:02:00.0: reg 38 32bit mmio pref: [0x000000-0x0007ff]
[    0.158639] pci 0000:02:01.0: reg 10 32bit mmio pref: [0xfc900000-0xfc9fffff]
[    0.159037] pci 0000:02:01.0: reg 38 32bit mmio pref: [0x000000-0x0007ff]
[    0.159809] pci 0000:02:02.0: reg 10 32bit mmio pref: [0xfc800000-0xfc8fffff]
[    0.160256] pci 0000:02:02.0: reg 38 32bit mmio pref: [0x000000-0x0007ff]
[    0.161868] pci 0000:01:00.0: bridge io port: [0x00-0xfff]
[    0.161881] pci 0000:01:00.0: bridge 32bit mmio: [0xbce00000-0xbf4fffff]
[    0.161894] pci 0000:01:00.0: bridge 32bit mmio pref: [0xfc500000-0xfcafffff]
[    0.176009] pci 0000:03:00.0: reg 10 32bit mmio: [0xbda00000-0xbdafffff]
[    0.192008] pci 0000:03:00.0: reg 14 32bit mmio: [0xbd900000-0xbd9fffff]
[    0.208008] pci 0000:03:00.0: reg 18 32bit mmio: [0xbd800000-0xbd8fffff]
[    0.224008] pci 0000:03:00.0: reg 1c 32bit mmio: [0xbd700000-0xbd7fffff]
[    0.240008] pci 0000:03:00.0: reg 20 32bit mmio: [0xbd600000-0xbd6fffff]
[    0.256008] pci 0000:03:00.0: reg 24 32bit mmio: [0xbd500000-0xbd5fffff]
[    0.256220] pci 0000:03:00.0: reg 30 32bit mmio pref: [0xfc4f0000-0xfc4f07ff]
[    0.268008] pci 0000:02:00.0: bridge 32bit mmio: [0xbce00000-0xbdafffff]
[    0.292009] pci 0000:04:00.0: reg 10 32bit mmio: [0x000000-0x0fffff]
[    0.308008] pci 0000:04:00.0: reg 14 32bit mmio: [0x000000-0x0fffff]
[    0.324008] pci 0000:04:00.0: reg 18 32bit mmio: [0x000000-0x0fffff]
[    0.340008] pci 0000:04:00.0: reg 1c 32bit mmio: [0x000000-0x0fffff]
[    0.356008] pci 0000:04:00.0: reg 20 32bit mmio: [0x000000-0x0fffff]
[    0.372008] pci 0000:04:00.0: reg 24 32bit mmio: [0x000000-0x0fffff]
[    0.372217] pci 0000:04:00.0: reg 30 32bit mmio pref: [0x000000-0x0007ff]
[    0.380008] pci 0000:02:01.0: bridge 32bit mmio: [0xbdb00000-0xbe7fffff]
[    0.408009] pci 0000:05:00.0: reg 10 32bit mmio: [0x000000-0x0fffff]
[    0.424008] pci 0000:05:00.0: reg 14 32bit mmio: [0x000000-0x0fffff]
[    0.440008] pci 0000:05:00.0: reg 18 32bit mmio: [0x000000-0x0fffff]
[    0.456008] pci 0000:05:00.0: reg 1c 32bit mmio: [0x000000-0x0fffff]
[    0.472009] pci 0000:05:00.0: reg 20 32bit mmio: [0x000000-0x0fffff]
[    0.488008] pci 0000:05:00.0: reg 24 32bit mmio: [0x000000-0x0fffff]
[    0.488217] pci 0000:05:00.0: reg 30 32bit mmio pref: [0x000000-0x0007ff]
[    0.500008] pci 0000:02:02.0: bridge 32bit mmio: [0xbe800000-0xbf4fffff]
[    0.508757] pci 0000:07:00.0: reg 10 32bit mmio: [0xbfde0000-0xbfdfffff]
[    0.508789] pci 0000:07:00.0: reg 18 io port: [0xd880-0xd89f]
[    0.508810] pci 0000:07:00.0: reg 1c 32bit mmio: [0xbfddc000-0xbfddffff]
[    0.508918] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
[    0.509031] pci 0000:07:00.0: PME# disabled
[    0.512011] pci 0000:00:1c.1: bridge io port: [0xd000-0xdfff]
[    0.512023] pci 0000:00:1c.1: bridge 32bit mmio: [0xbfd00000-0xbfdfffff]
[    0.512049] pci_bus 0000:00: on NUMA node 0
[    0.512064] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.512469] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.POP4._PRT]
[    0.512666] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.POP5._PRT]
[    0.531957] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    0.533048] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.534136] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    0.535222] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 12 14 *15)
[    0.536320] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.537549] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.538777] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.540188] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.541658] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.541825] vgaarb: loaded
[    0.542452] SCSI subsystem initialized
[    0.542844] usbcore: registered new interface driver usbfs
[    0.543055] usbcore: registered new interface driver hub
[    0.543287] usbcore: registered new device driver usb
[    0.543800] PCI: Using ACPI for IRQ routing
[    0.543985] pci 0000:01:00.0: BAR 13: can't allocate resource
[    0.545092] Switching to clocksource tsc
[    0.548263] pnp: PnP ACPI init
[    0.548423] ACPI: bus type pnp registered
[    0.557579] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:04:00.0 BAR 0 (0x0-0xfffff), disabling
[    0.557733] pnp 00:0c: mem resource (0xc0000-0xcffff) overlaps 0000:04:00.0 BAR 0 (0x0-0xfffff), disabling
[    0.559415] pnp 00:0c: mem resource (0xe0000-0xfffff) overlaps 0000:04:00.0 BAR 0 (0x0-0xfffff), disabling
[    0.559563] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:04:00.0 BAR 1 (0x0-0xfffff), disabling
[    0.559709] pnp 00:0c: mem resource (0xc0000-0xcffff) overlaps 0000:04:00.0 BAR 1 (0x0-0xfffff), disabling
[    0.559856] pnp 00:0c: mem resource (0xe0000-0xfffff) overlaps 0000:04:00.0 BAR 1 (0x0-0xfffff), disabling
[    0.560003] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:04:00.0 BAR 2 (0x0-0xfffff), disabling
[    0.560152] pnp 00:0c: mem resource (0xc0000-0xcffff) overlaps 0000:04:00.0 BAR 2 (0x0-0xfffff), disabling
[    0.560299] pnp 00:0c: mem resource (0xe0000-0xfffff) overlaps 0000:04:00.0 BAR 2 (0x0-0xfffff), disabling
[    0.560446] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:04:00.0 BAR 3 (0x0-0xfffff), disabling
[    0.560592] pnp 00:0c: mem resource (0xc0000-0xcffff) overlaps 0000:04:00.0 BAR 3 (0x0-0xfffff), disabling
[    0.560739] pnp 00:0c: mem resource (0xe0000-0xfffff) overlaps 0000:04:00.0 BAR 3 (0x0-0xfffff), disabling
[    0.560886] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:04:00.0 BAR 4 (0x0-0xfffff), disabling
[    0.561031] pnp 00:0c: mem resource (0xc0000-0xcffff) overlaps 0000:04:00.0 BAR 4 (0x0-0xfffff), disabling
[    0.561178] pnp 00:0c: mem resource (0xe0000-0xfffff) overlaps 0000:04:00.0 BAR 4 (0x0-0xfffff), disabling
[    0.561325] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:04:00.0 BAR 5 (0x0-0xfffff), disabling
[    0.561471] pnp 00:0c: mem resource (0xc0000-0xcffff) overlaps 0000:04:00.0 BAR 5 (0x0-0xfffff), disabling
[    0.561618] pnp 00:0c: mem resource (0xe0000-0xfffff) overlaps 0000:04:00.0 BAR 5 (0x0-0xfffff), disabling
[    0.561784] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:05:00.0 BAR 0 (0x0-0xfffff), disabling
[    0.561930] pnp 00:0c: mem resource (0xc0000-0xcffff) overlaps 0000:05:00.0 BAR 0 (0x0-0xfffff), disabling
[    0.562079] pnp 00:0c: mem resource (0xe0000-0xfffff) overlaps 0000:05:00.0 BAR 0 (0x0-0xfffff), disabling
[    0.562226] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:05:00.0 BAR 1 (0x0-0xfffff), disabling
[    0.562371] pnp 00:0c: mem resource (0xc0000-0xcffff) overlaps 0000:05:00.0 BAR 1 (0x0-0xfffff), disabling
[    0.562518] pnp 00:0c: mem resource (0xe0000-0xfffff) overlaps 0000:05:00.0 BAR 1 (0x0-0xfffff), disabling
[    0.562692] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:05:00.0 BAR 2 (0x0-0xfffff), disabling
[    0.562839] pnp 00:0c: mem resource (0xc0000-0xcffff) overlaps 0000:05:00.0 BAR 2 (0x0-0xfffff), disabling
[    0.562986] pnp 00:0c: mem resource (0xe0000-0xfffff) overlaps 0000:05:00.0 BAR 2 (0x0-0xfffff), disabling
[    0.563135] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:05:00.0 BAR 3 (0x0-0xfffff), disabling
[    0.563281] pnp 00:0c: mem resource (0xc0000-0xcffff) overlaps 0000:05:00.0 BAR 3 (0x0-0xfffff), disabling
[    0.563427] pnp 00:0c: mem resource (0xe0000-0xfffff) overlaps 0000:05:00.0 BAR 3 (0x0-0xfffff), disabling
[    0.563574] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:05:00.0 BAR 4 (0x0-0xfffff), disabling
[    0.563720] pnp 00:0c: mem resource (0xc0000-0xcffff) overlaps 0000:05:00.0 BAR 4 (0x0-0xfffff), disabling
[    0.563867] pnp 00:0c: mem resource (0xe0000-0xfffff) overlaps 0000:05:00.0 BAR 4 (0x0-0xfffff), disabling
[    0.564014] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:05:00.0 BAR 5 (0x0-0xfffff), disabling
[    0.564160] pnp 00:0c: mem resource (0xc0000-0xcffff) overlaps 0000:05:00.0 BAR 5 (0x0-0xfffff), disabling
[    0.564307] pnp 00:0c: mem resource (0xe0000-0xfffff) overlaps 0000:05:00.0 BAR 5 (0x0-0xfffff), disabling
[    0.565395] pnp: PnP ACPI: found 13 devices
[    0.565498] ACPI: ACPI bus type pnp unregistered
[    0.565631] system 00:01: iomem range 0x20000000-0x7fffffff has been reserved
[    0.565745] system 00:01: iomem range 0x1fc00000-0x1fffffff could not be reserved
[    0.565896] system 00:05: ioport range 0xa00-0xa8f has been reserved
[    0.566016] system 00:06: ioport range 0x4d0-0x4d1 has been reserved
[    0.566128] system 00:06: ioport range 0x900-0x9f3 has been reserved
[    0.566238] system 00:06: ioport range 0x400-0x43f has been reserved
[    0.566348] system 00:06: ioport range 0x480-0x4bf has been reserved
[    0.566459] system 00:06: iomem range 0xf0000000-0xf0003fff has been reserved
[    0.566589] system 00:0a: iomem range 0xfec00000-0xfec00fff could not be reserved
[    0.566751] system 00:0a: iomem range 0xfee00000-0xfee00fff has been reserved
[    0.566880] system 00:0b: iomem range 0xe0000000-0xefffffff has been reserved
[    0.567004] system 00:0c: iomem range 0x100000-0x1fbfffff could not be reserved
[    0.603018] pci 0000:03:00.0: BAR 6: no parent found for of device [0xfc4f0000-0xfc4f07ff]
[    1.180424] pci 0000:02:00.0: BAR 6: can't allocate mem resource [0xfcb00000-0xfcafffff]
[    1.180568] pci 0000:02:01.0: BAR 6: can't allocate mem resource [0xfcb00000-0xfcafffff]
[    1.180710] pci 0000:02:02.0: BAR 6: can't allocate mem resource [0xfcb00000-0xfcafffff]
[    1.180850] pci 0000:02:00.0: PCI bridge, secondary bus 0000:03
[    1.180956] pci 0000:02:00.0:   IO window: disabled
[    1.181229] pci 0000:02:00.0:   MEM window: 0xbce00000-0xbdafffff
[    1.587833] pci 0000:02:00.0:   PREFETCH window: 0xfc500000-0xfc5fffff
[    1.797135] pci 0000:02:01.0: PCI bridge, secondary bus 0000:04
[    1.797240] pci 0000:02:01.0:   IO window: disabled
[    1.797495] pci 0000:02:01.0:   MEM window: 0xbdb00000-0xbe7fffff
[    2.202659] pci 0000:02:01.0:   PREFETCH window: 0xfc600000-0xfc6fffff
[    2.413088] pci 0000:02:02.0: PCI bridge, secondary bus 0000:05
[    2.413194] pci 0000:02:02.0:   IO window: disabled
[    2.413449] pci 0000:02:02.0:   MEM window: 0xbe800000-0xbf4fffff
[    2.817613] pci 0000:02:02.0:   PREFETCH window: 0xfc700000-0xfc7fffff
[    3.028786] pci 0000:01:00.0: PCI bridge, secondary bus 0000:02
[    3.028895] pci 0000:01:00.0:   IO window: disabled
[    3.029004] pci 0000:01:00.0:   MEM window: 0xbce00000-0xbf4fffff
[    3.029116] pci 0000:01:00.0:   PREFETCH window: 0xfc500000-0xfcafffff
[    3.029229] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:01
[    3.029338] pci 0000:00:1c.0:   IO window: 0xc000-0xcfff
[    3.029446] pci 0000:00:1c.0:   MEM window: 0xbce00000-0xbfcfffff
[    3.029556] pci 0000:00:1c.0:   PREFETCH window: 0xfc500000-0xfeafffff
[    3.029668] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:07
[    3.029776] pci 0000:00:1c.1:   IO window: 0xd000-0xdfff
[    3.029889] pci 0000:00:1c.1:   MEM window: 0xbfd00000-0xbfdfffff
[    3.029999] pci 0000:00:1c.1:   PREFETCH window: 0x80000000-0x801fffff
[    3.030131]   alloc irq_desc for 16 on node -1
[    3.030139]   alloc kstat_irqs on node -1
[    3.030159] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    3.030274] pci 0000:00:1c.0: setting latency timer to 64
[    3.030299] pci 0000:01:00.0: setting latency timer to 64
[    3.030359] pci 0000:02:00.0: enabling device (0000 -> 0002)
[    3.030715] pci 0000:02:01.0: enabling device (0000 -> 0002)
[    3.031060] pci 0000:02:02.0: enabling device (0000 -> 0002)
[    3.031367]   alloc irq_desc for 17 on node -1
[    3.031374]   alloc kstat_irqs on node -1
[    3.031386] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    3.031498] pci 0000:00:1c.1: setting latency timer to 64
[    3.031511] pci_bus 0000:00: resource 0 io:  [0x00-0xffff]
[    3.031520] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff]
[    3.031530] pci_bus 0000:01: resource 0 io:  [0xc000-0xcfff]
[    3.031539] pci_bus 0000:01: resource 1 mem: [0xbce00000-0xbfcfffff]
[    3.031549] pci_bus 0000:01: resource 2 pref mem [0xfc500000-0xfeafffff]
[    3.031558] pci_bus 0000:02: resource 0 mem: [0x0-0xfff]
[    3.031567] pci_bus 0000:02: resource 1 mem: [0xbce00000-0xbf4fffff]
[    3.031577] pci_bus 0000:02: resource 2 pref mem [0xfc500000-0xfcafffff]
[    3.031587] pci_bus 0000:03: resource 1 mem: [0xbce00000-0xbdafffff]
[    3.031596] pci_bus 0000:03: resource 2 pref mem [0xfc500000-0xfc5fffff]
[    3.031606] pci_bus 0000:04: resource 1 mem: [0xbdb00000-0xbe7fffff]
[    3.031616] pci_bus 0000:04: resource 2 pref mem [0xfc600000-0xfc6fffff]
[    3.031626] pci_bus 0000:05: resource 1 mem: [0xbe800000-0xbf4fffff]
[    3.031635] pci_bus 0000:05: resource 2 pref mem [0xfc700000-0xfc7fffff]
[    3.031645] pci_bus 0000:07: resource 0 io:  [0xd000-0xdfff]
[    3.031654] pci_bus 0000:07: resource 1 mem: [0xbfd00000-0xbfdfffff]
[    3.031663] pci_bus 0000:07: resource 2 pref mem [0x80000000-0x801fffff]
[    3.031830] NET: Registered protocol family 2
[    3.032246] IP route cache hash table entries: 4096 (order: 2, 16384 bytes)
[    3.033333] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[    3.033635] TCP bind hash table entries: 16384 (order: 5, 131072 bytes)
[    3.033890] TCP: Hash tables configured (established 16384 bind 16384)
[    3.033999] TCP reno registered
[    3.034351] NET: Registered protocol family 1
[    3.034796] RPC: Registered udp transport module.
[    3.034900] RPC: Registered tcp transport module.
[    3.035001] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    3.035135] pci 0000:00:02.0: Boot video device
[    3.035433] Trying to unpack rootfs image as initramfs...
[    3.107832] Freeing initrd memory: 929k freed
[    3.112604] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    3.113096] Installing knfsd (copyright (C) 1996 okir@xxxxxxxxxxxx).
[    3.113703] Slow work thread pool: Starting up
[    3.113875] Slow work thread pool: Ready
[    3.113990] msgmni has been set to 992
[    3.114304] alg: No test for cipher_null (cipher_null-generic)
[    3.114523] alg: No test for ecb(cipher_null) (ecb-cipher_null)
[    3.114687] alg: No test for digest_null (digest_null-generic)
[    3.114848] alg: No test for compress_null (compress_null-generic)
[    3.117846] alg: No test for stdrng (krng)
[    3.152273] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    3.152413] io scheduler noop registered
[    3.152512] io scheduler anticipatory registered
[    3.152613] io scheduler deadline registered
[    3.152781] io scheduler cfq registered (default)
[    3.153249] pcieport 0000:00:1c.0: setting latency timer to 64
[    3.153603] pcieport 0000:00:1c.1: setting latency timer to 64
[    3.154006]   alloc irq_desc for 24 on node -1
[    3.154014]   alloc kstat_irqs on node -1
[    3.154046] pcieport 0000:01:00.0: irq 24 for MSI/MSI-X
[    3.154069] pcieport 0000:01:00.0: setting latency timer to 64
[    3.173175] hpet_acpi_add: no address or irqs in _CRS
[    3.173549] Non-volatile memory driver v1.3
[    3.173809] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    3.180921] brd: module loaded
[    3.183725] loop: module loaded
[    3.184108] tun: Universal TUN/TAP device driver, 1.6
[    3.184212] tun: (C) 1999-2004 Max Krasnyansky <maxk@xxxxxxxxxxxx>
[    3.184713] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.184892]   alloc irq_desc for 19 on node -1
[    3.184899]   alloc kstat_irqs on node -1
[    3.184922] ehci_hcd 0000:00:1d.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[    3.185073] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    3.185084] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    3.185348] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    3.185557] ehci_hcd 0000:00:1d.7: debug port 1
[    3.189552] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[    3.189723] ehci_hcd 0000:00:1d.7: irq 19, io mem 0xdff3bc00
[    3.202511] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    3.202715] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.202827] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.202962] usb usb1: Product: EHCI Host Controller
[    3.203065] usb usb1: Manufacturer: Linux 2.6.32-rc7-rmu ehci_hcd
[    3.203172] usb usb1: SerialNumber: 0000:00:1d.7
[    3.203503] usb usb1: configuration #1 chosen from 1 choice
[    3.203791] hub 1-0:1.0: USB hub found
[    3.203913] hub 1-0:1.0: 8 ports detected
[    3.204263] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.204495] uhci_hcd: USB Universal Host Controller Interface driver
[    3.204686] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    3.204807] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    3.204817] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    3.206594] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    3.206785] uhci_hcd 0000:00:1d.0: irq 16, io base 0x0000e480
[    3.206997] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    3.207108] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.207244] usb usb2: Product: UHCI Host Controller
[    3.207346] usb usb2: Manufacturer: Linux 2.6.32-rc7-rmu uhci_hcd
[    3.207452] usb usb2: SerialNumber: 0000:00:1d.0
[    3.207775] usb usb2: configuration #1 chosen from 1 choice
[    3.208035] hub 2-0:1.0: USB hub found
[    3.208152] hub 2-0:1.0: 2 ports detected
[    3.208378] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    3.208497] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    3.208506] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    3.208776] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[    3.208968] uhci_hcd 0000:00:1d.1: irq 17, io base 0x0000e080
[    3.209173] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    3.209284] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.209419] usb usb3: Product: UHCI Host Controller
[    3.209521] usb usb3: Manufacturer: Linux 2.6.32-rc7-rmu uhci_hcd
[    3.209628] usb usb3: SerialNumber: 0000:00:1d.1
[    3.209967] usb usb3: configuration #1 chosen from 1 choice
[    3.210226] hub 3-0:1.0: USB hub found
[    3.210343] hub 3-0:1.0: 2 ports detected
[    3.210596]   alloc irq_desc for 18 on node -1
[    3.210604]   alloc kstat_irqs on node -1
[    3.210621] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    3.210744] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    3.210754] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    3.211022] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[    3.211210] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000ef00
[    3.211415] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    3.211526] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.211661] usb usb4: Product: UHCI Host Controller
[    3.211763] usb usb4: Manufacturer: Linux 2.6.32-rc7-rmu uhci_hcd
[    3.211870] usb usb4: SerialNumber: 0000:00:1d.2
[    3.212181] usb usb4: configuration #1 chosen from 1 choice
[    3.212437] hub 4-0:1.0: USB hub found
[    3.212554] hub 4-0:1.0: 2 ports detected
[    3.212870] Initializing USB Mass Storage driver...
[    3.213136] usbcore: registered new interface driver usb-storage
[    3.213246] USB Mass Storage support registered.
[    3.213583] usbcore: registered new interface driver usbserial
[    3.213787] USB Serial support registered for generic
[    3.213999] usbcore: registered new interface driver usbserial_generic
[    3.214108] usbserial: USB Serial Driver core
[    3.214682] PNP: No PS/2 controller found. Probing ports directly.
[    3.215722] i8042.c: No controller found.
[    3.215961] mice: PS/2 mouse device common for all mice
[    3.216197] Driver 'rtc_cmos' needs updating - please use bus_type methods
[    3.216350] rtc_cmos 00:02: RTC can wake from S4
[    3.216624] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[    3.216768] rtc0: alarms up to one month, y3k, 114 bytes nvram
[    3.216969] i2c /dev entries driver
[    3.217654] cpuidle: using governor ladder
[    3.217756] cpuidle: using governor menu
[    3.220929] usbcore: registered new interface driver usbhid
[    3.221040] usbhid: v2.6:USB HID core driver
[    3.221210] Netfilter messages via NETLINK v0.30.
[    3.222699] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.222889] arp_tables: (C) 2002 David S. Miller
[    3.223018] TCP bic registered
[    3.223113] TCP cubic registered
[    3.223208] TCP westwood registered
[    3.223304] TCP htcp registered
[    3.223597] NET: Registered protocol family 10
[    3.225234] lo: Disabled Privacy Extensions
[    3.226666] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    3.226842] IPv6 over IPv4 tunneling driver
[    3.228087] sit0: Disabled Privacy Extensions
[    3.230233] ip6tnl0: Disabled Privacy Extensions
[    3.231328] NET: Registered protocol family 17
[    3.231442] 802.1Q VLAN Support v1.8 Ben Greear <greearb@xxxxxxxxxxxxxxx>
[    3.231550] All bugs added by David S. Miller <davem@xxxxxxxxxx>
[    3.231697] Using IPI No-Shortcut mode
[    3.234362] rtc_cmos 00:02: setting system clock to 2002-01-01 00:00:26 UTC (1009843226)
[    3.234728] Freeing unused kernel memory: 348k freed
[    3.235365] Write protecting the kernel text: 2968k
[    3.235530] Write protecting the kernel read-only data: 1144k
[    3.514503] usb 1-1: new high speed USB device using ehci_hcd and address 2
[    3.657610] usb 1-1: New USB device found, idVendor=1199, idProduct=683c
[    3.657727] usb 1-1: New USB device strings: Mfr=3, Product=2, SerialNumber=0
[    3.657841] usb 1-1: Product: Mini Card
[    3.657944] usb 1-1: Manufacturer: Sierra Wireless, Incorporated
[    3.658400] usb 1-1: configuration #1 chosen from 1 choice
[    3.778486] usb 1-3: new high speed USB device using ehci_hcd and address 3
[    3.911839] usb 1-3: New USB device found, idVendor=05e3, idProduct=0608
[    3.911958] usb 1-3: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.912072] usb 1-3: Product: USB2.0 Hub
[    3.912388] usb 1-3: configuration #1 chosen from 1 choice
[    3.912854] hub 1-3:1.0: USB hub found
[    3.913338] hub 1-3:1.0: 4 ports detected
[    4.140349] usb 1-3.1: new low speed USB device using ehci_hcd and address 4
[    4.239566] usb 1-3.1: New USB device found, idVendor=045e, idProduct=00b0
[    4.239682] usb 1-3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.239823] usb 1-3.1: Product: Microsoft® Digital Media Pro Keyboard
[    4.239936] usb 1-3.1: Manufacturer: Microsoft
[    4.240281] usb 1-3.1: configuration #1 chosen from 1 choice
[    4.244361] input: Microsoft Microsoft® Digital Media Pro Keyboard as /devices/pci0000:00/0000:00:1d.7/usb1/1-3/1-3.1/1-3.1:1.0/input/input0
[    4.244769] generic-usb 0003:045E:00B0.0001: input: USB HID v1.11 Keyboard [Microsoft Microsoft® Digital Media Pro Keyboard] on usb-0000:00:1d.7-3.1/input0
[    4.252571] input: Microsoft Microsoft® Digital Media Pro Keyboard as /devices/pci0000:00/0000:00:1d.7/usb1/1-3/1-3.1/1-3.1:1.1/input/input1
[    4.252959] generic-usb 0003:045E:00B0.0002: input: USB HID v1.11 Device [Microsoft Microsoft® Digital Media Pro Keyboard] on usb-0000:00:1d.7-3.1/input1
[    4.324486] usb 1-3.2: new high speed USB device using ehci_hcd and address 5
[    4.417683] usb 1-3.2: New USB device found, idVendor=1307, idProduct=0163
[    4.417812] usb 1-3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.417955] usb 1-3.2: Product: USB Mass Storage Device
[    4.418063] usb 1-3.2: Manufacturer: USBest Technology
[    4.418170] usb 1-3.2: SerialNumber: 0000000000085A
[    4.418646] usb 1-3.2: configuration #1 chosen from 1 choice
[    4.419208] scsi0 : SCSI emulation for USB Mass Storage devices
[    4.419852] usb-storage: device found at 5
[    4.419858] usb-storage: waiting for device to settle before scanning
[    9.417829] scsi 0:0:0:0: Direct-Access     UDISK    PDU01_1G 72G2.0  0.00 PQ: 0 ANSI: 2
[    9.419820] usb-storage: device scan complete
[    9.420390] sd 0:0:0:0: [sda] 2047999 512-byte logical blocks: (1.04 GB/999 MiB)
[    9.421134] sd 0:0:0:0: [sda] Write Protect is off
[    9.421253] sd 0:0:0:0: [sda] Mode Sense: 00 00 00 00
[    9.421261] sd 0:0:0:0: [sda] Assuming drive cache: write through
[    9.423877] sd 0:0:0:0: [sda] Assuming drive cache: write through
[    9.423996]  sda: sda1
[    9.480749] sd 0:0:0:0: [sda] Assuming drive cache: write through
[    9.480865] sd 0:0:0:0: [sda] Attached SCSI removable disk
[    9.701111] FAT: utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
[    0.000000] Linux version 2.6.32-rc7-rmu (thierry.reding@avionic-0027) (gcc version 4.4.2 (GCC) ) #6 SMP Mon Nov 16 16:15:04 CET 2009
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   NSC Geode by NSC
[    0.000000]   Cyrix CyrixInstead
[    0.000000]   Centaur CentaurHauls
[    0.000000]   Transmeta GenuineTMx86
[    0.000000]   Transmeta TransmetaCPU
[    0.000000]   UMC UMC UMC UMC
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f400 (usable)
[    0.000000]  BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000001fa50000 (usable)
[    0.000000]  BIOS-e820: 000000001fa50000 - 000000001fa60000 (reserved)
[    0.000000]  BIOS-e820: 000000001fa60000 - 000000001fa6e000 (ACPI data)
[    0.000000]  BIOS-e820: 000000001fa6e000 - 000000001faaff90 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000001faaff90 - 000000001fac0000 (reserved)
[    0.000000]  BIOS-e820: 000000001facc000 - 000000001fc00000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] DMI present.
[    0.000000] last_pfn = 0x1fa50 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-DFFFF uncachable
[    0.000000]   E0000-EFFFF write-through
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask 0E0000000 write-back
[    0.000000]   1 base 01FB00000 mask 0FFF00000 uncachable
[    0.000000]   2 base 01FC00000 mask 0FFC00000 uncachable
[    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] initial memory mapped : 0 - 01800000
[    0.000000] init_memory_mapping: 0000000000000000-000000001fa50000
[    0.000000]  0000000000 - 0000400000 page 4k
[    0.000000]  0000400000 - 001f800000 page 2M
[    0.000000]  001f800000 - 001fa50000 page 4k
[    0.000000] kernel direct mapping tables up to 1fa50000 @ 7000-c000
[    0.000000] RAMDISK: 1f967000 - 1fa4f611
[    0.000000] ACPI: RSDP 000f8fe0 00024 (v02 ACPIAM)
[    0.000000] ACPI: XSDT 1fa60100 0005C (v01 072009 XSDT1401 20090720 MSFT 00000097)
[    0.000000] ACPI: FACP 1fa60290 000F4 (v04 072009 FACP1401 20090720 MSFT 00000097)
[    0.000000] ACPI: DSDT 1fa60430 05C34 (v02  NOW1R NOW1R113 00000113 INTL 20051117)
[    0.000000] ACPI: FACS 1fa6e000 00040
[    0.000000] ACPI: APIC 1fa60390 0005C (v02 072009 APIC1401 20090720 MSFT 00000097)
[    0.000000] ACPI: MCFG 1fa603f0 0003C (v01 072009 OEMMCFG  20090720 MSFT 00000097)
[    0.000000] ACPI: OEMB 1fa6e040 00131 (v01 072009 OEMB1401 20090720 MSFT 00000097)
[    0.000000] ACPI: HPET 1fa66070 00038 (v01 072009 OEMHPET  20090720 MSFT 00000097)
[    0.000000] ACPI: GSCI 1fa6e180 02024 (v01 072009 GMCHSCI  20090720 MSFT 00000097)
[    0.000000] ACPI: SSDT 1fa70b70 004F0 (v01  PmRef    CpuPm 00003000 INTL 20051117)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 0MB HIGHMEM available.
[    0.000000] 506MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 1fa50000
[    0.000000]   low ram: 0 - 1fa50000
[    0.000000]   node 0 low ram: 00000000 - 1fa50000
[    0.000000]   node 0 bootmap 00002000 - 00005f4c
[    0.000000] (9 early reservations) ==> bootmem [0000000000 - 001fa50000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [0000001000 - 0000002000]    EX TRAMPOLINE ==> [0000001000 - 0000002000]
[    0.000000]   #2 [0000006000 - 0000007000]       TRAMPOLINE ==> [0000006000 - 0000007000]
[    0.000000]   #3 [0001000000 - 000151e604]    TEXT DATA BSS ==> [0001000000 - 000151e604]
[    0.000000]   #4 [001f967000 - 001fa4f611]          RAMDISK ==> [001f967000 - 001fa4f611]
[    0.000000]   #5 [000009f400 - 0000100000]    BIOS reserved ==> [000009f400 - 0000100000]
[    0.000000]   #6 [000151f000 - 0001525193]              BRK ==> [000151f000 - 0001525193]
[    0.000000]   #7 [0000007000 - 0000008000]          PGTABLE ==> [0000007000 - 0000008000]
[    0.000000]   #8 [0000002000 - 0000006000]          BOOTMAP ==> [0000002000 - 0000006000]
[    0.000000] found SMP MP-table at [c00ff780] ff780
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x0001fa50
[    0.000000]   HighMem  0x0001fa50 -> 0x0001fa50
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[2] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x0001fa50
[    0.000000] On node 0 totalpages: 129519
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3967 pages, LIFO batch:0
[    0.000000]   Normal zone: 981 pages used for memmap
[    0.000000]   Normal zone: 124539 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x908
[    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[0x81] disabled)
[    0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 1, version 32, 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 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] SMP: Allowing 2 CPUs, 1 hotplug CPUs
[    0.000000] nr_irqs_gsi: 24
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[    0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 1fc00000 (gap: 1fc00000:df200000)
[    0.000000] NR_CPUS:2 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] PERCPU: Embedded 12 pages/cpu @c1c00000 s26008 r0 d23144 u2097152
[    0.000000] pcpu-alloc: s26008 r0 d23144 u2097152 alloc=1*4194304
[    0.000000] pcpu-alloc: [0] 0 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 128506
[    0.000000] Kernel command line: initrd=initrd.gz root=/dev/sda1:/rootfs.img BOOT_IMAGE=vmlinuz 
[    0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes)
[    0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 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] Initializing HighMem for node 0 (00000000:00000000)
[    0.000000] Memory: 506972k/518464k available (2965k kernel code, 10844k reserved, 1378k data, 348k init, 0k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff91000 - 0xfffff000   ( 440 kB)
[    0.000000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
[    0.000000]     vmalloc : 0xe0250000 - 0xff7fe000   ( 501 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xdfa50000   ( 506 MB)
[    0.000000]       .init : 0xc143f000 - 0xc1496000   ( 348 kB)
[    0.000000]       .data : 0xc12e57d4 - 0xc143e1e4   (1378 kB)
[    0.000000]       .text : 0xc1000000 - 0xc12e57d4   (2965 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:2304 nr_irqs:424
[    0.000000] Extended CMOS year: 2000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1099.757 MHz processor.
[    0.004011] Calibrating delay loop (skipped), value calculated using timer frequency.. 2199.51 BogoMIPS (lpj=4399028)
[    0.004360] Mount-cache hash table entries: 512
[    0.004760] CPU: L1 I cache: 32K, L1 D cache: 24K
[    0.004920] CPU: L2 cache: 512K
[    0.005022] mce: CPU supports 5 MCE banks
[    0.005128] Disabling lock debugging due to kernel taint
[    0.008014] CPU0: Thermal monitoring handled by SMI
[    0.008026] using mwait in idle threads.
[    0.008146] Checking 'hlt' instruction... OK.
[    0.024592] SMP alternatives: switching to UP code
[    0.029085] ACPI: Core revision 20090903
[    0.048592] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.090973] CPU0: Intel(R) Atom(TM) CPU Z510   @ 1.10GHz stepping 02
[    0.092001] Brought up 1 CPUs
[    0.092001] Total of 1 processors activated (2199.51 BogoMIPS).
[    0.092001] CPU0 attaching NULL sched-domain.
[    0.092001] NET: Registered protocol family 16
[    0.092001] ACPI: bus type pci registered
[    0.092001] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.092001] PCI: Not using MMCONFIG.
[    0.092001] PCI: PCI BIOS revision 3.00 entry at 0xf0031, last bus=7
[    0.092018] PCI: Using configuration type 1 for base access
[    0.101458] bio: create slab <bio-0> at 0
[    0.103591] ACPI: EC: Look up EC in DSDT
[    0.110225] ACPI: Executed 1 blocks of module-level executable AML code
[    0.120690] ACPI: Interpreter enabled
[    0.120822] ACPI: (supports S0 S3 S5)
[    0.121154] ACPI: Using IOAPIC for interrupt routing
[    0.121408] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.131457] PCI: MCFG area at e0000000 reserved in ACPI motherboard resources
[    0.131569] PCI: Using MMCONFIG for extended config space
[    0.153968] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.154400] pci 0000:00:02.0: reg 10 32bit mmio: [0xdff80000-0xdfffffff]
[    0.154417] pci 0000:00:02.0: reg 14 io port: [0xe880-0xe887]
[    0.154432] pci 0000:00:02.0: reg 18 32bit mmio: [0xc0000000-0xcfffffff]
[    0.154448] pci 0000:00:02.0: reg 1c 32bit mmio: [0xdff40000-0xdff7ffff]
[    0.154605] pci 0000:00:1b.0: reg 10 64bit mmio: [0xdff3c000-0xdff3ffff]
[    0.154671] pci 0000:00:1b.0: PME# supported from D0 D3hot
[    0.154780] pci 0000:00:1b.0: PME# disabled
[    0.154972] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.155081] pci 0000:00:1c.0: PME# disabled
[    0.155276] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.155386] pci 0000:00:1c.1: PME# disabled
[    0.155555] pci 0000:00:1d.0: reg 20 io port: [0xe480-0xe49f]
[    0.155635] pci 0000:00:1d.1: reg 20 io port: [0xe080-0xe09f]
[    0.155712] pci 0000:00:1d.2: reg 20 io port: [0xef00-0xef1f]
[    0.155821] pci 0000:00:1d.7: reg 10 32bit mmio: [0xdff3bc00-0xdff3bfff]
[    0.155921] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.156071] pci 0000:00:1d.7: PME# disabled
[    0.156215] pci 0000:00:1e.0: reg 10 32bit mmio: [0xdff3b800-0xdff3b8ff]
[    0.156404] pci 0000:00:1f.1: reg 20 io port: [0xffa0-0xffaf]
[    0.156606] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    0.156717] pci 0000:01:00.0: PME# disabled
[    0.156894] pci 0000:00:1c.0: bridge io port: [0xc000-0xcfff]
[    0.156906] pci 0000:00:1c.0: bridge 32bit mmio: [0xbf200000-0xbfcfffff]
[    0.156918] pci 0000:00:1c.0: bridge 32bit mmio pref: [0xfa100000-0xfeafffff]
[    0.157470] pci 0000:02:00.0: reg 10 32bit mmio pref: [0xfca00000-0xfcafffff]
[    0.157870] pci 0000:02:00.0: reg 38 32bit mmio pref: [0x000000-0x0007ff]
[    0.158647] pci 0000:02:01.0: reg 10 32bit mmio pref: [0xfc900000-0xfc9fffff]
[    0.159048] pci 0000:02:01.0: reg 38 32bit mmio pref: [0x000000-0x0007ff]
[    0.159822] pci 0000:02:02.0: reg 10 32bit mmio pref: [0xfc800000-0xfc8fffff]
[    0.160257] pci 0000:02:02.0: reg 38 32bit mmio pref: [0x000000-0x0007ff]
[    0.161876] pci 0000:01:00.0: bridge io port: [0x00-0xfff]
[    0.161889] pci 0000:01:00.0: bridge 32bit mmio: [0xbf200000-0xbf4fffff]
[    0.161903] pci 0000:01:00.0: bridge 32bit mmio pref: [0xfa100000-0xfcafffff]
[    0.176009] pci 0000:03:00.0: reg 10 32bit mmio pref: [0xfac00000-0xfacfffff]
[    0.192008] pci 0000:03:00.0: reg 14 32bit mmio pref: [0xfab00000-0xfabfffff]
[    0.208008] pci 0000:03:00.0: reg 18 32bit mmio pref: [0xfaa00000-0xfaafffff]
[    0.224008] pci 0000:03:00.0: reg 1c 32bit mmio pref: [0xfa900000-0xfa9fffff]
[    0.240008] pci 0000:03:00.0: reg 20 32bit mmio pref: [0xfa800000-0xfa8fffff]
[    0.256008] pci 0000:03:00.0: reg 24 32bit mmio pref: [0xfa700000-0xfa7fffff]
[    0.256221] pci 0000:03:00.0: reg 30 32bit mmio pref: [0xfa6f0000-0xfa6f07ff]
[    0.268008] pci 0000:02:00.0: bridge 32bit mmio: [0xbf200000-0xbf2fffff]
[    0.276008] pci 0000:02:00.0: bridge 32bit mmio pref: [0xfa100000-0xfacfffff]
[    0.292009] pci 0000:04:00.0: reg 10 32bit mmio pref: [0xfb800000-0xfb8fffff]
[    0.308008] pci 0000:04:00.0: reg 14 32bit mmio pref: [0xfb700000-0xfb7fffff]
[    0.324008] pci 0000:04:00.0: reg 18 32bit mmio pref: [0xfb600000-0xfb6fffff]
[    0.340008] pci 0000:04:00.0: reg 1c 32bit mmio pref: [0xfb500000-0xfb5fffff]
[    0.356009] pci 0000:04:00.0: reg 20 32bit mmio pref: [0xfb400000-0xfb4fffff]
[    0.372009] pci 0000:04:00.0: reg 24 32bit mmio pref: [0xfb300000-0xfb3fffff]
[    0.372221] pci 0000:04:00.0: reg 30 32bit mmio pref: [0xfb2f0000-0xfb2f07ff]
[    0.384008] pci 0000:02:01.0: bridge 32bit mmio: [0xbf300000-0xbf3fffff]
[    0.392008] pci 0000:02:01.0: bridge 32bit mmio pref: [0xfad00000-0xfb8fffff]
[    0.408009] pci 0000:05:00.0: reg 10 32bit mmio pref: [0xfc400000-0xfc4fffff]
[    0.424009] pci 0000:05:00.0: reg 14 32bit mmio pref: [0xfc300000-0xfc3fffff]
[    0.440009] pci 0000:05:00.0: reg 18 32bit mmio pref: [0xfc200000-0xfc2fffff]
[    0.456009] pci 0000:05:00.0: reg 1c 32bit mmio pref: [0xfc100000-0xfc1fffff]
[    0.472009] pci 0000:05:00.0: reg 20 32bit mmio pref: [0xfc000000-0xfc0fffff]
[    0.488009] pci 0000:05:00.0: reg 24 32bit mmio pref: [0xfbf00000-0xfbffffff]
[    0.488221] pci 0000:05:00.0: reg 30 32bit mmio pref: [0xfbef0000-0xfbef07ff]
[    0.500008] pci 0000:02:02.0: bridge 32bit mmio: [0xbf400000-0xbf4fffff]
[    0.508008] pci 0000:02:02.0: bridge 32bit mmio pref: [0xfb900000-0xfc4fffff]
[    0.508769] pci 0000:07:00.0: reg 10 32bit mmio: [0xbfde0000-0xbfdfffff]
[    0.508801] pci 0000:07:00.0: reg 18 io port: [0xd880-0xd89f]
[    0.508822] pci 0000:07:00.0: reg 1c 32bit mmio: [0xbfddc000-0xbfddffff]
[    0.508930] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
[    0.509043] pci 0000:07:00.0: PME# disabled
[    0.509231] pci 0000:00:1c.1: bridge io port: [0xd000-0xdfff]
[    0.509242] pci 0000:00:1c.1: bridge 32bit mmio: [0xbfd00000-0xbfdfffff]
[    0.509268] pci_bus 0000:00: on NUMA node 0
[    0.509284] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.509690] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.POP4._PRT]
[    0.509887] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.POP5._PRT]
[    0.530581] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    0.531678] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.532756] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    0.533843] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 12 14 *15)
[    0.534931] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.536241] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.537470] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.538699] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.540269] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.540437] vgaarb: loaded
[    0.541064] SCSI subsystem initialized
[    0.541471] usbcore: registered new interface driver usbfs
[    0.541683] usbcore: registered new interface driver hub
[    0.541915] usbcore: registered new device driver usb
[    0.542428] PCI: Using ACPI for IRQ routing
[    0.542612] pci 0000:01:00.0: BAR 13: can't allocate resource
[    0.543796] Switching to clocksource tsc
[    0.544286] pnp: PnP ACPI init
[    0.544445] ACPI: bus type pnp registered
[    0.554591] pnp: PnP ACPI: found 13 devices
[    0.554699] ACPI: ACPI bus type pnp unregistered
[    0.554834] system 00:01: iomem range 0x20000000-0x7fffffff has been reserved
[    0.556487] system 00:01: iomem range 0x1fc00000-0x1fffffff could not be reserved
[    0.556642] system 00:05: ioport range 0xa00-0xa8f has been reserved
[    0.556763] system 00:06: ioport range 0x4d0-0x4d1 has been reserved
[    0.556873] system 00:06: ioport range 0x900-0x9f3 has been reserved
[    0.556984] system 00:06: ioport range 0x400-0x43f has been reserved
[    0.557094] system 00:06: ioport range 0x480-0x4bf has been reserved
[    0.557205] system 00:06: iomem range 0xf0000000-0xf0003fff has been reserved
[    0.557336] system 00:0a: iomem range 0xfec00000-0xfec00fff could not be reserved
[    0.557475] system 00:0a: iomem range 0xfee00000-0xfee00fff has been reserved
[    0.557602] system 00:0b: iomem range 0xe0000000-0xefffffff has been reserved
[    0.557728] system 00:0c: iomem range 0x0-0x9ffff could not be reserved
[    0.557839] system 00:0c: iomem range 0xc0000-0xcffff could not be reserved
[    0.557952] system 00:0c: iomem range 0xe0000-0xfffff could not be reserved
[    0.558065] system 00:0c: iomem range 0x100000-0x1fbfffff could not be reserved
[    1.199468] pci 0000:02:00.0: PCI bridge, secondary bus 0000:03
[    1.199577] pci 0000:02:00.0:   IO window: disabled
[    1.199850] pci 0000:02:00.0:   MEM window: 0xbf200000-0xbf2fffff
[    1.605495] pci 0000:02:00.0:   PREFETCH window: 0xfa100000-0xfacfffff
[    1.816475] pci 0000:02:01.0: PCI bridge, secondary bus 0000:04
[    1.816580] pci 0000:02:01.0:   IO window: disabled
[    1.816838] pci 0000:02:01.0:   MEM window: 0xbf300000-0xbf3fffff
[    2.223111] pci 0000:02:01.0:   PREFETCH window: 0xfad00000-0xfb8fffff
[    2.433220] pci 0000:02:02.0: PCI bridge, secondary bus 0000:05
[    2.433325] pci 0000:02:02.0:   IO window: disabled
[    2.433581] pci 0000:02:02.0:   MEM window: 0xbf400000-0xbf4fffff
[    2.838356] pci 0000:02:02.0:   PREFETCH window: 0xfb900000-0xfc4fffff
[    3.048214] pci 0000:01:00.0: PCI bridge, secondary bus 0000:02
[    3.048320] pci 0000:01:00.0:   IO window: disabled
[    3.048429] pci 0000:01:00.0:   MEM window: 0xbf200000-0xbf4fffff
[    3.048541] pci 0000:01:00.0:   PREFETCH window: 0xfa100000-0xfcafffff
[    3.048662] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:01
[    3.048771] pci 0000:00:1c.0:   IO window: 0xc000-0xcfff
[    3.048879] pci 0000:00:1c.0:   MEM window: 0xbf200000-0xbfcfffff
[    3.048990] pci 0000:00:1c.0:   PREFETCH window: 0xfa100000-0xfeafffff
[    3.049102] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:07
[    3.049210] pci 0000:00:1c.1:   IO window: 0xd000-0xdfff
[    3.049319] pci 0000:00:1c.1:   MEM window: 0xbfd00000-0xbfdfffff
[    3.049430] pci 0000:00:1c.1:   PREFETCH window: 0x80000000-0x801fffff
[    3.049561]   alloc irq_desc for 16 on node -1
[    3.049569]   alloc kstat_irqs on node -1
[    3.049589] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    3.049705] pci 0000:00:1c.0: setting latency timer to 64
[    3.049730] pci 0000:01:00.0: setting latency timer to 64
[    3.049791] pci 0000:02:00.0: enabling device (0000 -> 0002)
[    3.050136] pci 0000:02:01.0: enabling device (0000 -> 0002)
[    3.050481] pci 0000:02:02.0: enabling device (0000 -> 0002)
[    3.050788]   alloc irq_desc for 17 on node -1
[    3.050795]   alloc kstat_irqs on node -1
[    3.050807] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    3.050920] pci 0000:00:1c.1: setting latency timer to 64
[    3.050934] pci_bus 0000:00: resource 0 io:  [0x00-0xffff]
[    3.050944] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff]
[    3.050953] pci_bus 0000:01: resource 0 io:  [0xc000-0xcfff]
[    3.050963] pci_bus 0000:01: resource 1 mem: [0xbf200000-0xbfcfffff]
[    3.050972] pci_bus 0000:01: resource 2 pref mem [0xfa100000-0xfeafffff]
[    3.050982] pci_bus 0000:02: resource 0 mem: [0x0-0xfff]
[    3.050991] pci_bus 0000:02: resource 1 mem: [0xbf200000-0xbf4fffff]
[    3.051000] pci_bus 0000:02: resource 2 pref mem [0xfa100000-0xfcafffff]
[    3.051010] pci_bus 0000:03: resource 1 mem: [0xbf200000-0xbf2fffff]
[    3.051020] pci_bus 0000:03: resource 2 pref mem [0xfa100000-0xfacfffff]
[    3.051030] pci_bus 0000:04: resource 1 mem: [0xbf300000-0xbf3fffff]
[    3.051039] pci_bus 0000:04: resource 2 pref mem [0xfad00000-0xfb8fffff]
[    3.051050] pci_bus 0000:05: resource 1 mem: [0xbf400000-0xbf4fffff]
[    3.051059] pci_bus 0000:05: resource 2 pref mem [0xfb900000-0xfc4fffff]
[    3.051069] pci_bus 0000:07: resource 0 io:  [0xd000-0xdfff]
[    3.051078] pci_bus 0000:07: resource 1 mem: [0xbfd00000-0xbfdfffff]
[    3.051087] pci_bus 0000:07: resource 2 pref mem [0x80000000-0x801fffff]
[    3.051256] NET: Registered protocol family 2
[    3.051674] IP route cache hash table entries: 4096 (order: 2, 16384 bytes)
[    3.052780] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[    3.053084] TCP bind hash table entries: 16384 (order: 5, 131072 bytes)
[    3.053342] TCP: Hash tables configured (established 16384 bind 16384)
[    3.053451] TCP reno registered
[    3.053807] NET: Registered protocol family 1
[    3.054226] RPC: Registered udp transport module.
[    3.054329] RPC: Registered tcp transport module.
[    3.054430] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    3.054565] pci 0000:00:02.0: Boot video device
[    3.054864] Trying to unpack rootfs image as initramfs...
[    3.127306] Freeing initrd memory: 929k freed
[    3.131957] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    3.132452] Installing knfsd (copyright (C) 1996 okir@xxxxxxxxxxxx).
[    3.133312] Slow work thread pool: Starting up
[    3.133486] Slow work thread pool: Ready
[    3.133602] msgmni has been set to 992
[    3.133916] alg: No test for cipher_null (cipher_null-generic)
[    3.134101] alg: No test for ecb(cipher_null) (ecb-cipher_null)
[    3.134263] alg: No test for digest_null (digest_null-generic)
[    3.134423] alg: No test for compress_null (compress_null-generic)
[    3.137468] alg: No test for stdrng (krng)
[    3.171792] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    3.171932] io scheduler noop registered
[    3.172031] io scheduler anticipatory registered
[    3.172132] io scheduler deadline registered
[    3.172299] io scheduler cfq registered (default)
[    3.172797] pcieport 0000:00:1c.0: setting latency timer to 64
[    3.173151] pcieport 0000:00:1c.1: setting latency timer to 64
[    3.173554]   alloc irq_desc for 24 on node -1
[    3.173562]   alloc kstat_irqs on node -1
[    3.173594] pcieport 0000:01:00.0: irq 24 for MSI/MSI-X
[    3.173617] pcieport 0000:01:00.0: setting latency timer to 64
[    3.192461] hpet_acpi_add: no address or irqs in _CRS
[    3.193201] Non-volatile memory driver v1.3
[    3.193463] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    3.200323] brd: module loaded
[    3.203338] loop: module loaded
[    3.203718] tun: Universal TUN/TAP device driver, 1.6
[    3.203823] tun: (C) 1999-2004 Max Krasnyansky <maxk@xxxxxxxxxxxx>
[    3.204325] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.204503]   alloc irq_desc for 19 on node -1
[    3.204511]   alloc kstat_irqs on node -1
[    3.204534] ehci_hcd 0000:00:1d.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[    3.204710] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    3.204722] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    3.204984] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    3.205193] ehci_hcd 0000:00:1d.7: debug port 1
[    3.209197] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[    3.209293] ehci_hcd 0000:00:1d.7: irq 19, io mem 0xdff3bc00
[    3.224634] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    3.224838] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.224950] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.225085] usb usb1: Product: EHCI Host Controller
[    3.225188] usb usb1: Manufacturer: Linux 2.6.32-rc7-rmu ehci_hcd
[    3.225295] usb usb1: SerialNumber: 0000:00:1d.7
[    3.225626] usb usb1: configuration #1 chosen from 1 choice
[    3.225913] hub 1-0:1.0: USB hub found
[    3.226035] hub 1-0:1.0: 8 ports detected
[    3.226386] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.226609] uhci_hcd: USB Universal Host Controller Interface driver
[    3.226798] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    3.226919] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    3.226928] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    3.227200] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    3.227392] uhci_hcd 0000:00:1d.0: irq 16, io base 0x0000e480
[    3.227606] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    3.227718] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.227853] usb usb2: Product: UHCI Host Controller
[    3.227955] usb usb2: Manufacturer: Linux 2.6.32-rc7-rmu uhci_hcd
[    3.228062] usb usb2: SerialNumber: 0000:00:1d.0
[    3.228388] usb usb2: configuration #1 chosen from 1 choice
[    3.228666] hub 2-0:1.0: USB hub found
[    3.228784] hub 2-0:1.0: 2 ports detected
[    3.229012] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    3.229131] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    3.229141] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    3.229413] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[    3.229606] uhci_hcd 0000:00:1d.1: irq 17, io base 0x0000e080
[    3.229811] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    3.229922] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.230057] usb usb3: Product: UHCI Host Controller
[    3.230160] usb usb3: Manufacturer: Linux 2.6.32-rc7-rmu uhci_hcd
[    3.230266] usb usb3: SerialNumber: 0000:00:1d.1
[    3.230605] usb usb3: configuration #1 chosen from 1 choice
[    3.230863] hub 3-0:1.0: USB hub found
[    3.230979] hub 3-0:1.0: 2 ports detected
[    3.231192]   alloc irq_desc for 18 on node -1
[    3.231200]   alloc kstat_irqs on node -1
[    3.231216] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    3.231339] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    3.231348] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    3.231611] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[    3.231798] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000ef00
[    3.232002] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    3.232113] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.232249] usb usb4: Product: UHCI Host Controller
[    3.232351] usb usb4: Manufacturer: Linux 2.6.32-rc7-rmu uhci_hcd
[    3.232457] usb usb4: SerialNumber: 0000:00:1d.2
[    3.232820] usb usb4: configuration #1 chosen from 1 choice
[    3.233078] hub 4-0:1.0: USB hub found
[    3.233195] hub 4-0:1.0: 2 ports detected
[    3.233512] Initializing USB Mass Storage driver...
[    3.233781] usbcore: registered new interface driver usb-storage
[    3.233892] USB Mass Storage support registered.
[    3.234227] usbcore: registered new interface driver usbserial
[    3.234431] USB Serial support registered for generic
[    3.234644] usbcore: registered new interface driver usbserial_generic
[    3.234753] usbserial: USB Serial Driver core
[    3.235274] PNP: No PS/2 controller found. Probing ports directly.
[    3.236315] i8042.c: No controller found.
[    3.236558] mice: PS/2 mouse device common for all mice
[    3.236831] Driver 'rtc_cmos' needs updating - please use bus_type methods
[    3.236985] rtc_cmos 00:02: RTC can wake from S4
[    3.237259] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[    3.237404] rtc0: alarms up to one month, y3k, 114 bytes nvram
[    3.237605] i2c /dev entries driver
[    3.238295] cpuidle: using governor ladder
[    3.238397] cpuidle: using governor menu
[    3.241587] usbcore: registered new interface driver usbhid
[    3.241698] usbhid: v2.6:USB HID core driver
[    3.241869] Netfilter messages via NETLINK v0.30.
[    3.243240] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.243429] arp_tables: (C) 2002 David S. Miller
[    3.243557] TCP bic registered
[    3.243653] TCP cubic registered
[    3.243748] TCP westwood registered
[    3.243845] TCP htcp registered
[    3.244138] NET: Registered protocol family 10
[    3.246012] lo: Disabled Privacy Extensions
[    3.247276] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    3.247450] IPv6 over IPv4 tunneling driver
[    3.248712] sit0: Disabled Privacy Extensions
[    3.250857] ip6tnl0: Disabled Privacy Extensions
[    3.251927] NET: Registered protocol family 17
[    3.252041] 802.1Q VLAN Support v1.8 Ben Greear <greearb@xxxxxxxxxxxxxxx>
[    3.252149] All bugs added by David S. Miller <davem@xxxxxxxxxx>
[    3.252295] Using IPI No-Shortcut mode
[    3.255096] rtc_cmos 00:02: setting system clock to 2002-01-01 00:00:30 UTC (1009843230)
[    3.256951] Freeing unused kernel memory: 348k freed
[    3.257589] Write protecting the kernel text: 2968k
[    3.257754] Write protecting the kernel read-only data: 1144k
[    3.536711] usb 1-1: new high speed USB device using ehci_hcd and address 2
[    3.679789] usb 1-1: New USB device found, idVendor=1199, idProduct=683c
[    3.679905] usb 1-1: New USB device strings: Mfr=3, Product=2, SerialNumber=0
[    3.680020] usb 1-1: Product: Mini Card
[    3.680122] usb 1-1: Manufacturer: Sierra Wireless, Incorporated
[    3.680581] usb 1-1: configuration #1 chosen from 1 choice
[    3.800766] usb 1-3: new high speed USB device using ehci_hcd and address 3
[    3.934211] usb 1-3: New USB device found, idVendor=05e3, idProduct=0608
[    3.934326] usb 1-3: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.934439] usb 1-3: Product: USB2.0 Hub
[    3.934765] usb 1-3: configuration #1 chosen from 1 choice
[    3.935350] hub 1-3:1.0: USB hub found
[    3.935835] hub 1-3:1.0: 4 ports detected
[    4.168408] usb 1-3.1: new low speed USB device using ehci_hcd and address 4
[    4.267528] usb 1-3.1: New USB device found, idVendor=045e, idProduct=00b0
[    4.267645] usb 1-3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.267786] usb 1-3.1: Product: Microsoft® Digital Media Pro Keyboard
[    4.267899] usb 1-3.1: Manufacturer: Microsoft
[    4.268241] usb 1-3.1: configuration #1 chosen from 1 choice
[    4.272441] input: Microsoft Microsoft® Digital Media Pro Keyboard as /devices/pci0000:00/0000:00:1d.7/usb1/1-3/1-3.1/1-3.1:1.0/input/input0
[    4.272847] generic-usb 0003:045E:00B0.0001: input: USB HID v1.11 Keyboard [Microsoft Microsoft® Digital Media Pro Keyboard] on usb-0000:00:1d.7-3.1/input0
[    4.280403] input: Microsoft Microsoft® Digital Media Pro Keyboard as /devices/pci0000:00/0000:00:1d.7/usb1/1-3/1-3.1/1-3.1:1.1/input/input1
[    4.280795] generic-usb 0003:045E:00B0.0002: input: USB HID v1.11 Device [Microsoft Microsoft® Digital Media Pro Keyboard] on usb-0000:00:1d.7-3.1/input1
[    4.352477] usb 1-3.2: new high speed USB device using ehci_hcd and address 5
[    4.445691] usb 1-3.2: New USB device found, idVendor=1307, idProduct=0163
[    4.445820] usb 1-3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.445964] usb 1-3.2: Product: USB Mass Storage Device
[    4.446072] usb 1-3.2: Manufacturer: USBest Technology
[    4.446180] usb 1-3.2: SerialNumber: 0000000000085A
[    4.446647] usb 1-3.2: configuration #1 chosen from 1 choice
[    4.447217] scsi0 : SCSI emulation for USB Mass Storage devices
[    4.447877] usb-storage: device found at 5
[    4.447884] usb-storage: waiting for device to settle before scanning
[    9.445820] scsi 0:0:0:0: Direct-Access     UDISK    PDU01_1G 72G2.0  0.00 PQ: 0 ANSI: 2
[    9.447826] usb-storage: device scan complete
[    9.448385] sd 0:0:0:0: [sda] 2047999 512-byte logical blocks: (1.04 GB/999 MiB)
[    9.449124] sd 0:0:0:0: [sda] Write Protect is off
[    9.449236] sd 0:0:0:0: [sda] Mode Sense: 00 00 00 00
[    9.449244] sd 0:0:0:0: [sda] Assuming drive cache: write through
[    9.451873] sd 0:0:0:0: [sda] Assuming drive cache: write through
[    9.451991]  sda: sda1
[    9.508758] sd 0:0:0:0: [sda] Assuming drive cache: write through
[    9.508873] sd 0:0:0:0: [sda] Attached SCSI removable disk
[    9.722558] FAT: utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!

[Index of Archives]     [DMA Engine]     [Linux Coverity]     [Linux USB]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Greybus]

  Powered by Linux