Hello Folks, I work on passing-thought nVidia PCI video card from Linux host to Windows guest and was able to do it for FX-3800 but I faced the problem with Quadro 2000. The problem is one of Quadro 2000 BAR's conflicts with memory reported by BIOS-e820 as reserved. Basically they are overlapped and kvm does not want to go further. dmesg, /proc/iomem and lspci are at the end of this email. The memory reserved by BIOS-e820 [ 0.000000] BIOS-e820: 00000000fa000000 - 00000000fc000000 (reserved) Quadro 2000 is 05:00.0 and its conflicting BAR is Region 3: Memory at f8000000 (64-bit, prefetchable) [disabled] [size=64M] and its upstream bridge 00:1c.00 I have a number of questions and will appreciate you a lot for clarification 1. Is this conflict a really problem of kernel PCI? (I just assume that maybe kvm does not handle this case properly) 2. If it is a kernel problem/feature then how I can avoid it? Where BAR allocation is located in kernel source code? I enabled pci=earlydump and see that PCI config space is the same at early boot stage and at the entire kernel boot up that means at least in my case kernel does nothing with BAR's allocated by BIOS. I've tried different kernel PCI options: nocrs, use_crs, noacpi with the same results: BAR's are always located at the same addresses. What I need is to make kernel to allocate BAR's at different addresses that does not overlap with BIOS-e820 region. How to make kernel to rearrange BAR's the other way then it is done in BIOS? For FX 3800, its BAR's are not overlapped with reserved area and pass-through works just fine dmesg: [ 0.000000] Initializing cgroup subsys cpuset [ 0.000000] Initializing cgroup subsys cpu [ 0.000000] Linux version 2.6.38-8-generic (buildd@allspice) (gcc version 4.5.2 (Ubuntu/Linaro 4.5.2-8ubuntu3) ) #42-Ubuntu SMP Mon Apr 11 03:31:24 UTC 2011 (Ubuntu 2.6.38-8.42-generic 2.6.38.2) [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-2.6.38-8-generic root=UUID=77c10a6b-dc5d-411a-a806-4cc4000d9967 ro quiet splash vt.handoff=7 intel_iommu=on [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009d000 (usable) [ 0.000000] BIOS-e820: 000000000009d000 - 00000000000a0000 (reserved) [ 0.000000] BIOS-e820: 00000000000ce000 - 00000000000d0000 (reserved) [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) [ 0.000000] BIOS-e820: 0000000000100000 - 000000009ffc0000 (usable) [ 0.000000] BIOS-e820: 000000009ffc0000 - 000000009ffc8000 (ACPI data) [ 0.000000] BIOS-e820: 000000009ffc8000 - 000000009ffcb000 (ACPI NVS) [ 0.000000] BIOS-e820: 000000009ffcb000 - 00000000c0000000 (reserved) [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) [ 0.000000] BIOS-e820: 00000000fa000000 - 00000000fc000000 (reserved) [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fed00000 (reserved) [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) [ 0.000000] BIOS-e820: 00000000ff800000 - 0000000100000000 (reserved) [ 0.000000] BIOS-e820: 0000000100000000 - 0000000138000000 (usable) [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] DMI present. [ 0.000000] DMI: FUJITSU CELSIUS W380 /D2917-A1, BIOS 6.00 R1.20.2917.A1 08/18/2010 [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved) [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable) [ 0.000000] No AGP bridge found [ 0.000000] last_pfn = 0x138000 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-C7FFF write-protect [ 0.000000] C8000-DFFFF uncachable [ 0.000000] E0000-FFFFF write-protect [ 0.000000] MTRR variable ranges enabled: [ 0.000000] 0 base 0C0000000 mask FC0000000 uncachable [ 0.000000] 1 base 0FA000000 mask FFE000000 uncachable [ 0.000000] 2 base 138000000 mask FF8000000 uncachable [ 0.000000] 3 base 000000000 mask F00000000 write-back [ 0.000000] 4 base 100000000 mask FC0000000 write-back [ 0.000000] 5 base 0A0000000 mask FE0000000 uncachable [ 0.000000] 6 disabled [ 0.000000] 7 disabled [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 [ 0.000000] e820 update range: 00000000a0000000 - 0000000100000000 (usable) ==> (reserved) [ 0.000000] last_pfn = 0x9ffc0 max_arch_pfn = 0x400000000 [ 0.000000] found SMP MP-table at [ffff8800000f8d50] f8d50 [ 0.000000] initial memory mapped : 0 - 20000000 [ 0.000000] init_memory_mapping: 0000000000000000-000000009ffc0000 [ 0.000000] 0000000000 - 009fe00000 page 2M [ 0.000000] 009fe00000 - 009ffc0000 page 4k [ 0.000000] kernel direct mapping tables up to 9ffc0000 @ 1fffb000-20000000 [ 0.000000] init_memory_mapping: 0000000100000000-0000000138000000 [ 0.000000] 0100000000 - 0138000000 page 2M [ 0.000000] kernel direct mapping tables up to 138000000 @ 9ffba000-9ffc0000 [ 0.000000] RAMDISK: 366e2000 - 37369000 [ 0.000000] ACPI: RSDP 00000000000f8cd0 00024 (v02 PTLTD ) [ 0.000000] ACPI: XSDT 000000009ffc2035 000BC (v01 FSC PC 00060000 LTP 00000000) [ 0.000000] ACPI: FACP 000000009ffc71c1 000F4 (v03 FSC PC 00060000 000F4240) [ 0.000000] ACPI: DSDT 000000009ffc20f1 0505C (v01 FSC D2917/A1 00060000 MSFT 03000001) [ 0.000000] ACPI: FACS 000000009ffcafc0 00040 [ 0.000000] ACPI: TCPA 000000009ffc72b5 00032 (v01 Phoeni x 00060000 TL 00000000) [ 0.000000] ACPI: _MAR 000000009ffc72e7 00030 (v01 Intel OEMDMAR 00060000 LOHR 00000001) [ 0.000000] ACPI: SSDT 000000009ffc7317 000D8 (v01 FSC CST_PR00 00060000 CSF 00000001) [ 0.000000] ACPI: SSDT 000000009ffc73ef 000D8 (v01 FSC CST_PR02 00060000 CSF 00000001) [ 0.000000] ACPI: SSDT 000000009ffc74c7 000D8 (v01 FSC CST_PR01 00060000 CSF 00000001) [ 0.000000] ACPI: SSDT 000000009ffc759f 000D8 (v01 FSC CST_PR03 00060000 CSF 00000001) [ 0.000000] ACPI: SSDT 000000009ffc7677 0015B (v01 FSC PST_PR00 00060000 CSF 00000001) [ 0.000000] ACPI: SSDT 000000009ffc77d2 0015B (v01 FSC PST_PR02 00060000 CSF 00000001) [ 0.000000] ACPI: SSDT 000000009ffc792d 0015B (v01 FSC PST_PR01 00060000 CSF 00000001) [ 0.000000] ACPI: SSDT 000000009ffc7a88 0015B (v01 FSC PST_PR03 00060000 CSF 00000001) [ 0.000000] ACPI: ASF! 000000009ffc7be3 0007F (v16 CETP CETP 00060000 PTL 00000001) [ 0.000000] ACPI: SPCR 000000009ffc7c62 00050 (v01 PTLTD $UCRTBL$ 00060000 PTL 00000001) [ 0.000000] ACPI: DMAR 000000009ffc7cb2 000B8 (v01 Intel OEMDMAR 00060000 LOHR 00000001) [ 0.000000] ACPI: SLIC 000000009ffc7d6a 00176 (v01 FSC PC 00060000 LTP 00000000) [ 0.000000] ACPI: MCFG 000000009ffc7ee0 0003C (v01 PTLTD MCFG 00060000 LTP 00000000) [ 0.000000] ACPI: HPET 000000009ffc7f1c 00038 (v01 PTLTD HPETTBL 00060000 LTP 00000001) [ 0.000000] ACPI: APIC 000000009ffc7f54 00084 (v01 PTLTD ? APIC 00060000 LTP 00000000) [ 0.000000] ACPI: BOOT 000000009ffc7fd8 00028 (v01 PTLTD $SBFTBL$ 00060000 LTP 00000001) [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] No NUMA configuration found [ 0.000000] Faking a node at 0000000000000000-0000000138000000 [ 0.000000] Initmem setup node 0 0000000000000000-0000000138000000 [ 0.000000] NODE_DATA [0000000137ffb000 - 0000000137ffffff] [ 0.000000] [ffffea0000000000-ffffea00045fffff] PMD -> [ffff880134800000-ffff8801379fffff] on node 0 [ 0.000000] Zone PFN ranges: [ 0.000000] DMA 0x00000010 -> 0x00001000 [ 0.000000] DMA32 0x00001000 -> 0x00100000 [ 0.000000] Normal 0x00100000 -> 0x00138000 [ 0.000000] Movable zone start PFN for each node [ 0.000000] early_node_map[3] active PFN ranges [ 0.000000] 0: 0x00000010 -> 0x0000009d [ 0.000000] 0: 0x00000100 -> 0x0009ffc0 [ 0.000000] 0: 0x00100000 -> 0x00138000 [ 0.000000] On node 0 totalpages: 884557 [ 0.000000] DMA zone: 56 pages used for memmap [ 0.000000] DMA zone: 6 pages reserved [ 0.000000] DMA zone: 3919 pages, LIFO batch:0 [ 0.000000] DMA32 zone: 14280 pages used for memmap [ 0.000000] DMA32 zone: 636920 pages, LIFO batch:31 [ 0.000000] Normal zone: 3136 pages used for memmap [ 0.000000] Normal zone: 226240 pages, LIFO batch:31 [ 0.000000] ACPI: PM-Timer IO Port: 0x1008 [ 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[0x04] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x05] 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: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1]) [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23 [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge) [ 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] Using ACPI (MADT) for SMP configuration information [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000 [ 0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs [ 0.000000] nr_irqs_gsi: 40 [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 00000000000a0000 [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000ce000 [ 0.000000] PM: Registered nosave memory: 00000000000ce000 - 00000000000d0000 [ 0.000000] PM: Registered nosave memory: 00000000000d0000 - 00000000000e0000 [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000 [ 0.000000] PM: Registered nosave memory: 000000009ffc0000 - 000000009ffc8000 [ 0.000000] PM: Registered nosave memory: 000000009ffc8000 - 000000009ffcb000 [ 0.000000] PM: Registered nosave memory: 000000009ffcb000 - 00000000c0000000 [ 0.000000] PM: Registered nosave memory: 00000000c0000000 - 00000000e0000000 [ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000 [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fa000000 [ 0.000000] PM: Registered nosave memory: 00000000fa000000 - 00000000fc000000 [ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fec00000 [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fed00000 [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fee00000 [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000 [ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ff800000 [ 0.000000] PM: Registered nosave memory: 00000000ff800000 - 0000000100000000 [ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:20000000) [ 0.000000] Booting paravirtualized kernel on bare hardware [ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:4 nr_node_ids:1 [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88009fc00000 s84416 r8192 d22080 u524288 [ 0.000000] pcpu-alloc: s84416 r8192 d22080 u524288 alloc=1*2097152 [ 0.000000] pcpu-alloc: [0] 0 1 2 3 [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 867079 [ 0.000000] Policy zone: Normal [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.38-8-generic root=UUID=77c10a6b-dc5d-411a-a806-4cc4000d9967 ro quiet splash vt.handoff=7 intel_iommu=on [ 0.000000] Intel-IOMMU: enabled [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) [ 0.000000] Checking aperture... [ 0.000000] No AGP bridge found [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! [ 0.000000] Memory: 3394248k/5111808k available (5940k kernel code, 1573580k absent, 143980k reserved, 5017k data, 956k init) [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] Hierarchical RCU implementation. [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. [ 0.000000] RCU-based detection of stalled CPUs is disabled. [ 0.000000] NR_IRQS:16640 nr_irqs:712 16 [ 0.000000] Extended CMOS year: 2000 [ 0.000000] vt handoff: transparent VT on vt#7 [ 0.000000] Console: colour dummy device 80x25 [ 0.000000] console [tty0] enabled [ 0.000000] allocated 35389440 bytes of page_cgroup [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups [ 0.000000] hpet clockevent registered [ 0.000000] Fast TSC calibration using PIT [ 0.010000] Detected 3192.031 MHz processor. [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 6384.06 BogoMIPS (lpj=31920310) [ 0.000005] pid_max: default: 32768 minimum: 301 [ 0.000024] Security Framework initialized [ 0.000034] AppArmor: AppArmor initialized [ 0.000035] Yama: becoming mindful. [ 0.000320] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes) [ 0.001114] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes) [ 0.001442] Mount-cache hash table entries: 256 [ 0.001528] Initializing cgroup subsys ns [ 0.001531] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup. [ 0.001533] Initializing cgroup subsys cpuacct [ 0.001536] Initializing cgroup subsys memory [ 0.001541] Initializing cgroup subsys devices [ 0.001543] Initializing cgroup subsys freezer [ 0.001544] Initializing cgroup subsys net_cls [ 0.001545] Initializing cgroup subsys blkio [ 0.001567] CPU: Physical Processor ID: 0 [ 0.001568] CPU: Processor Core ID: 0 [ 0.001572] mce: CPU supports 9 MCE banks [ 0.001581] CPU0: Thermal monitoring enabled (TM1) [ 0.001587] using mwait in idle threads. [ 0.003110] ACPI: Core revision 20110112 [ 0.079629] ftrace: allocating 24314 entries in 96 pages [ 0.085380] DMAR: Host address width 36 [ 0.085382] DMAR: DRHD base: 0x000000fe710000 flags: 0x0 [ 0.085388] IOMMU 0: reg_base_addr fe710000 ver 1:0 cap c9008020e30272 ecap 1000 [ 0.085390] DMAR: DRHD base: 0x000000fe711000 flags: 0x0 [ 0.085393] IOMMU 1: reg_base_addr fe711000 ver 1:0 cap c0000020230272 ecap 1000 [ 0.085395] DMAR: DRHD base: 0x000000fe713000 flags: 0x1 [ 0.085399] IOMMU 2: reg_base_addr fe713000 ver 1:0 cap c9008020630272 ecap 1000 [ 0.085400] DMAR: RMRR base: 0x0000009ffd0000 end: 0x0000009ffe7fff [ 0.085401] DMAR: RMRR base: 0x000000afc00000 end: 0x000000bfffffff [ 0.085402] DMAR: No ATSR found [ 0.085506] Setting APIC routing to flat [ 0.085846] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.185346] CPU0: Intel(R) Core(TM) i5 CPU 650 @ 3.20GHz stepping 05 [ 0.296994] Performance Events: PEBS fmt1+, Westmere events, Intel PMU driver. [ 0.297000] ... version: 3 [ 0.297000] ... bit width: 48 [ 0.297001] ... generic registers: 4 [ 0.297002] ... value mask: 0000ffffffffffff [ 0.297003] ... max period: 000000007fffffff [ 0.297004] ... fixed-purpose events: 3 [ 0.297005] ... event mask: 000000070000000f [ 0.297342] Booting Node 0, Processors #1 #2 #3 Ok. [ 0.835753] Brought up 4 CPUs [ 0.835756] Total of 4 processors activated (25535.94 BogoMIPS). [ 0.837250] devtmpfs: initialized [ 0.837958] print_constraints: dummy: [ 0.837985] Time: 10:48:56 Date: 07/06/11 [ 0.838009] NET: Registered protocol family 16 [ 0.838083] Trying to unpack rootfs image as initramfs... [ 0.838088] ACPI: bus type pci registered [ 0.838139] PCI: MMCONFIG for domain 0000 [bus 00-11] at [mem 0xe0000000-0xe11fffff] (base 0xe0000000) [ 0.838141] PCI: MMCONFIG at [mem 0xe0000000-0xe11fffff] reserved in E820 [ 0.839923] PCI: Using configuration type 1 for base access [ 0.840429] bio: create slab <bio-0> at 0 [ 0.841180] ACPI: EC: Look up EC in DSDT [ 0.843505] ACPI: Interpreter enabled [ 0.843508] ACPI: (supports S0 S3 S4 S5) [ 0.843519] ACPI: Using IOAPIC for interrupt routing [ 0.846209] ACPI: No dock devices found. [ 0.846211] HEST: Table not found. [ 0.846213] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.846228] ACPI: PCI Root Bridge [CPU0] (domain 0000 [bus ff]) [ 0.846262] pci 0000:ff:00.0: [8086:2c61] type 0 class 0x000600 [ 0.846280] pci 0000:ff:00.1: [8086:2d01] type 0 class 0x000600 [ 0.846295] pci 0000:ff:02.0: [8086:2d10] type 0 class 0x000600 [ 0.846307] pci 0000:ff:02.1: [8086:2d11] type 0 class 0x000600 [ 0.846320] pci 0000:ff:02.2: [8086:2d12] type 0 class 0x000600 [ 0.846332] pci 0000:ff:02.3: [8086:2d13] type 0 class 0x000600 [ 0.846357] pci0000:ff: Requesting ACPI _OSC control (0x1d) [ 0.846580] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe]) [ 0.846726] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] [ 0.846728] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] [ 0.846730] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] [ 0.846731] pci_root PNP0A08:00: host bridge window [mem 0x000c8000-0x000dffff] [ 0.846732] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xdfffffff] [ 0.846734] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xfebfffff] [ 0.846735] pci_root PNP0A08:00: host bridge window [mem 0xfed00000-0xfedfffff] [ 0.846737] pci_root PNP0A08:00: host bridge window [mem 0xfef00000-0xff7fffff] [ 0.846744] pci 0000:00:00.0: [8086:0040] type 0 class 0x000600 [ 0.846767] pci 0000:00:02.0: [8086:0042] type 0 class 0x000300 [ 0.846775] pci 0000:00:02.0: reg 10: [mem 0xfe400000-0xfe7fffff 64bit] [ 0.846780] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref] [ 0.846783] pci 0000:00:02.0: reg 20: [io 0x1890-0x1897] [ 0.846830] pci 0000:00:16.0: [8086:3b64] type 0 class 0x000780 [ 0.846857] pci 0000:00:16.0: reg 10: [mem 0xfe324000-0xfe32400f 64bit] [ 0.846928] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold [ 0.846932] pci 0000:00:16.0: PME# disabled [ 0.846952] pci 0000:00:16.2: [8086:3b66] type 0 class 0x000101 [ 0.846967] pci 0000:00:16.2: reg 10: [io 0x18a8-0x18af] [ 0.846975] pci 0000:00:16.2: reg 14: [io 0x189c-0x189f] [ 0.846984] pci 0000:00:16.2: reg 18: [io 0x18a0-0x18a7] [ 0.846994] pci 0000:00:16.2: reg 1c: [io 0x1898-0x189b] [ 0.847002] pci 0000:00:16.2: reg 20: [io 0x1880-0x188f] [ 0.847057] pci 0000:00:16.3: [8086:3b67] type 0 class 0x000700 [ 0.847074] pci 0000:00:16.3: reg 10: [io 0x18b0-0x18b7] [ 0.847083] pci 0000:00:16.3: reg 14: [mem 0xfe326000-0xfe326fff] [ 0.847166] pci 0000:00:19.0: [8086:10ef] type 0 class 0x000200 [ 0.847181] pci 0000:00:19.0: reg 10: [mem 0xfe300000-0xfe31ffff] [ 0.847188] pci 0000:00:19.0: reg 14: [mem 0xfe327000-0xfe327fff] [ 0.847196] pci 0000:00:19.0: reg 18: [io 0x1820-0x183f] [ 0.847238] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold [ 0.847241] pci 0000:00:19.0: PME# disabled [ 0.847260] pci 0000:00:1a.0: [8086:3b3c] type 0 class 0x000c03 [ 0.847278] pci 0000:00:1a.0: reg 10: [mem 0xfe328000-0xfe3283ff] [ 0.847342] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold [ 0.847345] pci 0000:00:1a.0: PME# disabled [ 0.847365] pci 0000:00:1b.0: [8086:3b56] type 0 class 0x000403 [ 0.847378] pci 0000:00:1b.0: reg 10: [mem 0xfe320000-0xfe323fff 64bit] [ 0.847425] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold [ 0.847428] pci 0000:00:1b.0: PME# disabled [ 0.847445] pci 0000:00:1c.0: [8086:3b42] type 1 class 0x000604 [ 0.847493] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 0.847496] pci 0000:00:1c.0: PME# disabled [ 0.847518] pci 0000:00:1c.4: [8086:3b4a] type 1 class 0x000604 [ 0.847566] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold [ 0.847569] pci 0000:00:1c.4: PME# disabled [ 0.847588] pci 0000:00:1c.6: [8086:3b4e] type 1 class 0x000604 [ 0.847636] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold [ 0.847639] pci 0000:00:1c.6: PME# disabled [ 0.847665] pci 0000:00:1d.0: [8086:3b34] type 0 class 0x000c03 [ 0.847683] pci 0000:00:1d.0: reg 10: [mem 0xfe329000-0xfe3293ff] [ 0.847746] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold [ 0.847750] pci 0000:00:1d.0: PME# disabled [ 0.847767] pci 0000:00:1e.0: [8086:244e] type 1 class 0x000604 [ 0.847818] pci 0000:00:1f.0: [8086:3b16] type 0 class 0x000601 [ 0.847918] pci 0000:00:1f.2: [8086:3b22] type 0 class 0x000106 [ 0.847933] pci 0000:00:1f.2: reg 10: [io 0x18c8-0x18cf] [ 0.847940] pci 0000:00:1f.2: reg 14: [io 0x18bc-0x18bf] [ 0.847947] pci 0000:00:1f.2: reg 18: [io 0x18c0-0x18c7] [ 0.847955] pci 0000:00:1f.2: reg 1c: [io 0x18b8-0x18bb] [ 0.847962] pci 0000:00:1f.2: reg 20: [io 0x1840-0x185f] [ 0.847969] pci 0000:00:1f.2: reg 24: [mem 0xfe32a000-0xfe32a7ff] [ 0.847996] pci 0000:00:1f.2: PME# supported from D3hot [ 0.848000] pci 0000:00:1f.2: PME# disabled [ 0.848014] pci 0000:00:1f.3: [8086:3b30] type 0 class 0x000c05 [ 0.848026] pci 0000:00:1f.3: reg 10: [mem 0xfe32b000-0xfe32b0ff 64bit] [ 0.848045] pci 0000:00:1f.3: reg 20: [io 0x1860-0x187f] [ 0.848117] pci 0000:05:00.0: [10de:0dd8] type 0 class 0x000300 [ 0.848134] pci 0000:05:00.0: reg 10: [mem 0xfc000000-0xfdffffff] [ 0.848155] pci 0000:05:00.0: reg 14: [mem 0xf0000000-0xf7ffffff 64bit pref] [ 0.848173] pci 0000:05:00.0: reg 1c: [mem 0xf8000000-0xfbffffff 64bit pref] [ 0.848185] pci 0000:05:00.0: reg 24: [io 0x2000-0x207f] [ 0.848197] pci 0000:05:00.0: reg 30: [mem 0x00000000-0x0007ffff pref] [ 0.848282] pci 0000:05:00.1: [10de:0be9] type 0 class 0x000403 [ 0.848298] pci 0000:05:00.1: reg 10: [mem 0xfe000000-0xfe003fff] [ 0.865598] pci 0000:00:1c.0: PCI bridge to [bus 05-05] [ 0.865603] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff] [ 0.865606] pci 0000:00:1c.0: bridge window [mem 0xfc000000-0xfe0fffff] [ 0.865611] pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xfbffffff 64bit pref] [ 0.865650] pci 0000:00:1c.4: PCI bridge to [bus 0d-0d] [ 0.865653] pci 0000:00:1c.4: bridge window [io 0xf000-0x0000] (disabled) [ 0.865657] pci 0000:00:1c.4: bridge window [mem 0xfff00000-0x000fffff] (disabled) [ 0.865662] pci 0000:00:1c.4: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) [ 0.865697] pci 0000:00:1c.6: PCI bridge to [bus 0e-0e] [ 0.865700] pci 0000:00:1c.6: bridge window [io 0xf000-0x0000] (disabled) [ 0.865704] pci 0000:00:1c.6: bridge window [mem 0xfff00000-0x000fffff] (disabled) [ 0.865709] pci 0000:00:1c.6: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) [ 0.865762] pci 0000:00:1e.0: PCI bridge to [bus 11-11] (subtractive decode) [ 0.865765] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled) [ 0.865768] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled) [ 0.865774] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled) [ 0.865776] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode) [ 0.865777] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode) [ 0.865779] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode) [ 0.865780] pci 0000:00:1e.0: bridge window [mem 0x000c8000-0x000dffff] (subtractive decode) [ 0.865782] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xdfffffff] (subtractive decode) [ 0.865783] pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode) [ 0.865785] pci 0000:00:1e.0: bridge window [mem 0xfed00000-0xfedfffff] (subtractive decode) [ 0.865787] pci 0000:00:1e.0: bridge window [mem 0xfef00000-0xff7fffff] (subtractive decode) [ 0.865808] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] [ 0.865967] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX1._PRT] [ 0.865998] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX4._PRT] [ 0.866029] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX6._PRT] [ 0.866066] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIH._PRT] [ 0.866140] pci0000:00: Requesting ACPI _OSC control (0x1d) [ 0.869349] ACPI: PCI Interrupt Link [LNKA] (IRQs 9 10 *11) [ 0.869387] ACPI: PCI Interrupt Link [LNKB] (IRQs 9 10 *11) [ 0.869423] ACPI: PCI Interrupt Link [LNKC] (IRQs 9 10 *11) [ 0.869459] ACPI: PCI Interrupt Link [LNKD] (IRQs *9 10 11) [ 0.869495] ACPI: PCI Interrupt Link [LNKE] (IRQs 9 10 *11) [ 0.869530] ACPI: PCI Interrupt Link [LNKF] (IRQs 9 10 *11) [ 0.869566] ACPI: PCI Interrupt Link [LNKG] (IRQs 9 *10 11) [ 0.869601] ACPI: PCI Interrupt Link [LNKH] (IRQs 9 10 11) *5 [ 0.869676] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none [ 0.869684] vgaarb: device added: PCI:0000:05:00.0,decodes=io+mem,owns=none,locks=none [ 0.869685] vgaarb: loaded [ 0.869801] SCSI subsystem initialized [ 0.869850] libata version 3.00 loaded. [ 0.869886] usbcore: registered new interface driver usbfs [ 0.869892] usbcore: registered new interface driver hub [ 0.869912] usbcore: registered new device driver usb [ 0.869983] wmi: Mapper loaded [ 0.869984] PCI: Using ACPI for IRQ routing [ 0.869986] PCI: pci_cache_line_size set to 64 bytes [ 0.870051] reserve RAM buffer: 000000000009d000 - 000000000009ffff [ 0.870052] reserve RAM buffer: 000000009ffc0000 - 000000009fffffff [ 0.870124] NetLabel: Initializing [ 0.870125] NetLabel: domain hash size = 128 [ 0.870126] NetLabel: protocols = UNLABELED CIPSOv4 [ 0.870134] NetLabel: unlabeled traffic allowed by default [ 0.870162] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 [ 0.870166] hpet0: 8 comparators, 64-bit 14.318180 MHz counter [ 0.872175] Switching to clocksource hpet [ 0.875559] Switched to NOHz mode on CPU #0 [ 0.875612] Switched to NOHz mode on CPU #2 [ 0.875653] Switched to NOHz mode on CPU #3 [ 0.875658] Switched to NOHz mode on CPU #1 [ 0.876404] AppArmor: AppArmor Filesystem Enabled [ 0.876426] pnp: PnP ACPI init [ 0.876440] ACPI: bus type pnp registered [ 0.876480] pnp 00:00: [bus ff] [ 0.876534] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active) [ 0.876621] pnp 00:01: [bus 00-fe] [ 0.876623] pnp 00:01: [io 0x0000-0x0cf7 window] [ 0.876624] pnp 00:01: [io 0x0d00-0xffff window] [ 0.876625] pnp 00:01: [io 0x0cf8-0x0cff] [ 0.876626] pnp 00:01: [mem 0x000a0000-0x000bffff window] [ 0.876628] pnp 00:01: [mem 0x000c8000-0x000dffff window] [ 0.876629] pnp 00:01: [mem 0xc0000000-0xdfffffff window] [ 0.876630] pnp 00:01: [mem 0xf0000000-0xfebfffff window] [ 0.876632] pnp 00:01: [mem 0xfed00000-0xfedfffff window] [ 0.876633] pnp 00:01: [mem 0xfef00000-0xff7fffff window] [ 0.876661] pnp 00:01: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active) [ 0.876934] ACPI Error: [\_SB_.PCI0.EGBA] Namespace lookup failure, AE_NOT_FOUND (20110112/psargs-359) [ 0.876938] ACPI Error: Method parse/execution failed [\_SB_.PCI0.LPC_.MBRD._CRS] (Node ffff880130435528), AE_NOT_FOUND (20110112/psparse-536) [ 0.876992] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.877000] pnp 00:03: [io 0x0000-0x000f] [ 0.877002] pnp 00:03: [io 0x0080-0x008f] [ 0.877003] pnp 00:03: [io 0x00c0-0x00df] [ 0.877006] pnp 00:03: [dma 4] [ 0.877031] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active) [ 0.877039] pnp 00:04: [io 0x0070-0x0071] [ 0.877048] pnp 00:04: [irq 8] [ 0.877071] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active) [ 0.877080] pnp 00:05: [io 0x00f0-0x00fe] [ 0.877084] pnp 00:05: [irq 13] [ 0.877108] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active) [ 0.877115] pnp 00:06: [io 0x0061] [ 0.877144] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active) [ 0.877184] pnp 00:07: [mem 0xfed00000-0xfed003ff] [ 0.877209] pnp 00:07: Plug and Play ACPI device, IDs PNP0103 (active) [ 0.877237] pnp 00:08: [io 0x0060] [ 0.877239] pnp 00:08: [io 0x0064] [ 0.877243] pnp 00:08: [irq 1] [ 0.877282] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.877476] pnp 00:09: [io 0x03f8-0x03ff] [ 0.877481] pnp 00:09: [irq 4] [ 0.877522] pnp 00:09: Plug and Play ACPI device, IDs PNP0501 (active) [ 0.877550] pnp: PnP ACPI: found 10 devices [ 0.877551] ACPI: ACPI bus type pnp unregistered [ 0.883113] pci 0000:00:1c.4: BAR 14: assigned [mem 0xc0000000-0xc01fffff] [ 0.883116] pci 0000:00:1c.4: BAR 15: assigned [mem 0xc0200000-0xc03fffff 64bit pref] [ 0.883118] pci 0000:00:1c.6: BAR 14: assigned [mem 0xc0400000-0xc05fffff] [ 0.883121] pci 0000:00:1c.6: BAR 15: assigned [mem 0xc0600000-0xc07fffff 64bit pref] [ 0.883123] pci 0000:00:1c.4: BAR 13: assigned [io 0x3000-0x3fff] [ 0.883125] pci 0000:00:1c.6: BAR 13: assigned [io 0x4000-0x4fff] [ 0.883127] pci 0000:05:00.0: BAR 6: assigned [mem 0xfe080000-0xfe0fffff pref] [ 0.883129] pci 0000:00:1c.0: PCI bridge to [bus 05-05] [ 0.883132] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff] [ 0.883136] pci 0000:00:1c.0: bridge window [mem 0xfc000000-0xfe0fffff] [ 0.883139] pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xfbffffff 64bit pref] [ 0.883144] pci 0000:00:1c.4: PCI bridge to [bus 0d-0d] [ 0.883146] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff] [ 0.883150] pci 0000:00:1c.4: bridge window [mem 0xc0000000-0xc01fffff] [ 0.883153] pci 0000:00:1c.4: bridge window [mem 0xc0200000-0xc03fffff 64bit pref] [ 0.883159] pci 0000:00:1c.6: PCI bridge to [bus 0e-0e] [ 0.883161] pci 0000:00:1c.6: bridge window [io 0x4000-0x4fff] [ 0.883165] pci 0000:00:1c.6: bridge window [mem 0xc0400000-0xc05fffff] [ 0.883168] pci 0000:00:1c.6: bridge window [mem 0xc0600000-0xc07fffff 64bit pref] [ 0.883173] pci 0000:00:1e.0: PCI bridge to [bus 11-11] [ 0.883174] pci 0000:00:1e.0: bridge window [io disabled] [ 0.883178] pci 0000:00:1e.0: bridge window [mem disabled] [ 0.883181] pci 0000:00:1e.0: bridge window [mem pref disabled] [ 0.883196] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 [ 0.883200] pci 0000:00:1c.0: setting latency timer to 64 [ 0.883205] pci 0000:00:1c.4: enabling device (0000 -> 0003) [ 0.883207] pci 0000:00:1c.4: PCI INT A -> GSI 16 (level, low) -> IRQ 16 [ 0.883211] pci 0000:00:1c.4: setting latency timer to 64 [ 0.883216] pci 0000:00:1c.6: enabling device (0000 -> 0003) [ 0.883218] pci 0000:00:1c.6: PCI INT A -> GSI 16 (level, low) -> IRQ 16 [ 0.883222] pci 0000:00:1c.6: setting latency timer to 64 [ 0.883227] pci 0000:00:1e.0: setting latency timer to 64 [ 0.883230] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] [ 0.883232] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] [ 0.883233] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] [ 0.883234] pci_bus 0000:00: resource 7 [mem 0x000c8000-0x000dffff] [ 0.883236] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xdfffffff] [ 0.883237] pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfebfffff] [ 0.883238] pci_bus 0000:00: resource 10 [mem 0xfed00000-0xfedfffff] [ 0.883240] pci_bus 0000:00: resource 11 [mem 0xfef00000-0xff7fffff] [ 0.883241] pci_bus 0000:05: resource 0 [io 0x2000-0x2fff] [ 0.883243] pci_bus 0000:05: resource 1 [mem 0xfc000000-0xfe0fffff] [ 0.883244] pci_bus 0000:05: resource 2 [mem 0xf0000000-0xfbffffff 64bit pref] [ 0.883246] pci_bus 0000:0d: resource 0 [io 0x3000-0x3fff] [ 0.883247] pci_bus 0000:0d: resource 1 [mem 0xc0000000-0xc01fffff] [ 0.883248] pci_bus 0000:0d: resource 2 [mem 0xc0200000-0xc03fffff 64bit pref] [ 0.883250] pci_bus 0000:0e: resource 0 [io 0x4000-0x4fff] [ 0.883251] pci_bus 0000:0e: resource 1 [mem 0xc0400000-0xc05fffff] [ 0.883253] pci_bus 0000:0e: resource 2 [mem 0xc0600000-0xc07fffff 64bit pref] [ 0.883254] pci_bus 0000:11: resource 4 [io 0x0000-0x0cf7] [ 0.883255] pci_bus 0000:11: resource 5 [io 0x0d00-0xffff] [ 0.883257] pci_bus 0000:11: resource 6 [mem 0x000a0000-0x000bffff] [ 0.883258] pci_bus 0000:11: resource 7 [mem 0x000c8000-0x000dffff] [ 0.883260] pci_bus 0000:11: resource 8 [mem 0xc0000000-0xdfffffff] [ 0.883261] pci_bus 0000:11: resource 9 [mem 0xf0000000-0xfebfffff] [ 0.883262] pci_bus 0000:11: resource 10 [mem 0xfed00000-0xfedfffff] [ 0.883264] pci_bus 0000:11: resource 11 [mem 0xfef00000-0xff7fffff] [ 0.883287] NET: Registered protocol family 2 [ 0.883392] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes) [ 0.884077] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) [ 0.885414] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) [ 0.885598] TCP: Hash tables configured (established 524288 bind 65536) [ 0.885600] TCP reno registered [ 0.885606] UDP hash table entries: 2048 (order: 4, 65536 bytes) [ 0.885624] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes) [ 0.885701] NET: Registered protocol family 1 [ 0.885722] pci 0000:00:02.0: Boot video device [ 0.885827] PCI: CLS 32 bytes, default 64 [ 0.885886] IOMMU 1 0xfe711000: using Register based invalidation [ 0.885887] IOMMU 0 0xfe710000: using Register based invalidation [ 0.885888] IOMMU 2 0xfe713000: using Register based invalidation [ 0.885891] IOMMU: Setting RMRR: [ 0.885907] IOMMU: Setting identity map for device 0000:00:02.0 [0xafc00000 - 0xc0000000] [ 0.888624] IOMMU: Setting identity map for device 0000:00:1a.0 [0x9ffd0000 - 0x9ffe8000] [ 0.888671] IOMMU: Setting identity map for device 0000:00:1d.0 [0x9ffd0000 - 0x9ffe8000] [ 0.888695] IOMMU: Prepare 0-16MiB unity mapping for LPC [ 0.888710] IOMMU: Setting identity map for device 0000:00:1f.0 [0x0 - 0x1000000] [ 0.897055] PCI-DMA: Intel(R) Virtualization Technology for Directed I/O [ 0.898376] Simple Boot Flag at 0x42 set to 0x1 [ 0.898719] audit: initializing netlink socket (disabled) [ 0.898727] type=2000 audit(1309949335.680:1): initialized [ 0.907877] HugeTLB registered 2 MB page size, pre-allocated 0 pages [ 0.909074] VFS: Disk quotas dquot_6.5.2 [ 0.909111] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.909542] fuse init (API version 7.16) [ 0.909601] msgmni has been set to 6758 [ 0.909774] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) [ 0.909795] io scheduler noop registered [ 0.909797] io scheduler deadline registered [ 0.909825] io scheduler cfq registered (default) [ 0.910011] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 [ 0.910026] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 [ 0.910055] intel_idle: MWAIT substates: 0x1120 [ 0.910056] intel_idle: v0.4 model 0x25 [ 0.910057] intel_idle: lapic_timer_reliable_states 0xffffffff [ 0.910147] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0 [ 0.910151] ACPI: Power Button [PWRB] [ 0.910184] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 [ 0.910186] ACPI: Power Button [PWRF] [ 0.910310] ACPI: acpi_idle yielding to intel_idle [ 0.911285] ERST: Table is not found! [ 0.911328] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled [ 0.931888] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A [ 1.007671] Freeing initrd memory: 12828k freed [ 1.113448] 00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A [ 1.113532] serial 0000:00:16.3: PCI INT B -> GSI 21 (level, low) -> IRQ 21 [ 1.133899] 0000:00:16.3: ttyS4 at I/O 0x18b0 (irq = 21) is a 16550A [ 1.134113] Linux agpgart interface v0.103 [ 1.134170] agpgart-intel 0000:00:00.0: Intel HD Graphics Chipset [ 1.134239] agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable [ 1.134867] agpgart-intel 0000:00:00.0: detected 262144K stolen memory [ 1.134999] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000 [ 1.135695] brd: module loaded [ 1.136012] loop: module loaded [ 1.136080] i2c-core: driver [adp5520] using legacy suspend method [ 1.136081] i2c-core: driver [adp5520] using legacy resume method [ 1.136188] pata_acpi 0000:00:16.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22 [ 1.136207] pata_acpi 0000:00:16.2: setting latency timer to 64 [ 1.136220] pata_acpi 0000:00:16.2: PCI INT C disabled [ 1.136243] ata_generic 0000:00:16.2: PCI INT C -> GSI 22 (level, low) -> IRQ 22 [ 1.136256] ata_generic 0000:00:16.2: setting latency timer to 64 [ 1.136504] scsi0 : ata_generic [ 1.136563] scsi1 : ata_generic [ 1.136587] ata1: PATA max UDMA/100 cmd 0x18a8 ctl 0x189c bmdma 0x1880 irq 22 [ 1.136588] ata2: PATA max UDMA/100 cmd 0x18a0 ctl 0x1898 bmdma 0x1888 irq 22 [ 1.136761] Fixed MDIO Bus: probed [ 1.136779] PPP generic driver version 2.4.2 [ 1.136804] tun: Universal TUN/TAP device driver, 1.6 [ 1.136806] tun: (C) 1999-2004 Max Krasnyansky <maxk@xxxxxxxxxxxx> [ 1.136855] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 1.136870] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 [ 1.136883] ehci_hcd 0000:00:1a.0: setting latency timer to 64 [ 1.136886] ehci_hcd 0000:00:1a.0: EHCI Host Controller [ 1.136912] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1 [ 1.136979] ehci_hcd 0000:00:1a.0: debug port 2 [ 1.140850] ehci_hcd 0000:00:1a.0: cache line size of 32 is not supported [ 1.140860] ehci_hcd 0000:00:1a.0: irq 19, io mem 0xfe328000 [ 1.161478] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00 [ 1.161592] hub 1-0:1.0: USB hub found [ 1.161595] hub 1-0:1.0: 3 ports detected [ 1.161646] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20 [ 1.161655] ehci_hcd 0000:00:1d.0: setting latency timer to 64 [ 1.161657] ehci_hcd 0000:00:1d.0: EHCI Host Controller [ 1.161682] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2 [ 1.161744] ehci_hcd 0000:00:1d.0: debug port 2 [ 1.165629] ehci_hcd 0000:00:1d.0: cache line size of 32 is not supported [ 1.165638] ehci_hcd 0000:00:1d.0: irq 20, io mem 0xfe329000 [ 1.181429] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00 [ 1.181529] hub 2-0:1.0: USB hub found [ 1.181531] hub 2-0:1.0: 3 ports detected [ 1.181571] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 1.181579] uhci_hcd: USB Universal Host Controller Interface driver [ 1.181641] i8042: PNP: No PS/2 controller found. Probing ports directly. [ 1.184309] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 1.184313] serio: i8042 AUX port at 0x60,0x64 irq 12 [ 1.184385] mousedev: PS/2 mouse device common for all mice [ 1.184463] rtc_cmos 00:04: RTC can wake from S4 [ 1.191476] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0 [ 1.191502] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs [ 1.191568] device-mapper: uevent: version 1.0.3 [ 1.191616] device-mapper: ioctl: 4.19.1-ioctl (2011-01-07) initialised: dm-devel@xxxxxxxxxx [ 1.191661] device-mapper: multipath: version 1.2.0 loaded [ 1.191662] device-mapper: multipath round-robin: version 1.0.0 loaded [ 1.191797] cpuidle: using governor ladder [ 1.191890] cpuidle: using governor menu [ 1.192048] TCP cubic registered [ 1.192122] NET: Registered protocol family 10 [ 1.192435] NET: Registered protocol family 17 [ 1.192445] Registering the dns_resolver key type [ 1.192503] P-state transition latency capped at 20 uS [ 1.192894] PM: Hibernation image not present or could not be loaded. [ 1.192905] registered taskstats version 1 [ 1.193129] Magic number: 3:303:830 [ 1.193284] rtc_cmos 00:04: setting system clock to 2011-07-06 10:48:57 UTC (1309949337) [ 1.193289] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found [ 1.193294] EDD information not available. [ 1.473544] Freeing unused kernel memory: 956k freed [ 1.473648] Write protecting the kernel read-only data: 10240k [ 1.474341] Freeing unused kernel memory: 184k freed [ 1.477849] Freeing unused kernel memory: 1444k freed [ 1.480718] usb 1-1: new high speed USB device using ehci_hcd and address 2 [ 1.494232] <30>udev[72]: starting version 167 [ 1.514731] e1000e: Intel(R) PRO/1000 Network Driver - 1.2.20-k2 [ 1.514734] e1000e: Copyright(c) 1999 - 2011 Intel Corporation. [ 1.514769] e1000e 0000:00:19.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 [ 1.514780] e1000e 0000:00:19.0: setting latency timer to 64 [ 1.514876] e1000e 0000:00:19.0: irq 43 for MSI/MSI-X [ 1.631091] hub 1-1:1.0: USB hub found [ 1.631278] hub 1-1:1.0: 6 ports detected [ 1.750084] usb 2-1: new high speed USB device using ehci_hcd and address 2 [ 1.785830] e1000e 0000:00:19.0: eth0: (PCI Express:2.5GB/s:Width x1) 00:19:99:93:51:66 [ 1.785833] e1000e 0000:00:19.0: eth0: Intel(R) PRO/1000 Network Connection [ 1.785878] e1000e 0000:00:19.0: eth0: MAC: 9, PHY: 9, PBA No: FFFFFF-0FF [ 1.785898] ahci 0000:00:1f.2: version 3.0 [ 1.785919] ahci 0000:00:1f.2: PCI INT A -> GSI 17 (level, low) -> IRQ 17 [ 1.785971] ahci 0000:00:1f.2: irq 44 for MSI/MSI-X [ 1.799984] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 3 Gbps 0x3f impl SATA mode [ 1.799990] ahci 0000:00:1f.2: flags: 64bit ncq sntf led clo pmp pio slum part apst [ 1.799997] ahci 0000:00:1f.2: setting latency timer to 64 [ 1.800555] scsi2 : ahci [ 1.800729] scsi3 : ahci [ 1.800900] scsi4 : ahci [ 1.801075] scsi5 : ahci [ 1.801249] scsi6 : ahci [ 1.801427] scsi7 : ahci [ 1.801649] ata3: SATA max UDMA/133 abar m2048@0xfe32a000 port 0xfe32a100 irq 44 [ 1.801652] ata4: SATA max UDMA/133 abar m2048@0xfe32a000 port 0xfe32a180 irq 44 [ 1.801654] ata5: SATA max UDMA/133 abar m2048@0xfe32a000 port 0xfe32a200 irq 44 [ 1.801656] ata6: SATA max UDMA/133 abar m2048@0xfe32a000 port 0xfe32a280 irq 44 [ 1.801658] ata7: SATA max UDMA/133 abar m2048@0xfe32a000 port 0xfe32a300 irq 44 [ 1.801660] ata8: SATA max UDMA/133 abar m2048@0xfe32a000 port 0xfe32a380 irq 44 [ 1.889709] Refined TSC clocksource calibration: 3192.000 MHz. [ 1.889714] Switching to clocksource tsc [ 1.900371] hub 2-1:1.0: USB hub found [ 1.900563] hub 2-1:1.0: 8 ports detected [ 2.149067] ata4: SATA link down (SStatus 0 SControl 300) [ 2.149097] ata8: SATA link down (SStatus 0 SControl 300) [ 2.149120] ata5: SATA link down (SStatus 0 SControl 300) [ 2.149142] ata6: SATA link down (SStatus 0 SControl 300) [ 2.149163] ata7: SATA link down (SStatus 0 SControl 300) [ 2.179157] usb 2-1.1: new low speed USB device using ehci_hcd and address 3 [ 2.348566] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300) [ 2.349746] ata3.00: ATA-8: ST3500418AS, CC44, max UDMA/133 [ 2.349751] ata3.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32) [ 2.351108] ata3.00: configured for UDMA/133 [ 2.351308] scsi 2:0:0:0: Direct-Access ATA ST3500418AS CC44 PQ: 0 ANSI: 5 [ 2.351492] sd 2:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB) [ 2.351494] sd 2:0:0:0: Attached scsi generic sg0 type 0 [ 2.351540] sd 2:0:0:0: [sda] Write Protect is off [ 2.351543] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 2.351565] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 2.388622] usb 2-1.2: new low speed USB device using ehci_hcd and address 4 [ 2.416160] sda: sda1 sda2 sda3 < sda5 sda6 > [ 2.416559] sd 2:0:0:0: [sda] Attached SCSI disk [ 2.458432] input: USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.0/input/input2 [ 2.458519] generic-usb 0003:04D9:1603.0001: input,hidraw0: USB HID v1.10 Keyboard [ USB Keyboard] on usb-0000:00:1d.0-1.1/input0 [ 2.474997] input: USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.1/input/input3 [ 2.475076] generic-usb 0003:04D9:1603.0002: input,hidraw1: USB HID v1.10 Device [ USB Keyboard] on usb-0000:00:1d.0-1.1/input1 [ 2.475095] usbcore: registered new interface driver usbhid [ 2.475097] usbhid: USB HID core driver [ 2.548149] input: HID 0566:3002 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/input/input4 [ 2.548223] generic-usb 0003:0566:3002.0003: input,hidraw2: USB HID v1.10 Keyboard [HID 0566:3002] on usb-0000:00:1d.0-1.2/input0 [ 2.556973] input: HID 0566:3002 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.1/input/input5 [ 2.557104] generic-usb 0003:0566:3002.0004: input,hiddev0,hidraw3: USB HID v1.10 Device [HID 0566:3002] on usb-0000:00:1d.0-1.2/input1 [ 2.647994] usb 2-1.3: new low speed USB device using ehci_hcd and address 5 [ 2.774666] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.0/input/input6 [ 2.774753] generic-usb 0003:046D:C05B.0005: input,hidraw4: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.0-1.3/input0 [ 2.923906] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null) [ 11.043191] <30>udev[292]: starting version 167 [ 11.057838] Adding 4051964k swap on /dev/sda6. Priority:-1 extents:1 across:4051964k [ 11.067618] lp: driver loaded but no devices found [ 11.144861] [drm] Initialized drm 1.1.0 20060810 [ 11.145982] type=1400 audit(1309963747.462:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=424 comm="apparmor_parser" [ 11.146511] type=1400 audit(1309963747.472:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=424 comm="apparmor_parser" [ 11.146841] type=1400 audit(1309963747.472:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=424 comm="apparmor_parser" [ 11.169310] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 [ 11.169314] i915 0000:00:02.0: setting latency timer to 64 [ 11.205200] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro [ 11.214722] mtrr: type mismatch for d0000000,10000000 old: write-back new: write-combining [ 11.214726] [drm] MTRR allocation failed. Graphics performance may suffer. [ 11.215339] i915 0000:00:02.0: irq 45 for MSI/MSI-X [ 11.215344] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010). [ 11.215346] [drm] Driver supports precise vblank timestamp query. [ 11.237893] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem [ 11.237897] vgaarb: transferring owner from PCI:0000:00:02.0 to PCI:0000:05:00.0 [ 11.295026] ppdev: user-space parallel port driver [ 11.428456] Console: switching to colour frame buffer device 160x64 [ 11.428477] fb0: inteldrmfb frame buffer device [ 11.428478] drm: registered panic notifier [ 11.428518] ACPI Exception: AE_NOT_FOUND, Evaluating _DOD (20110112/video-1139) [ 11.428607] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input7 [ 11.428668] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no) [ 11.428822] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0 [ 11.655563] e1000e 0000:00:19.0: irq 43 for MSI/MSI-X [ 11.715112] e1000e 0000:00:19.0: irq 43 for MSI/MSI-X [ 11.715458] ADDRCONF(NETDEV_UP): eth0: link is not ready [ 11.852481] type=1400 audit(1309963748.172:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=765 comm="apparmor_parser" [ 11.852612] type=1400 audit(1309963748.172:6): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=764 comm="apparmor_parser" [ 11.852925] type=1400 audit(1309963748.172:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=765 comm="apparmor_parser" [ 11.853214] type=1400 audit(1309963748.172:8): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=765 comm="apparmor_parser" [ 11.854286] type=1400 audit(1309963748.172:9): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=768 comm="apparmor_parser" [ 11.854488] type=1400 audit(1309963748.172:10): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=769 comm="apparmor_parser" [ 11.854942] type=1400 audit(1309963748.182:11): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=768 comm="apparmor_parser" [ 13.153800] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro,commit=0 [ 13.172750] e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: Rx [ 13.172753] e1000e 0000:00:19.0: eth0: 10/100 speed: disabling TSO [ 13.173026] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 16.345902] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro,commit=0 [ 23.984268] eth0: no IPv6 routers present [ 115.928074] pci-stub 0000:05:00.0: claimed by stub [ 115.928156] pci-stub 0000:05:00.0: claimed by stub [ 115.928177] pci-stub 0000:05:00.1: claimed by stub [ 115.928221] pci-stub 0000:05:00.1: claimed by stub [ 116.056635] loaded kvm module (v2.6.39-12053-g681fb67) [ 116.057012] ehci_hcd 0000:00:1a.0: remove, state 4 [ 116.057027] usb usb1: USB disconnect, address 1 [ 116.057032] usb 1-1: USB disconnect, address 2 [ 116.127416] ehci_hcd 0000:00:1a.0: USB bus 1 deregistered [ 116.127552] ehci_hcd 0000:00:1a.0: PCI INT A disabled [ 124.112440] pci-stub 0000:05:00.0: enabling device (0104 -> 0107) [ 124.112448] pci-stub 0000:05:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 [ 124.112453] pci-stub 0000:05:00.0: BAR 3: can't reserve [mem 0xf8000000-0xfbffffff 64bit pref] [ 124.112455] kvm_vm_ioctl_assign_device: Could not get access to device regions [ 124.112460] pci-stub 0000:05:00.0: PCI INT A disabled [ 124.402838] usb 2-1.2: reset low speed USB device using ehci_hcd and address 4 [ 124.715533] input: HID 0566:3002 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.1/input/input8 [ 124.715817] generic-usb 0003:0566:3002.0006: input,hiddev0,hidraw2: USB HID v1.10 Device [HID 0566:3002] on usb-0000:00:1d.0-1.2/input1 [ 124.841699] input: HID 0566:3002 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/input/input9 [ 124.841861] generic-usb 0003:0566:3002.0007: input,hidraw3: USB HID v1.10 Keyboard [HID 0566:3002] on usb-0000:00:1d.0-1.2/input0 ------------------------------------------------------------------------ ---- lspci -vv 00:00.0 Host bridge: Intel Corporation Core Processor DRAM Controller (rev 02) Subsystem: Fujitsu Technology Solutions Device 1168 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ >SERR- <PERR- INTx- Latency: 0 Capabilities: [e0] Vendor Specific Information: Len=0c <?> Kernel driver in use: agpgart-intel 00:02.0 VGA compatible controller: Intel Corporation Core Processor Integrated Graphics Controller (rev 02) (prog-if 00 [VGA controller]) Subsystem: Fujitsu Technology Solutions Device 1168 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+ Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 45 Region 0: Memory at fe400000 (64-bit, non-prefetchable) [size=4M] Region 2: Memory at d0000000 (64-bit, prefetchable) [size=256M] Region 4: I/O ports at 1890 [size=8] Expansion ROM at <unassigned> [disabled] Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit- Address: fee0100c Data: 4191 Capabilities: [d0] Power Management version 2 Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-) Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME- Capabilities: [a4] PCI Advanced Features AFCap: TP+ FLR+ AFCtrl: FLR- AFStatus: TP- Kernel driver in use: i915 Kernel modules: i915 00:16.0 Communication controller: Intel Corporation 5 Series/3400 Series Chipset HECI Controller (rev 06) Subsystem: Fujitsu Technology Solutions Device 1168 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx+ Latency: 0 Interrupt: pin A routed to IRQ 11 Region 0: Memory at fe324000 (64-bit, non-prefetchable) [size=16] Capabilities: [50] Power Management version 3 Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+) Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME- Capabilities: [8c] MSI: Enable- Count=1/1 Maskable- 64bit+ Address: 0000000000000000 Data: 0000 00:16.2 IDE interface: Intel Corporation 5 Series/3400 Series Chipset PT IDER Controller (rev 06) (prog-if 85 [Master SecO PriO]) Subsystem: Fujitsu Technology Solutions Device 1168 Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin C routed to IRQ 22 Region 0: I/O ports at 18a8 [size=8] Region 1: I/O ports at 189c [size=4] Region 2: I/O ports at 18a0 [size=8] Region 3: I/O ports at 1898 [size=4] Region 4: I/O ports at 1880 [size=16] Capabilities: [c8] Power Management version 3 Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-) Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME- Capabilities: [d0] MSI: Enable- Count=1/1 Maskable- 64bit+ Address: 0000000000000000 Data: 0000 Kernel driver in use: ata_generic 00:16.3 Serial controller: Intel Corporation 5 Series/3400 Series Chipset KT Controller (rev 06) (prog-if 02 [16550]) Subsystem: Fujitsu Technology Solutions Device 1168 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin B routed to IRQ 21 Region 0: I/O ports at 18b0 [size=8] Region 1: Memory at fe326000 (32-bit, non-prefetchable) [size=4K] Capabilities: [c8] Power Management version 3 Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-) Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME- Capabilities: [d0] MSI: Enable- Count=1/1 Maskable- 64bit+ Address: 0000000000000000 Data: 0000 Kernel driver in use: serial 00:19.0 Ethernet controller: Intel Corporation 82578DM Gigabit Network Connection (rev 05) Subsystem: Fujitsu Technology Solutions Device 1174 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+ Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 43 Region 0: Memory at fe300000 (32-bit, non-prefetchable) [size=128K] Region 1: Memory at fe327000 (32-bit, non-prefetchable) [size=4K] Region 2: I/O ports at 1820 [size=32] Capabilities: [c8] Power Management version 2 Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+) Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=1 PME- Capabilities: [d0] MSI: Enable+ Count=1/1 Maskable- 64bit+ Address: 00000000fee0100c Data: 41a1 Capabilities: [e0] PCI Advanced Features AFCap: TP+ FLR+ AFCtrl: FLR- AFStatus: TP- Kernel driver in use: e1000e Kernel modules: e1000e 00:1a.0 USB Controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 05) (prog-if 20 [EHCI]) Subsystem: Fujitsu Technology Solutions Device 1167 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 19 Region 0: Memory at fe328000 (32-bit, non-prefetchable) [size=1K] Capabilities: [50] Power Management version 2 Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold+) Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME- Capabilities: [58] Debug port: BAR=1 offset=00a0 Capabilities: [98] PCI Advanced Features AFCap: TP+ FLR+ AFCtrl: FLR- AFStatus: TP- Kernel driver in use: ehci_hcd 00:1b.0 Audio device: Intel Corporation 5 Series/3400 Series Chipset High Definition Audio (rev 05) Subsystem: Fujitsu Technology Solutions Device 118c Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin A routed to IRQ 10 Region 0: Memory at fe320000 (64-bit, non-prefetchable) [size=16K] Capabilities: [50] Power Management version 2 Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0+,D1-,D2-,D3hot+,D3cold+) Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME- Capabilities: [60] MSI: Enable- Count=1/1 Maskable- 64bit+ Address: 0000000000000000 Data: 0000 Capabilities: [70] Express (v1) Root Complex Integrated Endpoint, MSI 00 DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us ExtTag- RBE- FLReset+ DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported- RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+ MaxPayload 128 bytes, MaxReadReq 128 bytes DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend- LnkCap: Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us ClockPM- Surprise- LLActRep- BwNot- LnkCtl: ASPM Disabled; Disabled- Retrain- CommClk- ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt- LnkSta: Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt- Capabilities: [100 v1] Virtual Channel Caps: LPEVC=0 RefClk=100ns PATEntryBits=1 Arb: Fixed- WRR32- WRR64- WRR128- Ctrl: ArbSelect=Fixed Status: InProgress- VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans- Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256- Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=01 Status: NegoPending- InProgress- VC1: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans- Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256- Ctrl: Enable+ ID=1 ArbSelect=Fixed TC/VC=02 Status: NegoPending- InProgress- Capabilities: [130 v1] Root Complex Link Desc: PortNumber=0f ComponentID=00 EltType=Config Link0: Desc: TargetPort=00 TargetComponent=00 AssocRCRB- LinkType=MemMapped LinkValid+ Addr: 00000000fed1c000 Kernel modules: snd-hda-intel 00:1c.0 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 1 (rev 05) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Bus: primary=00, secondary=05, subordinate=05, sec-latency=0 I/O behind bridge: 00002000-00002fff Memory behind bridge: fc000000-fe0fffff Prefetchable memory behind bridge: 00000000f0000000-00000000fbffffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: [40] Express (v2) Root Port (Slot+), MSI 00 DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us ExtTag- RBE+ FLReset- DevCtl: Report errors: Correctable- Non-Fatal- Fatal+ Unsupported- RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- MaxPayload 128 bytes, MaxReadReq 128 bytes DevSta: CorrErr+ UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend- LnkCap: Port #1, Speed 2.5GT/s, Width x4, ASPM L0s L1, Latency L0 <256ns, L1 <4us ClockPM- Surprise- LLActRep+ BwNot- LnkCtl: ASPM L0s L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk+ ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt- LnkSta: Speed 2.5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt- SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Slot #1, PowerLimit 25.000W; Interlock- NoCompl+ SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt- HPIrq- LinkChg- Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock- SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock- Changed: MRL- PresDet- LinkState+ RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal+ PMEIntEna- CRSVisible- RootCap: CRSVisible- RootSta: PME ReqID 0000, PMEStatus- PMEPending- DevCap2: Completion Timeout: Range BC, TimeoutDis+ ARIFwd- DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd- LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS- Compliance De-emphasis: -6dB LnkSta2: Current De-emphasis Level: -6dB Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit- Address: 00000000 Data: 0000 Capabilities: [90] Subsystem: Fujitsu Technology Solutions Device 1167 Capabilities: [a0] Power Management version 2 Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+) Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME- Kernel driver in use: pcieport Kernel modules: shpchp 00:1c.4 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 5 (rev 05) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Bus: primary=00, secondary=0d, subordinate=0d, sec-latency=0 I/O behind bridge: 00003000-00003fff Memory behind bridge: c0000000-c01fffff Prefetchable memory behind bridge: 00000000c0200000-00000000c03fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: [40] Express (v2) Root Port (Slot+), MSI 00 DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us ExtTag- RBE+ FLReset- DevCtl: Report errors: Correctable- Non-Fatal- Fatal+ Unsupported- RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- MaxPayload 128 bytes, MaxReadReq 128 bytes DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend- LnkCap: Port #5, Speed 2.5GT/s, Width x1, ASPM L0s L1, Latency L0 <1us, L1 <4us ClockPM- Surprise- LLActRep+ BwNot- LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk- ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt- LnkSta: Speed 2.5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt- SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Slot #0, PowerLimit 0.000W; Interlock- NoCompl+ SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt- HPIrq- LinkChg- Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock- SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock- Changed: MRL- PresDet- LinkState- RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal+ PMEIntEna- CRSVisible- RootCap: CRSVisible- RootSta: PME ReqID 0000, PMEStatus- PMEPending- DevCap2: Completion Timeout: Range BC, TimeoutDis+ ARIFwd- DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd- LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS- Compliance De-emphasis: -6dB LnkSta2: Current De-emphasis Level: -6dB Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit- Address: 00000000 Data: 0000 Capabilities: [90] Subsystem: Fujitsu Technology Solutions Device 1167 Capabilities: [a0] Power Management version 2 Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+) Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME- Kernel driver in use: pcieport Kernel modules: shpchp 00:1c.6 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 7 (rev 05) (prog-if 00 [Normal decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Bus: primary=00, secondary=0e, subordinate=0e, sec-latency=0 I/O behind bridge: 00004000-00004fff Memory behind bridge: c0400000-c05fffff Prefetchable memory behind bridge: 00000000c0600000-00000000c07fffff Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: [40] Express (v2) Root Port (Slot+), MSI 00 DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us ExtTag- RBE+ FLReset- DevCtl: Report errors: Correctable- Non-Fatal- Fatal+ Unsupported- RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- MaxPayload 128 bytes, MaxReadReq 128 bytes DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend- LnkCap: Port #7, Speed 2.5GT/s, Width x1, ASPM L0s L1, Latency L0 <1us, L1 <4us ClockPM- Surprise- LLActRep+ BwNot- LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk- ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt- LnkSta: Speed 2.5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt- SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Slot #0, PowerLimit 0.000W; Interlock- NoCompl+ SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg- Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock- SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock- Changed: MRL- PresDet- LinkState- RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal+ PMEIntEna- CRSVisible- RootCap: CRSVisible- RootSta: PME ReqID 0000, PMEStatus- PMEPending- DevCap2: Completion Timeout: Range BC, TimeoutDis+ ARIFwd- DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd- LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS- Compliance De-emphasis: -6dB LnkSta2: Current De-emphasis Level: -6dB Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit- Address: 00000000 Data: 0000 Capabilities: [90] Subsystem: Fujitsu Technology Solutions Device 1167 Capabilities: [a0] Power Management version 2 Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+) Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME- Kernel driver in use: pcieport Kernel modules: shpchp 00:1d.0 USB Controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 05) (prog-if 20 [EHCI]) Subsystem: Fujitsu Technology Solutions Device 1167 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 20 Region 0: Memory at fe329000 (32-bit, non-prefetchable) [size=1K] Capabilities: [50] Power Management version 2 Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold+) Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME- Capabilities: [58] Debug port: BAR=1 offset=00a0 Capabilities: [98] PCI Advanced Features AFCap: TP+ FLR+ AFCtrl: FLR- AFStatus: TP- Kernel driver in use: ehci_hcd 00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev a5) (prog-if 01 [Subtractive decode]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Bus: primary=00, secondary=11, subordinate=11, sec-latency=32 Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR- BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B- PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn- Capabilities: [50] Subsystem: Fujitsu Technology Solutions Device 1167 00:1f.0 ISA bridge: Intel Corporation 3400 Series Chipset LPC Interface Controller (rev 05) Subsystem: Fujitsu Technology Solutions Device 1167 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Capabilities: [e0] Vendor Specific Information: Len=10 <?> Kernel modules: iTCO_wdt 00:1f.2 SATA controller: Intel Corporation 5 Series/3400 Series Chipset 6 port SATA AHCI Controller (rev 05) (prog-if 01 [AHCI 1.0]) Subsystem: Fujitsu Technology Solutions Device 1167 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+ Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Interrupt: pin A routed to IRQ 44 Region 0: I/O ports at 18c8 [size=8] Region 1: I/O ports at 18bc [size=4] Region 2: I/O ports at 18c0 [size=8] Region 3: I/O ports at 18b8 [size=4] Region 4: I/O ports at 1840 [size=32] Region 5: Memory at fe32a000 (32-bit, non-prefetchable) [size=2K] Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit- Address: fee0500c Data: 4189 Capabilities: [70] Power Management version 3 Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot+,D3cold-) Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME- Capabilities: [a8] SATA HBA v1.0 BAR4 Offset=00000004 Capabilities: [b0] PCI Advanced Features AFCap: TP+ FLR+ AFCtrl: FLR- AFStatus: TP- Kernel driver in use: ahci Kernel modules: ahci 00:1f.3 SMBus: Intel Corporation 5 Series/3400 Series Chipset SMBus Controller (rev 05) Subsystem: Fujitsu Technology Solutions Device 1167 Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Interrupt: pin D routed to IRQ 11 Region 0: Memory at fe32b000 (64-bit, non-prefetchable) [size=256] Region 4: I/O ports at 1860 [size=32] Kernel modules: i2c-i801 05:00.0 VGA compatible controller: nVidia Corporation Device 0dd8 (rev a1) (prog-if 00 [VGA controller]) Subsystem: nVidia Corporation Device 084a Physical Slot: 1 Control: I/O- Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR+ <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin A routed to IRQ 11 Region 0: Memory at fc000000 (32-bit, non-prefetchable) [disabled] [size=32M] Region 1: Memory at f0000000 (64-bit, prefetchable) [disabled] [size=128M] Region 3: Memory at f8000000 (64-bit, prefetchable) [disabled] [size=64M] Region 5: I/O ports at 2000 [disabled] [size=128] [virtual] Expansion ROM at fe080000 [disabled] [size=512K] Capabilities: [60] Power Management version 3 Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-) Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME- Capabilities: [68] MSI: Enable- Count=1/1 Maskable- 64bit+ Address: 0000000000000000 Data: 0000 Capabilities: [78] Express (v1) Endpoint, MSI 00 DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported- RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+ MaxPayload 128 bytes, MaxReadReq 512 bytes DevSta: CorrErr- UncorrErr+ FatalErr- UnsuppReq+ AuxPwr- TransPend- LnkCap: Port #0, Speed 2.5GT/s, Width x16, ASPM L0s L1, Latency L0 <256ns, L1 <4us ClockPM+ Surprise- LLActRep- BwNot- LnkCtl: ASPM L0s L1 Enabled; RCB 128 bytes Disabled- Retrain- CommClk+ ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt- LnkSta: Speed 2.5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt- Capabilities: [b4] Vendor Specific Information: Len=14 <?> Capabilities: [100 v1] Virtual Channel Caps: LPEVC=0 RefClk=100ns PATEntryBits=1 Arb: Fixed- WRR32- WRR64- WRR128- Ctrl: ArbSelect=Fixed Status: InProgress- VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans- Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256- Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff Status: NegoPending- InProgress- Capabilities: [128 v1] Power Budgeting <?> Capabilities: [600 v1] Vendor Specific Information: ID=0001 Rev=1 Len=024 <?> Kernel modules: nouveau, nvidiafb 05:00.1 Audio device: nVidia Corporation GF106 High Definition Audio Controller (rev a1) Subsystem: nVidia Corporation Device 084a Physical Slot: 1 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR+ <PERR- INTx- Latency: 0, Cache Line Size: 32 bytes Interrupt: pin B routed to IRQ 11 Region 0: Memory at fe000000 (32-bit, non-prefetchable) [size=16K] Capabilities: [60] Power Management version 3 Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-) Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME- Capabilities: [68] MSI: Enable- Count=1/1 Maskable- 64bit+ Address: 0000000000000000 Data: 0000 Capabilities: [78] Express (v1) Endpoint, MSI 00 DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported- RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+ MaxPayload 128 bytes, MaxReadReq 512 bytes DevSta: CorrErr- UncorrErr+ FatalErr- UnsuppReq+ AuxPwr- TransPend- LnkCap: Port #0, Speed 2.5GT/s, Width x16, ASPM L0s L1, Latency L0 <256ns, L1 <4us ClockPM+ Surprise- LLActRep- BwNot- LnkCtl: ASPM L0s L1 Enabled; RCB 128 bytes Disabled- Retrain- CommClk+ ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt- LnkSta: Speed 2.5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt- Kernel modules: snd-hda-intel ff:00.0 Host bridge: Intel Corporation Core Processor QuickPath Architecture Generic Non-core Registers (rev 02) Subsystem: Intel Corporation Device 8086 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 ff:00.1 Host bridge: Intel Corporation Core Processor QuickPath Architecture System Address Decoder (rev 02) Subsystem: Intel Corporation Device 8086 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 ff:02.0 Host bridge: Intel Corporation Core Processor QPI Link 0 (rev 02) Subsystem: Intel Corporation Device 8086 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 ff:02.1 Host bridge: Intel Corporation Core Processor QPI Physical 0 (rev 02) Subsystem: Intel Corporation Device 8086 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 ff:02.2 Host bridge: Intel Corporation Core Processor Reserved (rev 02) Subsystem: Intel Corporation Device 8086 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 ff:02.3 Host bridge: Intel Corporation Core Processor Reserved (rev 02) Subsystem: Intel Corporation Device 8086 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 ------------------------------------------------------------------------ ---- cat /proc/iomem 00000000-0000ffff : reserved 00010000-0009cfff : System RAM 0009d000-0009ffff : reserved 000a0000-000bffff : PCI Bus 0000:00 000c8000-000dffff : PCI Bus 0000:00 000ce000-000cffff : reserved 000e0000-000fffff : reserved 00100000-9ffbffff : System RAM 01000000-015cd2bc : Kernel code 015cd2bd-01ab38ff : Kernel data 01baa000-01cfefff : Kernel bss 9ffc0000-9ffc7fff : ACPI Tables 9ffc8000-9ffcafff : ACPI Non-volatile Storage 9ffcb000-bfffffff : reserved c0000000-dfffffff : PCI Bus 0000:00 c0000000-c01fffff : PCI Bus 0000:0d c0200000-c03fffff : PCI Bus 0000:0d c0400000-c05fffff : PCI Bus 0000:0e c0600000-c07fffff : PCI Bus 0000:0e c0800000-c0800fff : Intel Flush Page d0000000-dfffffff : 0000:00:02.0 e0000000-efffffff : reserved e0000000-e11fffff : PCI MMCONFIG 0000 [bus 00-11] f0000000-febfffff : PCI Bus 0000:00 f0000000-fbffffff : PCI Bus 0000:05 f0000000-f7ffffff : 0000:05:00.0 f8000000-fbffffff : 0000:05:00.0 fa000000-fbffffff : reserved fc000000-fe0fffff : PCI Bus 0000:05 fc000000-fdffffff : 0000:05:00.0 fe000000-fe003fff : 0000:05:00.1 fe080000-fe0fffff : 0000:05:00.0 fe300000-fe31ffff : 0000:00:19.0 fe300000-fe31ffff : e1000e fe320000-fe323fff : 0000:00:1b.0 fe324000-fe32400f : 0000:00:16.0 fe326000-fe326fff : 0000:00:16.3 fe327000-fe327fff : 0000:00:19.0 fe327000-fe327fff : e1000e fe328000-fe3283ff : 0000:00:1a.0 fe328000-fe3283ff : ehci_hcd fe329000-fe3293ff : 0000:00:1d.0 fe329000-fe3293ff : ehci_hcd fe32a000-fe32a7ff : 0000:00:1f.2 fe32a000-fe32a7ff : ahci fe32b000-fe32b0ff : 0000:00:1f.3 fe400000-fe7fffff : 0000:00:02.0 fec00000-fecfffff : reserved fec00000-fec003ff : IOAPIC 0 fed00000-fedfffff : PCI Bus 0000:00 fed00000-fed003ff : HPET 0 fee00000-fee00fff : Local APIC fee00000-fee00fff : reserved fef00000-ff7fffff : PCI Bus 0000:00 ff800000-ffffffff : reserved 100000000-137ffffff : System RAM Thanks, Maxim -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html