On Tue, Feb 14, 2012 at 02:49:01PM -0500, Adam Jackson wrote: > This patch is wrong and please do not merge it as is. My hope here is > that the sink will actually _tell_ us when it can't sink something. > > If the bug that prompted this is doing what I think it's doing, then we > should see SINK_STATUS fail to light up, and we should then retry link > setup at the lower link rate like the spec suggests. > > Bugzilla: https://bugs.freedesktop.org/45801 > > Not-signed-off-by: Adam Jackson <ajax at redhat.com> > --- > drivers/gpu/drm/i915/intel_dp.c | 11 +++++++++++ > 1 files changed, 11 insertions(+), 0 deletions(-) > > diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c > index 94f860c..a10775e 100644 > --- a/drivers/gpu/drm/i915/intel_dp.c > +++ b/drivers/gpu/drm/i915/intel_dp.c > @@ -1271,6 +1271,17 @@ static void intel_dp_commit(struct drm_encoder *encoder) > > if (HAS_PCH_CPT(dev)) > intel_cpt_verify_modeset(dev, intel_crtc->pipe); > + > + /* check sink status. this doesn't belong here. */ > + do { > + uint8_t byte; > + int ret = intel_dp_aux_native_read(intel_dp, DP_SINK_STATUS, > + &byte, 1); > + if (ret != 1) > + DRM_ERROR("Checking DP sink status failed\n"); > + else > + DRM_DEBUG_KMS("Sink status after training: %x\n", byte); > + } while (0); > } > > static void > -- > 1.7.7.6 I applied the above patch to v3.2-rc2-11398-ge57b688, and followed the test procedure described in the bug report, i.e. boot with KMS console at maximum resolution (display remains off), X starts with lower resolution (1024x768), after login switch to maximum resolution with xrandr --output DP1 --auto. The sink status output of the three events is: # grep -i sink linux-v3.2-rc2-11398-ge57b688+sink-debug-dmesg [ 49.653726] [drm:intel_dp_commit], Sink status after training: 0 [ 55.296609] [drm:intel_dp_commit], Sink status after training: 0 [ 77.944279] [drm:intel_dp_commit], Sink status after training: 0 The full dmesg is attached. Peter -------------- next part -------------- [ 0.000000] Initializing cgroup subsys cpuset [ 0.000000] Initializing cgroup subsys cpu [ 0.000000] Linux version 3.3.0-rc1+ (root at asterope.colberg.org) (gcc version 4.6.2 (Debian 4.6.2-12) ) #2 SMP Tue Feb 14 22:39:54 UTC 2012 [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.3.0-rc1+ root=/dev/mapper/vg-root ro pcie_aspm=force i915.i915_enable_rc6=1 i915.i915_enable_fbc=1 i915.lvds_downclock=1 drm.debug=0x06 [ 0.000000] Disabled fast string operations [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009d800 (usable) [ 0.000000] BIOS-e820: 000000000009d800 - 00000000000a0000 (reserved) [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved) [ 0.000000] BIOS-e820: 0000000000100000 - 0000000020000000 (usable) [ 0.000000] BIOS-e820: 0000000020000000 - 0000000020200000 (reserved) [ 0.000000] BIOS-e820: 0000000020200000 - 0000000040000000 (usable) [ 0.000000] BIOS-e820: 0000000040000000 - 0000000040200000 (reserved) [ 0.000000] BIOS-e820: 0000000040200000 - 00000000da99f000 (usable) [ 0.000000] BIOS-e820: 00000000da99f000 - 00000000dae9f000 (reserved) [ 0.000000] BIOS-e820: 00000000dae9f000 - 00000000daf9f000 (ACPI NVS) [ 0.000000] BIOS-e820: 00000000daf9f000 - 00000000dafff000 (ACPI data) [ 0.000000] BIOS-e820: 00000000dafff000 - 00000000db000000 (usable) [ 0.000000] BIOS-e820: 00000000db000000 - 00000000dfa00000 (reserved) [ 0.000000] BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved) [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved) [ 0.000000] BIOS-e820: 00000000fed08000 - 00000000fed09000 (reserved) [ 0.000000] BIOS-e820: 00000000fed10000 - 00000000fed1a000 (reserved) [ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved) [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) [ 0.000000] BIOS-e820: 00000000ffd20000 - 0000000100000000 (reserved) [ 0.000000] BIOS-e820: 0000000100000000 - 000000021e600000 (usable) [ 0.000000] BIOS-e820: 000000021e600000 - 000000021e800000 (reserved) [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] DMI 2.6 present. [ 0.000000] DMI: LENOVO 4286CTO/4286CTO, BIOS 8DET54WW (1.24 ) 10/18/2011 [ 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 = 0x21e600 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-FFFFF write-protect [ 0.000000] MTRR variable ranges enabled: [ 0.000000] 0 base 0FFC00000 mask FFFC00000 write-protect [ 0.000000] 1 base 000000000 mask F80000000 write-back [ 0.000000] 2 base 080000000 mask FC0000000 write-back [ 0.000000] 3 base 0C0000000 mask FE0000000 write-back [ 0.000000] 4 base 0DC000000 mask FFC000000 uncachable [ 0.000000] 5 base 0DB000000 mask FFF000000 uncachable [ 0.000000] 6 base 100000000 mask F00000000 write-back [ 0.000000] 7 base 200000000 mask FE0000000 write-back [ 0.000000] 8 base 21F000000 mask FFF000000 uncachable [ 0.000000] 9 base 21E800000 mask FFF800000 uncachable [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 [ 0.000000] last_pfn = 0xdb000 max_arch_pfn = 0x400000000 [ 0.000000] initial memory mapped : 0 - 20000000 [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 20480 [ 0.000000] init_memory_mapping: 0000000000000000-00000000db000000 [ 0.000000] 0000000000 - 00db000000 page 2M [ 0.000000] kernel direct mapping tables up to db000000 @ 1fffb000-20000000 [ 0.000000] init_memory_mapping: 0000000100000000-000000021e600000 [ 0.000000] 0100000000 - 021e600000 page 2M [ 0.000000] kernel direct mapping tables up to 21e600000 @ da995000-da99f000 [ 0.000000] RAMDISK: 3682c000 - 3740e000 [ 0.000000] ACPI: RSDP 00000000000f00e0 00024 (v02 LENOVO) [ 0.000000] ACPI: XSDT 00000000daffe120 000AC (v01 LENOVO TP-8D 00001240 PTEC 00000002) [ 0.000000] ACPI: FACP 00000000dafe7000 000F4 (v04 LENOVO TP-8D 00001240 PTL 00000002) [ 0.000000] ACPI: DSDT 00000000dafea000 0F6A7 (v01 LENOVO TP-8D 00001240 INTL 20061109) [ 0.000000] ACPI: FACS 00000000daf2d000 00040 [ 0.000000] ACPI: SLIC 00000000daffd000 00176 (v01 LENOVO TP-8D 00001240 PTEC 00000001) [ 0.000000] ACPI: SSDT 00000000daffc000 00249 (v01 LENOVO TP-SSDT2 00000200 INTL 20061109) [ 0.000000] ACPI: SSDT 00000000daffb000 00033 (v01 LENOVO TP-SSDT1 00000100 INTL 20061109) [ 0.000000] ACPI: SSDT 00000000daffa000 007D1 (v01 LENOVO SataAhci 00001000 INTL 20061109) [ 0.000000] ACPI: HPET 00000000dafe6000 00038 (v01 LENOVO TP-8D 00001240 PTL 00000002) [ 0.000000] ACPI: APIC 00000000dafe5000 00098 (v01 LENOVO TP-8D 00001240 PTL 00000002) [ 0.000000] ACPI: MCFG 00000000dafe4000 0003C (v01 LENOVO TP-8D 00001240 PTL 00000002) [ 0.000000] ACPI: ECDT 00000000dafe3000 00052 (v01 LENOVO TP-8D 00001240 PTL 00000002) [ 0.000000] ACPI: ASF! 00000000dafe9000 000A5 (v32 LENOVO TP-8D 00001240 PTL 00000002) [ 0.000000] ACPI: TCPA 00000000dafe2000 00032 (v02 PTL LENOVO 06040000 LNVO 00000001) [ 0.000000] ACPI: SSDT 00000000dafe1000 00AAB (v01 PmRef Cpu0Ist 00003000 INTL 20061109) [ 0.000000] ACPI: SSDT 00000000dafe0000 00996 (v01 PmRef CpuPm 00003000 INTL 20061109) [ 0.000000] ACPI: DMAR 00000000dafdf000 000E8 (v01 INTEL SNB 00000001 INTL 00000001) [ 0.000000] ACPI: UEFI 00000000dafde000 0003E (v01 LENOVO TP-8D 00001240 PTL 00000002) [ 0.000000] ACPI: UEFI 00000000dafdd000 00042 (v01 PTL COMBUF 00000001 PTL 00000001) [ 0.000000] ACPI: UEFI 00000000dafdc000 00292 (v01 LENOVO TP-8D 00001240 PTL 00000002) [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] No NUMA configuration found [ 0.000000] Faking a node at 0000000000000000-000000021e600000 [ 0.000000] Initmem setup node 0 0000000000000000-000000021e600000 [ 0.000000] NODE_DATA [000000021e5fb000 - 000000021e5fffff] [ 0.000000] [ffffea0000000000-ffffea00077fffff] PMD -> [ffff880215c00000-ffff88021cdfffff] on node 0 [ 0.000000] Zone PFN ranges: [ 0.000000] DMA 0x00000010 -> 0x00001000 [ 0.000000] DMA32 0x00001000 -> 0x00100000 [ 0.000000] Normal 0x00100000 -> 0x0021e600 [ 0.000000] Movable zone start PFN for each node [ 0.000000] Early memory PFN ranges [ 0.000000] 0: 0x00000010 -> 0x0000009d [ 0.000000] 0: 0x00000100 -> 0x00020000 [ 0.000000] 0: 0x00020200 -> 0x00040000 [ 0.000000] 0: 0x00040200 -> 0x000da99f [ 0.000000] 0: 0x000dafff -> 0x000db000 [ 0.000000] 0: 0x00100000 -> 0x0021e600 [ 0.000000] On node 0 totalpages: 2067245 [ 0.000000] DMA zone: 56 pages used for memmap [ 0.000000] DMA zone: 5 pages reserved [ 0.000000] DMA zone: 3920 pages, LIFO batch:0 [ 0.000000] DMA32 zone: 14280 pages used for memmap [ 0.000000] DMA32 zone: 875992 pages, LIFO batch:31 [ 0.000000] Normal zone: 16037 pages used for memmap [ 0.000000] Normal zone: 1156955 pages, LIFO batch:31 [ 0.000000] ACPI: PM-Timer IO Port: 0x408 [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled) [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) [ 0.000000] IOAPIC[0]: apic_id 2, version 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] Using ACPI (MADT) for SMP configuration information [ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000 [ 0.000000] SMP: Allowing 8 CPUs, 4 hotplug CPUs [ 0.000000] nr_irqs_gsi: 40 [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000 [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000 [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000 [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000 [ 0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000 [ 0.000000] PM: Registered nosave memory: 0000000040000000 - 0000000040200000 [ 0.000000] PM: Registered nosave memory: 00000000da99f000 - 00000000dae9f000 [ 0.000000] PM: Registered nosave memory: 00000000dae9f000 - 00000000daf9f000 [ 0.000000] PM: Registered nosave memory: 00000000daf9f000 - 00000000dafff000 [ 0.000000] PM: Registered nosave memory: 00000000db000000 - 00000000dfa00000 [ 0.000000] PM: Registered nosave memory: 00000000dfa00000 - 00000000f8000000 [ 0.000000] PM: Registered nosave memory: 00000000f8000000 - 00000000fc000000 [ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fec00000 [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000 [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed08000 [ 0.000000] PM: Registered nosave memory: 00000000fed08000 - 00000000fed09000 [ 0.000000] PM: Registered nosave memory: 00000000fed09000 - 00000000fed10000 [ 0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed1a000 [ 0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000 [ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000 [ 0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000 [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000 [ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffd20000 [ 0.000000] PM: Registered nosave memory: 00000000ffd20000 - 0000000100000000 [ 0.000000] Allocating PCI resources starting at dfa00000 (gap: dfa00000:18600000) [ 0.000000] Booting paravirtualized kernel on bare hardware [ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:8 nr_node_ids:1 [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88021e200000 s81984 r8192 d24512 u262144 [ 0.000000] pcpu-alloc: s81984 r8192 d24512 u262144 alloc=1*2097152 [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2036867 [ 0.000000] Policy zone: Normal [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.3.0-rc1+ root=/dev/mapper/vg-root ro pcie_aspm=force i915.i915_enable_rc6=1 i915.i915_enable_fbc=1 i915.lvds_downclock=1 drm.debug=0x06 [ 0.000000] PCIe ASPM is forcibly enabled [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) [ 0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340 [ 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: 8064616k/8886272k available (3402k kernel code, 617292k absent, 204364k reserved, 3266k data, 560k init) [ 0.000000] Hierarchical RCU implementation. [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. [ 0.000000] NR_IRQS:33024 nr_irqs:744 16 [ 0.000000] Extended CMOS year: 2000 [ 0.000000] Console: colour VGA+ 80x25 [ 0.000000] console [tty0] enabled [ 0.000000] allocated 33554432 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.004000] Detected 2790.999 MHz processor. [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 5581.99 BogoMIPS (lpj=11163996) [ 0.000117] pid_max: default: 32768 minimum: 301 [ 0.000207] Security Framework initialized [ 0.000265] AppArmor: AppArmor disabled by boot time parameter [ 0.000908] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes) [ 0.002466] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes) [ 0.003142] Mount-cache hash table entries: 256 [ 0.003304] Initializing cgroup subsys cpuacct [ 0.003361] Initializing cgroup subsys memory [ 0.003430] Initializing cgroup subsys devices [ 0.003487] Initializing cgroup subsys freezer [ 0.003543] Initializing cgroup subsys net_cls [ 0.003599] Initializing cgroup subsys blkio [ 0.003683] Disabled fast string operations [ 0.003738] CPU: Physical Processor ID: 0 [ 0.003793] CPU: Processor Core ID: 0 [ 0.003851] ENERGY_PERF_BIAS: Set to 'normal', was 'performance' [ 0.003852] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8) [ 0.003968] mce: CPU supports 7 MCE banks [ 0.004032] CPU0: Thermal monitoring enabled (TM1) [ 0.004092] using mwait in idle threads. [ 0.004543] ACPI: Core revision 20120111 [ 0.022556] DMAR: Host address width 36 [ 0.022613] DMAR: DRHD base: 0x000000fed90000 flags: 0x0 [ 0.022675] IOMMU 0: reg_base_addr fed90000 ver 1:0 cap c0000020e60262 ecap f0101a [ 0.022748] DMAR: DRHD base: 0x000000fed91000 flags: 0x1 [ 0.022809] IOMMU 1: reg_base_addr fed91000 ver 1:0 cap c9008020660262 ecap f0105a [ 0.024194] DMAR: RMRR base: 0x000000dacd5000 end: 0x000000dacebfff [ 0.024253] DMAR: RMRR base: 0x000000db800000 end: 0x000000df9fffff [ 0.024382] IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1 [ 0.024441] HPET id 0 under DRHD base 0xfed91000 [ 0.024498] HPET id 0 under DRHD base 0xfed91000 [ 0.024555] HPET id 0 under DRHD base 0xfed91000 [ 0.024612] HPET id 0 under DRHD base 0xfed91000 [ 0.024668] HPET id 0 under DRHD base 0xfed91000 [ 0.024725] HPET id 0 under DRHD base 0xfed91000 [ 0.024781] HPET id 0 under DRHD base 0xfed91000 [ 0.024837] HPET id 0 under DRHD base 0xfed91000 [ 0.025137] Enabled IRQ remapping in x2apic mode [ 0.025194] Enabling x2apic [ 0.025249] Enabled x2apic [ 0.025315] Switched APIC routing to cluster x2apic. [ 0.025788] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.065433] CPU0: Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz stepping 07 [ 0.172479] Performance Events: PEBS fmt1+, SandyBridge events, Intel PMU driver. [ 0.172670] PEBS disabled due to CPU errata. [ 0.172729] ... version: 3 [ 0.172785] ... bit width: 48 [ 0.172841] ... generic registers: 4 [ 0.172896] ... value mask: 0000ffffffffffff [ 0.172954] ... max period: 000000007fffffff [ 0.173012] ... fixed-purpose events: 3 [ 0.173068] ... event mask: 000000070000000f [ 0.173445] NMI watchdog enabled, takes one hw-pmu counter. [ 0.173598] Booting Node 0, Processors #1 [ 0.173683] smpboot cpu 1: start_ip = 98000 [ 0.184642] Disabled fast string operations [ 0.204711] NMI watchdog enabled, takes one hw-pmu counter. [ 0.204922] #2 [ 0.204964] smpboot cpu 2: start_ip = 98000 [ 0.215921] Disabled fast string operations [ 0.235987] NMI watchdog enabled, takes one hw-pmu counter. [ 0.236195] #3 [ 0.236237] smpboot cpu 3: start_ip = 98000 [ 0.247193] Disabled fast string operations [ 0.267258] NMI watchdog enabled, takes one hw-pmu counter. [ 0.267394] Brought up 4 CPUs [ 0.267449] Total of 4 processors activated (22327.99 BogoMIPS). [ 0.270888] devtmpfs: initialized [ 0.273933] PM: Registering ACPI NVS region at dae9f000 (1048576 bytes) [ 0.274153] print_constraints: dummy: [ 0.274262] NET: Registered protocol family 16 [ 0.274415] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it [ 0.274488] ACPI: bus type pci registered [ 0.274780] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000) [ 0.274856] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820 [ 0.280219] PCI: Using configuration type 1 for base access [ 0.280960] bio: create slab <bio-0> at 0 [ 0.281093] ACPI: Added _OSI(Module Device) [ 0.281149] ACPI: Added _OSI(Processor Device) [ 0.281207] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.281265] ACPI: Added _OSI(Processor Aggregator Device) [ 0.282580] ACPI: EC: EC description table is found, configuring boot EC [ 0.288341] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored [ 0.291316] ACPI: SSDT 00000000dae8c018 008C0 (v01 PmRef Cpu0Cst 00003001 INTL 20061109) [ 0.291801] ACPI: Dynamic OEM Table Load: [ 0.291937] ACPI: SSDT (null) 008C0 (v01 PmRef Cpu0Cst 00003001 INTL 20061109) [ 0.292385] ACPI: SSDT 00000000dae8da98 00303 (v01 PmRef ApIst 00003000 INTL 20061109) [ 0.292910] ACPI: Dynamic OEM Table Load: [ 0.293043] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20061109) [ 0.293320] ACPI: SSDT 00000000dae8bd98 00119 (v01 PmRef ApCst 00003000 INTL 20061109) [ 0.293789] ACPI: Dynamic OEM Table Load: [ 0.293922] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20061109) [ 0.294733] ACPI: Interpreter enabled [ 0.294791] ACPI: (supports S0 S3 S4 S5) [ 0.295020] ACPI: Using IOAPIC for interrupt routing [ 0.298082] ACPI: Power Resource [PUBS] (on) [ 0.301338] ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62 [ 0.302566] ACPI: ACPI Dock Station Driver: 3 docks/bays found [ 0.302627] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.302822] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe]) [ 0.302902] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7] [ 0.302963] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff] [ 0.303023] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] [ 0.303096] pci_root PNP0A08:00: host bridge window [mem 0xdfa00000-0xfebfffff] [ 0.303168] pci_root PNP0A08:00: host bridge window [mem 0xfed40000-0xfed4bfff] [ 0.303270] PCI host bridge to bus 0000:00 [ 0.303327] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] [ 0.303387] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff] [ 0.303446] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] [ 0.303507] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfebfffff] [ 0.303569] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed4bfff] [ 0.303637] pci 0000:00:00.0: [8086:0104] type 0 class 0x000600 [ 0.303670] pci 0000:00:02.0: [8086:0126] type 0 class 0x000300 [ 0.303679] pci 0000:00:02.0: reg 10: [mem 0xf0000000-0xf03fffff 64bit] [ 0.303684] pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref] [ 0.303688] pci 0000:00:02.0: reg 20: [io 0x5000-0x503f] [ 0.303738] pci 0000:00:16.0: [8086:1c3a] type 0 class 0x000780 [ 0.303760] pci 0000:00:16.0: reg 10: [mem 0xf2625000-0xf262500f 64bit] [ 0.303834] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold [ 0.303866] pci 0000:00:19.0: [8086:1502] type 0 class 0x000200 [ 0.303883] pci 0000:00:19.0: reg 10: [mem 0xf2600000-0xf261ffff] [ 0.303891] pci 0000:00:19.0: reg 14: [mem 0xf262b000-0xf262bfff] [ 0.303900] pci 0000:00:19.0: reg 18: [io 0x5080-0x509f] [ 0.303959] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold [ 0.303985] pci 0000:00:1a.0: [8086:1c2d] type 0 class 0x000c03 [ 0.304005] pci 0000:00:1a.0: reg 10: [mem 0xf262a000-0xf262a3ff] [ 0.304092] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold [ 0.304119] pci 0000:00:1b.0: [8086:1c20] type 0 class 0x000403 [ 0.304133] pci 0000:00:1b.0: reg 10: [mem 0xf2620000-0xf2623fff 64bit] [ 0.304203] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold [ 0.304227] pci 0000:00:1c.0: [8086:1c10] type 1 class 0x000604 [ 0.304303] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 0.304329] pci 0000:00:1c.1: [8086:1c12] type 1 class 0x000604 [ 0.304404] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold [ 0.304432] pci 0000:00:1c.3: [8086:1c16] type 1 class 0x000604 [ 0.304507] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold [ 0.304533] pci 0000:00:1c.4: [8086:1c18] type 1 class 0x000604 [ 0.304608] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold [ 0.304635] pci 0000:00:1c.6: [8086:1c1c] type 1 class 0x000604 [ 0.304710] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold [ 0.304741] pci 0000:00:1d.0: [8086:1c26] type 0 class 0x000c03 [ 0.304761] pci 0000:00:1d.0: reg 10: [mem 0xf2629000-0xf26293ff] [ 0.304847] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold [ 0.304876] pci 0000:00:1f.0: [8086:1c4f] type 0 class 0x000601 [ 0.304998] pci 0000:00:1f.2: [8086:1c03] type 0 class 0x000106 [ 0.305015] pci 0000:00:1f.2: reg 10: [io 0x50a8-0x50af] [ 0.305023] pci 0000:00:1f.2: reg 14: [io 0x50b4-0x50b7] [ 0.305030] pci 0000:00:1f.2: reg 18: [io 0x50a0-0x50a7] [ 0.305038] pci 0000:00:1f.2: reg 1c: [io 0x50b0-0x50b3] [ 0.305045] pci 0000:00:1f.2: reg 20: [io 0x5060-0x507f] [ 0.305053] pci 0000:00:1f.2: reg 24: [mem 0xf2628000-0xf26287ff] [ 0.305095] pci 0000:00:1f.2: PME# supported from D3hot [ 0.305114] pci 0000:00:1f.3: [8086:1c22] type 0 class 0x000c05 [ 0.305129] pci 0000:00:1f.3: reg 10: [mem 0xf2624000-0xf26240ff 64bit] [ 0.305149] pci 0000:00:1f.3: reg 20: [io 0xefa0-0xefbf] [ 0.305216] pci 0000:00:1c.0: PCI bridge to [bus 02-02] [ 0.305361] pci 0000:03:00.0: [8086:4238] type 0 class 0x000280 [ 0.305405] pci 0000:03:00.0: reg 10: [mem 0xf2500000-0xf2501fff 64bit] [ 0.305620] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold [ 0.312169] pci 0000:00:1c.1: PCI bridge to [bus 03-03] [ 0.312264] pci 0000:00:1c.1: bridge window [mem 0xf2500000-0xf25fffff] [ 0.312312] pci 0000:00:1c.3: PCI bridge to [bus 05-0c] [ 0.312371] pci 0000:00:1c.3: bridge window [io 0x4000-0x4fff] [ 0.312375] pci 0000:00:1c.3: bridge window [mem 0xf1d00000-0xf24fffff] [ 0.312381] pci 0000:00:1c.3: bridge window [mem 0xf0400000-0xf0bfffff 64bit pref] [ 0.312495] pci 0000:0d:00.0: [1180:e823] type 0 class 0x000880 [ 0.312513] pci 0000:0d:00.0: MMC controller base frequency changed to 50Mhz. [ 0.312795] pci 0000:0d:00.0: reg 10: [mem 0xf1500000-0xf15000ff] [ 0.312988] pci 0000:0d:00.0: supports D1 D2 [ 0.312989] pci 0000:0d:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.320232] pci 0000:00:1c.4: PCI bridge to [bus 0d-0d] [ 0.320292] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff] [ 0.320296] pci 0000:00:1c.4: bridge window [mem 0xf1500000-0xf1cfffff] [ 0.320302] pci 0000:00:1c.4: bridge window [mem 0xf0c00000-0xf13fffff 64bit pref] [ 0.320372] pci 0000:0e:00.0: [1033:0194] type 0 class 0x000c03 [ 0.320398] pci 0000:0e:00.0: reg 10: [mem 0xf1400000-0xf1401fff 64bit] [ 0.320528] pci 0000:0e:00.0: PME# supported from D0 D3hot D3cold [ 0.328118] pci 0000:00:1c.6: PCI bridge to [bus 0e-0e] [ 0.328216] pci 0000:00:1c.6: bridge window [mem 0xf1400000-0xf14fffff] [ 0.328245] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] [ 0.328369] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT] [ 0.328403] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP2._PRT] [ 0.328435] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP4._PRT] [ 0.328470] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP5._PRT] [ 0.328506] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP7._PRT] [ 0.328655] pci0000:00: Requesting ACPI _OSC control (0x1d) [ 0.328904] pci0000:00: ACPI _OSC request failed (AE_SUPPORT), returned control mask: 0x0d [ 0.328977] ACPI _OSC control for PCIe not granted, disabling ASPM [ 0.331692] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11) [ 0.332201] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11) [ 0.332707] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 *7 9 10 11) [ 0.333208] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 *10 11) [ 0.333711] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 *10 11) [ 0.334203] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled. [ 0.334792] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 *11) [ 0.335291] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *7 9 10 11) [ 0.335818] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none [ 0.335897] vgaarb: loaded [ 0.335950] vgaarb: bridge control possible 0000:00:02.0 [ 0.336039] PCI: Using ACPI for IRQ routing [ 0.337551] PCI: pci_cache_line_size set to 64 bytes [ 0.338073] reserve RAM buffer: 000000000009d800 - 000000000009ffff [ 0.338075] reserve RAM buffer: 00000000da99f000 - 00000000dbffffff [ 0.338078] reserve RAM buffer: 00000000db000000 - 00000000dbffffff [ 0.338079] reserve RAM buffer: 000000021e600000 - 000000021fffffff [ 0.338179] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 [ 0.338585] hpet0: 8 comparators, 64-bit 14.318180 MHz counter [ 0.340653] Switching to clocksource hpet [ 0.342195] pnp: PnP ACPI init [ 0.342262] ACPI: bus type pnp registered [ 0.342702] pnp 00:00: [mem 0x00000000-0x0009ffff] [ 0.342704] pnp 00:00: [mem 0x000c0000-0x000c3fff] [ 0.342705] pnp 00:00: [mem 0x000c4000-0x000c7fff] [ 0.342707] pnp 00:00: [mem 0x000c8000-0x000cbfff] [ 0.342708] pnp 00:00: [mem 0x000cc000-0x000cffff] [ 0.342709] pnp 00:00: [mem 0x000d0000-0x000d3fff] [ 0.342711] pnp 00:00: [mem 0x000d4000-0x000d7fff] [ 0.342712] pnp 00:00: [mem 0x000d8000-0x000dbfff] [ 0.342714] pnp 00:00: [mem 0x000dc000-0x000dffff] [ 0.342715] pnp 00:00: [mem 0x000e0000-0x000e3fff] [ 0.342716] pnp 00:00: [mem 0x000e4000-0x000e7fff] [ 0.342718] pnp 00:00: [mem 0x000e8000-0x000ebfff] [ 0.342719] pnp 00:00: [mem 0x000ec000-0x000effff] [ 0.342720] pnp 00:00: [mem 0x000f0000-0x000fffff] [ 0.342722] pnp 00:00: [mem 0x00100000-0xdf9fffff] [ 0.342723] pnp 00:00: [mem 0xfec00000-0xfed3ffff] [ 0.342725] pnp 00:00: [mem 0xfed4c000-0xffffffff] [ 0.342768] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved [ 0.342830] system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved [ 0.342891] system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved [ 0.342953] system 00:00: [mem 0x000c8000-0x000cbfff] has been reserved [ 0.343013] system 00:00: [mem 0x000cc000-0x000cffff] has been reserved [ 0.343080] system 00:00: [mem 0x000d0000-0x000d3fff] has been reserved [ 0.343141] system 00:00: [mem 0x000d4000-0x000d7fff] has been reserved [ 0.343202] system 00:00: [mem 0x000d8000-0x000dbfff] has been reserved [ 0.343263] system 00:00: [mem 0x000dc000-0x000dffff] has been reserved [ 0.343324] system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved [ 0.343385] system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved [ 0.343446] system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved [ 0.343507] system 00:00: [mem 0x000ec000-0x000effff] could not be reserved [ 0.343568] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved [ 0.343629] system 00:00: [mem 0x00100000-0xdf9fffff] could not be reserved [ 0.343690] system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved [ 0.343755] system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved [ 0.343817] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active) [ 0.343834] pnp 00:01: [bus 00-fe] [ 0.343836] pnp 00:01: [io 0x0cf8-0x0cff] [ 0.343837] pnp 00:01: [io 0x0000-0x0cf7 window] [ 0.343839] pnp 00:01: [io 0x0d00-0xffff window] [ 0.343840] pnp 00:01: [mem 0x000a0000-0x000bffff window] [ 0.343842] pnp 00:01: [mem 0x000c0000-0x000c3fff window] [ 0.343843] pnp 00:01: [mem 0x000c4000-0x000c7fff window] [ 0.343846] pnp 00:01: [mem 0x000c8000-0x000cbfff window] [ 0.343847] pnp 00:01: [mem 0x000cc000-0x000cffff window] [ 0.343849] pnp 00:01: [mem 0x000d0000-0x000d3fff window] [ 0.343850] pnp 00:01: [mem 0x000d4000-0x000d7fff window] [ 0.343852] pnp 00:01: [mem 0x000d8000-0x000dbfff window] [ 0.343853] pnp 00:01: [mem 0x000dc000-0x000dffff window] [ 0.343855] pnp 00:01: [mem 0x000e0000-0x000e3fff window] [ 0.343856] pnp 00:01: [mem 0x000e4000-0x000e7fff window] [ 0.343858] pnp 00:01: [mem 0x000e8000-0x000ebfff window] [ 0.343859] pnp 00:01: [mem 0x000ec000-0x000effff window] [ 0.343861] pnp 00:01: [mem 0xdfa00000-0xfebfffff window] [ 0.343862] pnp 00:01: [mem 0xfed40000-0xfed4bfff window] [ 0.343896] pnp 00:01: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active) [ 0.343952] pnp 00:02: [io 0x0010-0x001f] [ 0.343954] pnp 00:02: [io 0x0090-0x009f] [ 0.343955] pnp 00:02: [io 0x0024-0x0025] [ 0.343957] pnp 00:02: [io 0x0028-0x0029] [ 0.343958] pnp 00:02: [io 0x002c-0x002d] [ 0.343959] pnp 00:02: [io 0x0030-0x0031] [ 0.343960] pnp 00:02: [io 0x0034-0x0035] [ 0.343962] pnp 00:02: [io 0x0038-0x0039] [ 0.343963] pnp 00:02: [io 0x003c-0x003d] [ 0.343964] pnp 00:02: [io 0x00a4-0x00a5] [ 0.343966] pnp 00:02: [io 0x00a8-0x00a9] [ 0.343967] pnp 00:02: [io 0x00ac-0x00ad] [ 0.343968] pnp 00:02: [io 0x00b0-0x00b5] [ 0.343970] pnp 00:02: [io 0x00b8-0x00b9] [ 0.343971] pnp 00:02: [io 0x00bc-0x00bd] [ 0.343972] pnp 00:02: [io 0x0050-0x0053] [ 0.343974] pnp 00:02: [io 0x0072-0x0077] [ 0.343975] pnp 00:02: [io 0x0400-0x047f] [ 0.343977] pnp 00:02: [io 0x0500-0x057f] [ 0.343978] pnp 00:02: [io 0x0800-0x080f] [ 0.343979] pnp 00:02: [io 0x15e0-0x15ef] [ 0.343981] pnp 00:02: [io 0x1600-0x167f] [ 0.343982] pnp 00:02: [mem 0xf8000000-0xfbffffff] [ 0.343984] pnp 00:02: [mem 0x00000000-0x00000fff] [ 0.343985] pnp 00:02: [mem 0xfed1c000-0xfed1ffff] [ 0.343986] pnp 00:02: [mem 0xfed10000-0xfed13fff] [ 0.343988] pnp 00:02: [mem 0xfed18000-0xfed18fff] [ 0.343989] pnp 00:02: [mem 0xfed19000-0xfed19fff] [ 0.343991] pnp 00:02: [mem 0xfed45000-0xfed4bfff] [ 0.344041] system 00:02: [io 0x0400-0x047f] has been reserved [ 0.344111] system 00:02: [io 0x0500-0x057f] has been reserved [ 0.344171] system 00:02: [io 0x0800-0x080f] has been reserved [ 0.344230] system 00:02: [io 0x15e0-0x15ef] has been reserved [ 0.344290] system 00:02: [io 0x1600-0x167f] has been reserved [ 0.344351] system 00:02: [mem 0xf8000000-0xfbffffff] has been reserved [ 0.344416] system 00:02: [mem 0x00000000-0x00000fff] could not be reserved [ 0.344477] system 00:02: [mem 0xfed1c000-0xfed1ffff] has been reserved [ 0.344538] system 00:02: [mem 0xfed10000-0xfed13fff] has been reserved [ 0.344599] system 00:02: [mem 0xfed18000-0xfed18fff] has been reserved [ 0.344659] system 00:02: [mem 0xfed19000-0xfed19fff] has been reserved [ 0.344727] system 00:02: [mem 0xfed45000-0xfed4bfff] has been reserved [ 0.344789] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.344831] pnp 00:03: [mem 0xfed00000-0xfed003ff] [ 0.344856] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active) [ 0.344864] pnp 00:04: [io 0x0000-0x000f] [ 0.344865] pnp 00:04: [io 0x0080-0x008f] [ 0.344867] pnp 00:04: [io 0x00c0-0x00df] [ 0.344868] pnp 00:04: [dma 4] [ 0.344890] pnp 00:04: Plug and Play ACPI device, IDs PNP0200 (active) [ 0.344897] pnp 00:05: [io 0x0061] [ 0.344919] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active) [ 0.344927] pnp 00:06: [io 0x00f0] [ 0.344935] pnp 00:06: [irq 13] [ 0.344958] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active) [ 0.344965] pnp 00:07: [io 0x0070-0x0071] [ 0.344971] pnp 00:07: [irq 8] [ 0.344995] pnp 00:07: Plug and Play ACPI device, IDs PNP0b00 (active) [ 0.345003] pnp 00:08: [io 0x0060] [ 0.345004] pnp 00:08: [io 0x0064] [ 0.345009] pnp 00:08: [irq 1] [ 0.345032] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active) [ 0.345043] pnp 00:09: [irq 12] [ 0.345068] pnp 00:09: Plug and Play ACPI device, IDs LEN0020 PNP0f13 (active) [ 0.345099] pnp 00:0a: [mem 0xfed40000-0xfed44fff] [ 0.345129] pnp 00:0a: Plug and Play ACPI device, IDs SMO1200 PNP0c31 (active) [ 0.345591] pnp: PnP ACPI: found 11 devices [ 0.345648] ACPI: ACPI bus type pnp unregistered [ 0.352224] PCI: max bus depth: 1 pci_try_num: 2 [ 0.352262] pci 0000:00:1c.0: PCI bridge to [bus 02-02] [ 0.352330] pci 0000:00:1c.1: PCI bridge to [bus 03-03] [ 0.352391] pci 0000:00:1c.1: bridge window [mem 0xf2500000-0xf25fffff] [ 0.352457] pci 0000:00:1c.3: PCI bridge to [bus 05-0c] [ 0.352516] pci 0000:00:1c.3: bridge window [io 0x4000-0x4fff] [ 0.352578] pci 0000:00:1c.3: bridge window [mem 0xf1d00000-0xf24fffff] [ 0.352640] pci 0000:00:1c.3: bridge window [mem 0xf0400000-0xf0bfffff 64bit pref] [ 0.352725] pci 0000:00:1c.4: PCI bridge to [bus 0d-0d] [ 0.352784] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff] [ 0.352846] pci 0000:00:1c.4: bridge window [mem 0xf1500000-0xf1cfffff] [ 0.352909] pci 0000:00:1c.4: bridge window [mem 0xf0c00000-0xf13fffff 64bit pref] [ 0.352985] pci 0000:00:1c.6: PCI bridge to [bus 0e-0e] [ 0.353046] pci 0000:00:1c.6: bridge window [mem 0xf1400000-0xf14fffff] [ 0.353154] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] [ 0.353156] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] [ 0.353157] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] [ 0.353159] pci_bus 0000:00: resource 7 [mem 0xdfa00000-0xfebfffff] [ 0.353160] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed4bfff] [ 0.353162] pci_bus 0000:03: resource 1 [mem 0xf2500000-0xf25fffff] [ 0.353164] pci_bus 0000:05: resource 0 [io 0x4000-0x4fff] [ 0.353165] pci_bus 0000:05: resource 1 [mem 0xf1d00000-0xf24fffff] [ 0.353167] pci_bus 0000:05: resource 2 [mem 0xf0400000-0xf0bfffff 64bit pref] [ 0.353168] pci_bus 0000:0d: resource 0 [io 0x3000-0x3fff] [ 0.353170] pci_bus 0000:0d: resource 1 [mem 0xf1500000-0xf1cfffff] [ 0.353171] pci_bus 0000:0d: resource 2 [mem 0xf0c00000-0xf13fffff 64bit pref] [ 0.353173] pci_bus 0000:0e: resource 1 [mem 0xf1400000-0xf14fffff] [ 0.353235] NET: Registered protocol family 2 [ 0.353496] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes) [ 0.355147] TCP established hash table entries: 524288 (order: 11, 8388608 bytes) [ 0.356309] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) [ 0.356487] TCP: Hash tables configured (established 524288 bind 65536) [ 0.356548] TCP reno registered [ 0.356615] UDP hash table entries: 4096 (order: 5, 131072 bytes) [ 0.358034] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes) [ 0.358210] NET: Registered protocol family 1 [ 0.358277] pci 0000:00:02.0: Boot video device [ 0.358434] PCI: CLS 64 bytes, default 64 [ 0.358471] Unpacking initramfs... [ 0.576672] Freeing initrd memory: 12168k freed [ 0.578489] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 0.578552] Placing 64MB software IO TLB between ffff8800d6995000 - ffff8800da995000 [ 0.578625] software IO TLB at phys 0xd6995000 - 0xda995000 [ 0.579174] audit: initializing netlink socket (disabled) [ 0.579247] type=2000 audit(1329268298.416:1): initialized [ 0.590637] HugeTLB registered 2 MB page size, pre-allocated 0 pages [ 0.591380] VFS: Disk quotas dquot_6.5.2 [ 0.591459] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.591581] msgmni has been set to 15774 [ 0.591765] alg: No test for stdrng (krng) [ 0.591847] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) [ 0.591920] io scheduler noop registered [ 0.591976] io scheduler deadline registered [ 0.592049] io scheduler cfq registered (default) [ 0.592468] intel_idle: MWAIT substates: 0x21120 [ 0.592469] intel_idle: v0.4 model 0x2A [ 0.592471] intel_idle: lapic_timer_reliable_states 0xffffffff [ 0.592504] GHES: HEST is not enabled! [ 0.592599] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 0.593180] Linux agpgart interface v0.103 [ 0.593299] agpgart-intel 0000:00:00.0: Intel Sandybridge Chipset [ 0.593425] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable [ 0.594510] agpgart-intel 0000:00:00.0: detected 65536K stolen memory [ 0.594670] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xe0000000 [ 0.594828] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 [ 0.598665] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 0.598726] serio: i8042 AUX port at 0x60,0x64 irq 12 [ 0.598891] mousedev: PS/2 mouse device common for all mice [ 0.598982] rtc_cmos 00:07: RTC can wake from S4 [ 0.599159] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0 [ 0.599243] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs [ 0.599387] cpuidle: using governor ladder [ 0.599538] cpuidle: using governor menu [ 0.599756] TCP cubic registered [ 0.599906] NET: Registered protocol family 10 [ 0.600304] Mobile IPv6 [ 0.600370] NET: Registered protocol family 17 [ 0.600429] Registering the dns_resolver key type [ 0.600715] PM: Hibernation image not present or could not be loaded. [ 0.600729] registered taskstats version 1 [ 0.601471] rtc_cmos 00:07: setting system clock to 2012-02-15 01:11:38 UTC (1329268298) [ 0.601602] Initializing network drop monitor service [ 0.602453] Freeing unused kernel memory: 560k freed [ 0.602586] Write protecting the kernel read-only data: 6144k [ 0.602783] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0 [ 0.604753] Freeing unused kernel memory: 676k freed [ 0.606850] Freeing unused kernel memory: 712k freed [ 0.654896] udevd[61]: starting version 175 [ 0.664655] usbcore: registered new interface driver usbfs [ 0.664745] usbcore: registered new interface driver hub [ 0.665984] usbcore: registered new device driver usb [ 0.666462] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 0.666549] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0 [ 0.666614] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0 [ 0.666702] ehci_hcd 0000:00:1a.0: setting latency timer to 64 [ 0.666706] ehci_hcd 0000:00:1a.0: EHCI Host Controller [ 0.666790] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1 [ 0.666902] ehci_hcd 0000:00:1a.0: debug port 2 [ 0.668979] e1000e: Intel(R) PRO/1000 Network Driver - 1.5.1-k [ 0.669081] e1000e: Copyright(c) 1999 - 2011 Intel Corporation. [ 0.670828] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported [ 0.670859] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xf262a000 [ 0.672577] xhci_hcd 0000:0e:00.0: xHCI Host Controller [ 0.672647] xhci_hcd 0000:0e:00.0: new USB bus registered, assigned bus number 2 [ 0.672921] xhci_hcd 0000:0e:00.0: irq 18, io mem 0xf1400000 [ 0.673059] xhci_hcd 0000:0e:00.0: irq 42 for MSI/MSI-X [ 0.673067] xhci_hcd 0000:0e:00.0: irq 43 for MSI/MSI-X [ 0.673075] xhci_hcd 0000:0e:00.0: irq 44 for MSI/MSI-X [ 0.673081] xhci_hcd 0000:0e:00.0: irq 45 for MSI/MSI-X [ 0.673088] xhci_hcd 0000:0e:00.0: irq 46 for MSI/MSI-X [ 0.673220] sdhci: Secure Digital Host Controller Interface driver [ 0.673240] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002 [ 0.673243] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.673245] usb usb2: Product: xHCI Host Controller [ 0.673246] usb usb2: Manufacturer: Linux 3.3.0-rc1+ xhci_hcd [ 0.673247] usb usb2: SerialNumber: 0000:0e:00.0 [ 0.673596] sdhci: Copyright(c) Pierre Ossman [ 0.673926] sdhci-pci 0000:0d:00.0: SDHCI controller found [1180:e823] (rev 4) [ 0.674169] mmc0: no vmmc regulator found [ 0.674460] Registered led device: mmc0:: [ 0.675236] xHCI xhci_add_endpoint called for root hub [ 0.675238] xHCI xhci_check_bandwidth called for root hub [ 0.675274] hub 2-0:1.0: USB hub found [ 0.675340] hub 2-0:1.0: 2 ports detected [ 0.675468] xhci_hcd 0000:0e:00.0: xHCI Host Controller [ 0.675531] xhci_hcd 0000:0e:00.0: new USB bus registered, assigned bus number 3 [ 0.675706] mmc0: SDHCI controller on PCI [0000:0d:00.0] using DMA [ 0.677266] usb usb3: New USB device found, idVendor=1d6b, idProduct=0003 [ 0.677539] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.677615] usb usb3: Product: xHCI Host Controller [ 0.677674] usb usb3: Manufacturer: Linux 3.3.0-rc1+ xhci_hcd [ 0.677735] usb usb3: SerialNumber: 0000:0e:00.0 [ 0.679581] xHCI xhci_add_endpoint called for root hub [ 0.679584] xHCI xhci_check_bandwidth called for root hub [ 0.679627] hub 3-0:1.0: USB hub found [ 0.679695] hub 3-0:1.0: 2 ports detected [ 0.679890] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00 [ 0.679971] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 [ 0.680167] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.680245] usb usb1: Product: EHCI Host Controller [ 0.680305] usb usb1: Manufacturer: Linux 3.3.0-rc1+ ehci_hcd [ 0.680367] usb usb1: SerialNumber: 0000:00:1a.0 [ 0.680558] hub 1-0:1.0: USB hub found [ 0.680620] hub 1-0:1.0: 3 ports detected [ 0.680768] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0 [ 0.680833] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0 [ 0.680941] ehci_hcd 0000:00:1d.0: setting latency timer to 64 [ 0.680944] ehci_hcd 0000:00:1d.0: EHCI Host Controller [ 0.681014] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4 [ 0.681122] ehci_hcd 0000:00:1d.0: debug port 2 [ 0.685076] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported [ 0.685133] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xf2629000 [ 0.686024] thermal LNXTHERM:00: registered as thermal_zone0 [ 0.686087] ACPI: Thermal Zone [THM0] (64 C) [ 0.686902] SCSI subsystem initialized [ 0.690060] libata version 3.00 loaded. [ 0.695855] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00 [ 0.695947] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002 [ 0.696014] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.696091] usb usb4: Product: EHCI Host Controller [ 0.696153] usb usb4: Manufacturer: Linux 3.3.0-rc1+ ehci_hcd [ 0.696217] usb usb4: SerialNumber: 0000:00:1d.0 [ 0.696430] hub 4-0:1.0: USB hub found [ 0.696496] hub 4-0:1.0: 3 ports detected [ 0.696781] e1000e 0000:00:19.0: setting latency timer to 64 [ 0.696907] e1000e 0000:00:19.0: irq 47 for MSI/MSI-X [ 0.887334] e1000e 0000:00:19.0: eth0: (PCI Express:2.5GT/s:Width x1) f0:de:f1:9f:be:94 [ 0.887422] e1000e 0000:00:19.0: eth0: Intel(R) PRO/1000 Network Connection [ 0.887533] e1000e 0000:00:19.0: eth0: MAC: 10, PHY: 11, PBA No: 1000FF-0FF [ 0.887643] ahci 0000:00:1f.2: version 3.0 [ 0.887722] ahci 0000:00:1f.2: irq 48 for MSI/MSI-X [ 0.887811] ahci: SSS flag set, parallel bus scan disabled [ 0.903458] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x11 impl SATA mode [ 0.903535] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pio slum part ems sxs apst [ 0.903614] ahci 0000:00:1f.2: setting latency timer to 64 [ 0.911936] scsi0 : ahci [ 0.912134] scsi1 : ahci [ 0.912271] scsi2 : ahci [ 0.912408] scsi3 : ahci [ 0.912541] scsi4 : ahci [ 0.912672] scsi5 : ahci [ 0.913311] ata1: SATA max UDMA/133 abar m2048 at 0xf2628000 port 0xf2628100 irq 48 [ 0.913383] ata2: DUMMY [ 0.913437] ata3: DUMMY [ 0.913490] ata4: DUMMY [ 0.913545] ata5: SATA max UDMA/133 abar m2048 at 0xf2628000 port 0xf2628300 irq 48 [ 0.913616] ata6: DUMMY [ 0.995215] usb 1-1: new high-speed USB device number 2 using ehci_hcd [ 1.127770] usb 1-1: New USB device found, idVendor=8087, idProduct=0024 [ 1.127832] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 1.128272] hub 1-1:1.0: USB hub found [ 1.128684] hub 1-1:1.0: 6 ports detected [ 1.242604] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) [ 1.242618] usb 4-1: new high-speed USB device number 2 using ehci_hcd [ 1.243367] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded [ 1.243371] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out [ 1.243443] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out [ 1.243914] ata1.00: ATA-8: INTEL SSDSA2BW160G3L, 4PC1LE04, max UDMA/133 [ 1.243983] ata1.00: 312581808 sectors, multi 16: LBA48 NCQ (depth 31/32) [ 1.244691] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded [ 1.244695] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out [ 1.244768] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out [ 1.245203] ata1.00: configured for UDMA/133 [ 1.245395] scsi 0:0:0:0: Direct-Access ATA INTEL SSDSA2BW16 4PC1 PQ: 0 ANSI: 5 [ 1.374753] usb 4-1: New USB device found, idVendor=8087, idProduct=0024 [ 1.374815] usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 1.375136] hub 4-1:1.0: USB hub found [ 1.375379] hub 4-1:1.0: 8 ports detected [ 1.561816] ata5: SATA link down (SStatus 0 SControl 300) [ 1.565494] sd 0:0:0:0: [sda] 312581808 512-byte logical blocks: (160 GB/149 GiB) [ 1.565624] sd 0:0:0:0: [sda] Write Protect is off [ 1.565682] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 1.565718] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 1.566926] sda: unknown partition table [ 1.567168] sd 0:0:0:0: [sda] Attached SCSI disk [ 1.573702] Refined TSC clocksource calibration: 2790.934 MHz. [ 1.573806] Switching to clocksource tsc [ 1.603018] device-mapper: uevent: version 1.0.3 [ 1.603147] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel at redhat.com [ 1.645716] usb 4-1.2: new high-speed USB device number 3 using ehci_hcd [ 1.739276] usb 4-1.2: New USB device found, idVendor=05e3, idProduct=0610 [ 1.739286] usb 4-1.2: New USB device strings: Mfr=0, Product=1, SerialNumber=0 [ 1.739292] usb 4-1.2: Product: USB2.0 Hub [ 1.739772] hub 4-1.2:1.0: USB hub found [ 1.740174] hub 4-1.2:1.0: 4 ports detected [ 2.013143] usb 4-1.2.3: new high-speed USB device number 4 using ehci_hcd [ 2.108433] usb 4-1.2.3: New USB device found, idVendor=054c, idProduct=02a5 [ 2.108443] usb 4-1.2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 2.108449] usb 4-1.2.3: Product: Storage Media [ 2.108461] usb 4-1.2.3: Manufacturer: Sony [ 2.108462] usb 4-1.2.3: SerialNumber: AC2006081601778 [ 2.110395] usbcore: registered new interface driver uas [ 2.111045] Initializing USB Mass Storage driver... [ 2.111118] scsi6 : usb-storage 4-1.2.3:1.0 [ 2.111205] usbcore: registered new interface driver usb-storage [ 2.111207] USB Mass Storage support registered. [ 2.180726] usb 4-1.2.4: new low-speed USB device number 5 using ehci_hcd [ 2.281537] usb 4-1.2.4: New USB device found, idVendor=17ef, idProduct=6009 [ 2.281547] usb 4-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.281553] usb 4-1.2.4: Product: ThinkPad USB Keyboard with TrackPoint [ 2.281565] usb 4-1.2.4: Manufacturer: Lite-On Technology Corp. [ 2.287835] input: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.2/4-1.2.4/4-1.2.4:1.0/input/input1 [ 2.287892] generic-usb 0003:17EF:6009.0001: input,hidraw0: USB HID v1.10 Keyboard [Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint] on usb-0000:00:1d.0-1.2.4/input0 [ 2.296892] input: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.2/4-1.2.4/4-1.2.4:1.1/input/input2 [ 2.297129] generic-usb 0003:17EF:6009.0002: input,hiddev0,hidraw1: USB HID v1.10 Mouse [Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint] on usb-0000:00:1d.0-1.2.4/input1 [ 2.297154] usbcore: registered new interface driver usbhid [ 2.297156] usbhid: USB HID core driver [ 3.107363] scsi 6:0:0:0: Direct-Access Sony Storage Media 0100 PQ: 0 ANSI: 0 CCS [ 3.109690] sd 6:0:0:0: [sdb] 2030592 512-byte logical blocks: (1.03 GB/991 MiB) [ 3.110556] sd 6:0:0:0: [sdb] Write Protect is off [ 3.110559] sd 6:0:0:0: [sdb] Mode Sense: 43 00 00 00 [ 3.111553] sd 6:0:0:0: [sdb] No Caching mode page present [ 3.111555] sd 6:0:0:0: [sdb] Assuming drive cache: write through [ 3.115416] sd 6:0:0:0: [sdb] No Caching mode page present [ 3.115418] sd 6:0:0:0: [sdb] Assuming drive cache: write through [ 3.183978] sdb: sdb1 [ 3.186745] sd 6:0:0:0: [sdb] No Caching mode page present [ 3.186747] sd 6:0:0:0: [sdb] Assuming drive cache: write through [ 3.186749] sd 6:0:0:0: [sdb] Attached SCSI removable disk [ 47.724700] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni) [ 47.727384] alg: No test for __cbc-aes-aesni (cryptd(__driver-cbc-aes-aesni)) [ 47.921305] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null) [ 48.145079] udevd[416]: starting version 175 [ 48.202127] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input3 [ 48.202365] ACPI: Lid Switch [LID] [ 48.202489] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input4 [ 48.202562] ACPI: Sleep Button [SLPB] [ 48.203735] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5 [ 48.203814] ACPI: Power Button [PWRF] [ 48.215342] wmi: Mapper loaded [ 48.227721] [drm] Initialized drm 1.1.0 20060810 [ 48.230096] iTCO_vendor_support: vendor-support=0 [ 48.230184] Non-volatile memory driver v1.3 [ 48.237292] ACPI: Battery Slot [BAT0] (battery present) [ 48.237815] ACPI: AC Adapter [AC] (on-line) [ 48.238636] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07 [ 48.239167] iTCO_wdt: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460) [ 48.239721] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0) [ 48.240681] tpm_tis 00:0a: 1.2 TPM (device-id 0x0, rev-id 78) [ 48.240710] thinkpad_acpi: ThinkPad ACPI Extras v0.24 [ 48.240711] thinkpad_acpi: http://ibm-acpi.sf.net/ [ 48.240713] thinkpad_acpi: ThinkPad BIOS 8DET54WW (1.24 ), EC unknown [ 48.240715] thinkpad_acpi: Lenovo ThinkPad X220, model 4286CTO [ 48.242527] cfg80211: Calling CRDA to update world regulatory domain [ 48.244232] thinkpad_acpi: detected a 8-level brightness capable ThinkPad [ 48.244433] thinkpad_acpi: radio switch found; radios are disabled [ 48.244634] thinkpad_acpi: possible tablet mode switch found; ThinkPad in laptop mode [ 48.246774] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is blocked [ 48.247252] Registered led device: tpacpi::thinklight [ 48.247295] Registered led device: tpacpi::power [ 48.247318] Registered led device: tpacpi::standby [ 48.247341] Registered led device: tpacpi::thinkvantage [ 48.247427] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one [ 48.247670] thinkpad_acpi: Console audio control enabled, mode: monitor (read only) [ 48.248986] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input6 [ 48.251689] i915 0000:00:02.0: power state changed by ACPI to D0 [ 48.251755] i915 0000:00:02.0: power state changed by ACPI to D0 [ 48.251820] i915 0000:00:02.0: setting latency timer to 64 [ 48.283044] mtrr: no more MTRRs available [ 48.283101] [drm] MTRR allocation failed. Graphics performance may suffer. [ 48.283622] [drm:intel_opregion_setup], graphic opregion physical addr: 0xdaef6018 [ 48.283627] Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree: [ 48.283630] Copyright(c) 2003-2011 Intel Corporation [ 48.283704] iwlwifi 0000:03:00.0: pci_resource_len = 0x00002000 [ 48.283707] iwlwifi 0000:03:00.0: pci_resource_base = ffffc900057f4000 [ 48.283709] iwlwifi 0000:03:00.0: HW Revision ID = 0x3E [ 48.283807] iwlwifi 0000:03:00.0: irq 49 for MSI/MSI-X [ 48.283890] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG disabled [ 48.283892] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS disabled [ 48.283894] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled [ 48.283896] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TESTMODE disabled [ 48.283898] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_P2P disabled [ 48.283904] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Ultimate-N 6300 AGN, REV=0x74 [ 48.283960] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S [ 48.288224] [drm:intel_opregion_setup], Public ACPI methods supported [ 48.288232] [drm:intel_opregion_setup], SWSCI supported [ 48.288234] [drm:intel_opregion_setup], ASLE supported [ 48.288357] i915 0000:00:02.0: irq 50 for MSI/MSI-X [ 48.288370] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010). [ 48.288943] [drm] Driver supports precise vblank timestamp query. [ 48.289506] [drm:intel_detect_pch], Found CougarPoint PCH [ 48.289509] [drm:init_vbt_defaults], Set default to SSC at 100MHz [ 48.289511] [drm:intel_parse_bios], Using VBT from OpRegion: $VBT SANDYBRIDGE-M d [ 48.289514] [drm:parse_general_features], BDB_GENERAL_FEATURES int_tv_support 0 int_crt_support 1 lvds_use_ssc 0 lvds_ssc_freq 120 display_clock_mode 0 [ 48.289518] [drm:parse_general_definitions], crt_ddc_bus_pin: 2 [ 48.289524] [drm:parse_lfp_panel_data], Found panel mode in BIOS VBT tables: [ 48.289526] [drm:drm_mode_debug_printmodeline], Modeline 0:"1366x768" 0 75200 1366 1414 1478 1582 768 772 779 792 0x8 0xa [ 48.289532] [drm:parse_sdvo_panel_data], Found SDVO panel mode in BIOS VBT tables: [ 48.289534] [drm:drm_mode_debug_printmodeline], Modeline 0:"1600x1200" 0 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x8 0xa [ 48.289539] [drm:parse_sdvo_device_mapping], No SDVO device info is found in VBT [ 48.289547] [drm:intel_dsm_pci_probe], no _DSM method for intel device [ 48.289565] [drm:intel_modeset_init], 2 display pipes available. [ 48.289606] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem [ 48.294726] iwlwifi 0000:03:00.0: device EEPROM VER=0x43a, CALIB=0x6 [ 48.294793] iwlwifi 0000:03:00.0: Device SKU: 0x1F0 [ 48.294859] iwlwifi 0000:03:00.0: Valid Tx ant: 0x7, Valid Rx ant: 0x7 [ 48.294989] iwlwifi 0000:03:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels [ 48.298813] iwlwifi 0000:03:00.0: RF_KILL bit toggled to disable radio. [ 48.330434] iwlwifi 0000:03:00.0: loaded firmware version 9.221.4.1 build 25532 [ 48.330842] Registered led device: phy0-led [ 48.349218] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs' [ 48.352974] [drm:intel_panel_get_backlight], get backlight PWM = 4648 [ 48.352978] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648 [ 48.352998] [drm:intel_panel_get_backlight], get backlight PWM = 4648 [ 48.353026] [drm:intel_crt_init], pch crt adpa set to 0xf40000 [ 48.414223] [drm:intel_sdvo_read_byte], i2c transfer returned -6 [ 48.414227] [drm:intel_sdvo_init], No SDVO device found on SDVOB [ 48.414323] [drm:intel_dp_i2c_init], i2c_init DPDDC-B [ 48.415135] [drm:intel_dp_i2c_aux_ch], aux_i2c nack [ 48.415342] [drm:intel_dp_i2c_aux_ch], aux_i2c nack [ 48.415452] [drm:intel_dp_i2c_init], i2c_init DPDDC-C [ 48.415957] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 48.415959] [drm:intel_dp_i2c_aux_ch], aux_ch failed -110 [ 48.416465] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 48.416467] [drm:intel_dp_i2c_aux_ch], aux_ch failed -110 [ 48.416511] [drm:intel_dp_i2c_init], i2c_init DPDDC-D [ 48.417017] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 48.417019] [drm:intel_dp_i2c_aux_ch], aux_ch failed -110 [ 48.417525] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 48.417527] [drm:intel_dp_i2c_aux_ch], aux_ch failed -110 [ 48.417549] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0 [ 48.653682] [drm:ironlake_crtc_dpms], crtc 0/0 dpms off [ 48.653696] [drm:i915_get_vblank_timestamp], crtc 0 is disabled [ 48.685979] [drm:intel_update_fbc], [ 48.685981] [drm:intel_update_fbc], no output, disabling [ 48.686175] [drm:ironlake_crtc_dpms], crtc 1/1 dpms off [ 48.686178] [drm:gm45_get_vblank_counter], trying to get vblank count for disabled pipe B [ 48.686180] [drm:i915_get_vblank_timestamp], crtc 1 is disabled [ 48.686182] [drm:gm45_get_vblank_counter], trying to get vblank count for disabled pipe B [ 48.686815] [drm:intel_update_fbc], [ 48.686816] [drm:intel_update_fbc], no output, disabling [ 48.687009] [drm:ironlake_init_pch_refclk], has_panel 1 has_lvds 1 has_pch_edp 0 has_cpu_edp 0 has_ck505 0 [ 48.801380] tpm_tis 00:0a: A TPM error (6) occurred attempting to read a pcr value [ 48.801457] tpm_tis 00:0a: TPM is disabled/deactivated (0x6) [ 48.819408] IBM TrackPoint firmware: 0x0e, buttons: 3/3 [ 48.831955] [drm:init_status_page], render ring hws offset: 0x00000000 [ 48.832237] [drm:init_status_page], gen6 bsd ring hws offset: 0x00022000 [ 48.832571] [drm:init_status_page], blt ring hws offset: 0x00043000 [ 48.832902] [drm:i915_setup_compression], FBC base 0xfc000000, ll base 0x00000000, size 32M [ 48.832935] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0 [ 48.832964] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1] [ 48.832972] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1] probed modes : [ 48.832975] [drm:drm_mode_debug_printmodeline], Modeline 29:"1366x768" 60 75200 1366 1414 1478 1582 768 772 779 792 0x48 0x9 [ 48.832978] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:13:VGA-1] [ 48.832982] [drm:intel_ironlake_crt_detect_hotplug], trigger hotplug detect cycle: adpa=0xf40000 [ 48.839149] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input7 [ 48.845300] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0 [ 48.845305] [drm:intel_crt_detect], CRT not detected via hotplug [ 48.845308] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:13:VGA-1] disconnected [ 48.845312] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:16:HDMI-A-1] [ 49.164370] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:16:HDMI-A-1] disconnected [ 49.164373] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:19:DP-1] [ 49.164884] [drm:intel_dp_detect], DPCD: 110a840101000180 [ 49.165912] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 49.192933] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 49.193962] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 49.220983] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 49.220995] [drm:drm_edid_to_eld], ELD: no CEA Extension found [ 49.221000] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:19:DP-1] probed modes : [ 49.221002] [drm:drm_mode_debug_printmodeline], Modeline 30:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x48 0x5 [ 49.221005] [drm:drm_mode_debug_printmodeline], Modeline 35:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6 [ 49.221008] [drm:drm_mode_debug_printmodeline], Modeline 34:"1600x900" 60 118963 1600 1696 1864 2128 900 901 904 932 0x0 0x6 [ 49.221011] [drm:drm_mode_debug_printmodeline], Modeline 33:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5 [ 49.221014] [drm:drm_mode_debug_printmodeline], Modeline 31:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x9 [ 49.221017] [drm:drm_mode_debug_printmodeline], Modeline 32:"1280x720" 60 74440 1280 1336 1472 1664 720 721 724 746 0x0 0x6 [ 49.221019] [drm:drm_mode_debug_printmodeline], Modeline 38:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa [ 49.221022] [drm:drm_mode_debug_printmodeline], Modeline 36:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5 [ 49.221025] [drm:drm_mode_debug_printmodeline], Modeline 37:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa [ 49.221028] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:HDMI-A-2] [ 49.232582] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:HDMI-A-2] disconnected [ 49.232584] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:24:HDMI-A-3] [ 49.244138] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:24:HDMI-A-3] disconnected [ 49.244140] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:25:DP-2] [ 49.244650] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 49.252719] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 49.260698] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 49.268176] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 49.268191] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:25:DP-2] disconnected [ 49.268203] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:DP-3] [ 49.268719] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 49.276659] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 49.284655] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 49.292125] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 49.292140] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:DP-3] disconnected [ 49.292150] [drm:drm_setup_crtcs], [ 49.292169] [drm:drm_enable_connectors], connector 7 enabled? yes [ 49.292170] [drm:drm_enable_connectors], connector 13 enabled? no [ 49.292172] [drm:drm_enable_connectors], connector 16 enabled? no [ 49.292174] [drm:drm_enable_connectors], connector 19 enabled? yes [ 49.292175] [drm:drm_enable_connectors], connector 22 enabled? no [ 49.292177] [drm:drm_enable_connectors], connector 24 enabled? no [ 49.292179] [drm:drm_enable_connectors], connector 25 enabled? no [ 49.292180] [drm:drm_enable_connectors], connector 27 enabled? no [ 49.292182] [drm:drm_target_preferred], looking for cmdline mode on connector 7 [ 49.292184] [drm:drm_target_preferred], looking for preferred mode on connector 7 [ 49.292186] [drm:drm_target_preferred], found mode 1366x768 [ 49.292187] [drm:drm_target_preferred], looking for cmdline mode on connector 19 [ 49.292189] [drm:drm_target_preferred], looking for preferred mode on connector 19 [ 49.292191] [drm:drm_target_preferred], found mode 1920x1080 [ 49.292192] [drm:drm_setup_crtcs], picking CRTCs for 8192x8192 config [ 49.292198] [drm:drm_setup_crtcs], desired mode 1366x768 set on crtc 3 [ 49.292202] [drm:drm_setup_crtcs], desired mode 1920x1080 set on crtc 5 [ 49.298266] [drm:intelfb_create], allocated 1920x1080 fb: 0x00064000, bo ffff88020e9fac00 [ 49.298397] fbcon: inteldrmfb (fb0) is primary device [ 49.299400] [drm:drm_crtc_helper_set_config], [ 49.299401] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:41] #connectors=1 (x y) (0 0) [ 49.299415] [drm:drm_crtc_helper_set_config], crtc has no fb, full mode set [ 49.299416] [drm:drm_crtc_helper_set_config], modes are different, full mode set [ 49.299418] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0 [ 49.299420] [drm:drm_mode_debug_printmodeline], Modeline 39:"1366x768" 60 75200 1366 1414 1478 1582 768 772 779 792 0x48 0x9 [ 49.299423] [drm:drm_crtc_helper_set_config], encoder changed, full mode switch [ 49.299425] [drm:drm_crtc_helper_set_config], crtc changed, full mode switch [ 49.299427] [drm:drm_crtc_helper_set_config], [CONNECTOR:7:LVDS-1] to [CRTC:3] [ 49.299428] [drm:drm_crtc_helper_set_config], attempting to set mode from userspace [ 49.299430] [drm:drm_mode_debug_printmodeline], Modeline 39:"1366x768" 60 75200 1366 1414 1478 1582 768 772 779 792 0x48 0x9 [ 49.299436] [drm:drm_crtc_helper_set_mode], [CRTC:3] [ 49.299878] [drm:intel_choose_pipe_bpp_dither], clamping display bpc (was -1) to LVDS (6) [ 49.299880] [drm:intel_choose_pipe_bpp_dither], setting pipe bpc to 8 (max display bpc 6) [ 49.299883] [drm:ironlake_crtc_mode_set], Mode for pipe 0: [ 49.299884] [drm:drm_mode_debug_printmodeline], Modeline 39:"1366x768" 60 75200 1366 1414 1478 1582 768 772 779 792 0x48 0x9 [ 49.355965] [drm:intel_wait_for_vblank], vblank wait timed out [ 49.355977] [drm:ironlake_update_plane], Writing base 00064000 00000000 0 0 7680 [ 49.355986] [drm:intel_update_fbc], [ 49.355991] [drm:intel_update_fbc], framebuffer not tiled or fenced, disabling compression [ 49.355998] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 6, cursor: 6 [ 49.356012] [drm:ironlake_check_srwm], watermark 1: display plane 10, fbc lines 3, cursor 6 [ 49.356015] [drm:ironlake_check_srwm], watermark 2: display plane 12, fbc lines 3, cursor 6 [ 49.356017] [drm:ironlake_check_srwm], watermark 3: display plane 54, fbc lines 3, cursor 6 [ 49.356020] [drm:drm_crtc_helper_set_mode], [ENCODER:8:LVDS-8] set [MODE:39:1366x768] [ 49.356023] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 6, cursor: 6 [ 49.356025] [drm:ironlake_check_srwm], watermark 1: display plane 10, fbc lines 3, cursor 6 [ 49.356027] [drm:ironlake_check_srwm], watermark 2: display plane 12, fbc lines 3, cursor 6 [ 49.356029] [drm:ironlake_check_srwm], watermark 3: display plane 54, fbc lines 3, cursor 6 [ 49.411829] [drm:intel_wait_for_vblank], vblank wait timed out [ 49.467692] [drm:intel_wait_for_vblank], vblank wait timed out [ 49.468503] [drm:gen6_fdi_link_train], FDI_RX_IIR 0x700 [ 49.468506] [drm:gen6_fdi_link_train], FDI train 1 done. [ 49.469155] [drm:gen6_fdi_link_train], FDI_RX_IIR 0x600 [ 49.469158] [drm:gen6_fdi_link_train], FDI train 2 done. [ 49.469159] [drm:gen6_fdi_link_train], FDI train done. [ 49.470366] [drm:intel_update_fbc], [ 49.470368] [drm:intel_update_fbc], framebuffer not tiled or fenced, disabling compression [ 49.475675] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648 [ 49.475693] [drm:drm_crtc_helper_set_config], Setting connector DPMS state to on [ 49.475700] [drm:drm_crtc_helper_set_config], [CONNECTOR:7:LVDS-1] set DPMS on [ 49.476144] [drm:drm_crtc_helper_set_config], [ 49.476145] [drm:drm_crtc_helper_set_config], [CRTC:5] [FB:41] #connectors=1 (x y) (0 0) [ 49.476158] [drm:drm_crtc_helper_set_config], crtc has no fb, full mode set [ 49.476160] [drm:drm_crtc_helper_set_config], modes are different, full mode set [ 49.476161] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0 [ 49.476164] [drm:drm_mode_debug_printmodeline], Modeline 40:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x48 0x5 [ 49.476167] [drm:drm_crtc_helper_set_config], encoder changed, full mode switch [ 49.476169] [drm:drm_crtc_helper_set_config], [CONNECTOR:7:LVDS-1] to [CRTC:3] [ 49.476170] [drm:drm_crtc_helper_set_config], crtc changed, full mode switch [ 49.476172] [drm:drm_crtc_helper_set_config], [CONNECTOR:19:DP-1] to [CRTC:5] [ 49.476173] [drm:drm_crtc_helper_set_config], attempting to set mode from userspace [ 49.476175] [drm:drm_mode_debug_printmodeline], Modeline 40:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x48 0x5 [ 49.476180] [drm:intel_dp_mode_fixup], Display port link bw 0a lane count 2 clock 270000 [ 49.476182] [drm:drm_crtc_helper_set_mode], [CRTC:5] [ 49.476608] [drm:intel_choose_pipe_bpp_dither], clamping display bpc (was -1) to EDID reported max of 8 [ 49.476610] [drm:intel_choose_pipe_bpp_dither], setting pipe bpc to 8 (max display bpc 8) [ 49.476612] [drm:ironlake_crtc_mode_set], Mode for pipe 1: [ 49.476613] [drm:drm_mode_debug_printmodeline], Modeline 40:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x48 0x5 [ 49.487073] [drm:intel_prepare_page_flip], preparing flip with no unpin work? [ 49.531536] [drm:intel_wait_for_vblank], vblank wait timed out [ 49.531549] [drm:ironlake_update_plane], Writing base 00064000 00000000 0 0 7680 [ 49.531558] [drm:intel_update_fbc], [ 49.531562] [drm:intel_update_fbc], more than one pipe active, disabling compression [ 49.531578] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 6, cursor: 6 [ 49.531580] [drm:sandybridge_update_wm], FIFO watermarks For pipe B - plane 9, cursor: 6 [ 49.531585] [drm:drm_crtc_helper_set_mode], [ENCODER:20:TMDS-20] set [MODE:40:1920x1080] [ 49.531589] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 6, cursor: 6 [ 49.531591] [drm:sandybridge_update_wm], FIFO watermarks For pipe B - plane 9, cursor: 6 [ 49.587397] [drm:intel_wait_for_vblank], vblank wait timed out [ 49.643260] [drm:intel_wait_for_vblank], vblank wait timed out [ 49.644072] [drm:gen6_fdi_link_train], FDI_RX_IIR 0x100 [ 49.644075] [drm:gen6_fdi_link_train], FDI train 1 done. [ 49.644724] [drm:gen6_fdi_link_train], FDI_RX_IIR 0x600 [ 49.644726] [drm:gen6_fdi_link_train], FDI train 2 done. [ 49.644727] [drm:gen6_fdi_link_train], FDI train done. [ 49.645000] [drm:intel_prepare_page_flip], preparing flip with no unpin work? [ 49.645936] [drm:intel_update_fbc], [ 49.645937] [drm:intel_update_fbc], more than one pipe active, disabling compression [ 49.646854] [drm:intel_dp_start_link_train], training pattern 1 signal levels 00000000 [ 49.648882] [drm:intel_dp_start_link_train], clock recovery OK [ 49.653726] [drm:intel_dp_commit], Sink status after training: 0 [ 49.653731] [drm:drm_crtc_helper_set_config], Setting connector DPMS state to on [ 49.653733] [drm:drm_crtc_helper_set_config], [CONNECTOR:19:DP-1] set DPMS on [ 49.653778] [drm:drm_crtc_helper_set_config], [ 49.653779] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:41] #connectors=1 (x y) (0 0) [ 49.653796] [drm:drm_crtc_helper_set_config], [CONNECTOR:7:LVDS-1] to [CRTC:3] [ 49.653798] [drm:drm_crtc_helper_set_config], [CONNECTOR:19:DP-1] to [CRTC:5] [ 49.653800] [drm:drm_crtc_helper_set_config], [ 49.653801] [drm:drm_crtc_helper_set_config], [CRTC:5] [FB:41] #connectors=1 (x y) (0 0) [ 49.653812] [drm:drm_crtc_helper_set_config], [CONNECTOR:7:LVDS-1] to [CRTC:3] [ 49.653813] [drm:drm_crtc_helper_set_config], [CONNECTOR:19:DP-1] to [CRTC:5] [ 49.656756] Console: switching to colour frame buffer device 170x48 [ 49.656761] [drm:drm_crtc_helper_set_config], [ 49.656761] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:41] #connectors=1 (x y) (0 0) [ 49.656773] [drm:drm_crtc_helper_set_config], [CONNECTOR:7:LVDS-1] to [CRTC:3] [ 49.656775] [drm:drm_crtc_helper_set_config], [CONNECTOR:19:DP-1] to [CRTC:5] [ 49.656776] [drm:drm_crtc_helper_set_config], [ 49.656777] [drm:drm_crtc_helper_set_config], [CRTC:5] [FB:41] #connectors=1 (x y) (0 0) [ 49.656788] [drm:drm_crtc_helper_set_config], [CONNECTOR:7:LVDS-1] to [CRTC:3] [ 49.656789] [drm:drm_crtc_helper_set_config], [CONNECTOR:19:DP-1] to [CRTC:5] [ 49.659772] fb0: inteldrmfb frame buffer device [ 49.659773] drm: registered panic notifier [ 49.660838] [drm:intel_opregion_gse_intr], non asle set request?? [ 49.661048] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648 [ 49.661050] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648 [ 49.661052] [drm:intel_opregion_gse_intr], PWM freq is not supported [ 49.661727] [drm:intel_opregion_gse_intr], non asle set request?? [ 49.661933] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648 [ 49.661934] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648 [ 49.661936] [drm:intel_opregion_gse_intr], PWM freq is not supported [ 49.662257] acpi device:01: registered as cooling_device4 [ 49.662453] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input8 [ 49.662609] ACPI: Video Device [VID] (multi-head: yes rom: no post: no) [ 49.662726] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0 [ 49.662981] snd_hda_intel 0000:00:1b.0: irq 51 for MSI/MSI-X [ 50.196544] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input9 [ 50.201697] HDMI status: Codec=3 Pin=5 Presence_Detect=0 ELD_Valid=0 [ 50.201823] HDMI status: Codec=3 Pin=6 Presence_Detect=0 ELD_Valid=0 [ 50.201905] HDMI status: Codec=3 Pin=7 Presence_Detect=0 ELD_Valid=0 [ 50.202004] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10 [ 50.202187] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11 [ 50.202367] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12 [ 50.309614] EXT4-fs (dm-1): re-mounted. Opts: (null) [ 50.324659] EXT4-fs (dm-1): re-mounted. Opts: errors=remount-ro,discard [ 50.477093] loop: module loaded [ 50.633468] EXT4-fs (dm-4): mounted filesystem with ordered data mode. Opts: discard [ 50.638058] EXT4-fs (dm-3): mounted filesystem with ordered data mode. Opts: discard [ 50.642623] EXT4-fs (dm-2): mounted filesystem with ordered data mode. Opts: discard [ 52.092426] ip_tables: (C) 2000-2006 Netfilter Core Team [ 52.103938] nf_conntrack version 0.5.0 (16384 buckets, 65536 max) [ 52.112931] ip6_tables: (C) 2000-2006 Netfilter Core Team [ 52.132163] fuse init (API version 7.18) [ 52.192392] [drm:drm_crtc_helper_set_config], [ 52.192395] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:41] #connectors=1 (x y) (0 0) [ 52.192412] [drm:drm_crtc_helper_set_config], [CONNECTOR:7:LVDS-1] to [CRTC:3] [ 52.192414] [drm:drm_crtc_helper_set_config], [CONNECTOR:19:DP-1] to [CRTC:5] [ 52.192415] [drm:drm_crtc_helper_set_config], [ 52.192416] [drm:drm_crtc_helper_set_config], [CRTC:5] [FB:41] #connectors=1 (x y) (0 0) [ 52.192427] [drm:drm_crtc_helper_set_config], [CONNECTOR:7:LVDS-1] to [CRTC:3] [ 52.192429] [drm:drm_crtc_helper_set_config], [CONNECTOR:19:DP-1] to [CRTC:5] [ 52.421292] e1000e 0000:00:19.0: irq 47 for MSI/MSI-X [ 52.476362] e1000e 0000:00:19.0: irq 47 for MSI/MSI-X [ 52.476886] ADDRCONF(NETDEV_UP): eth0: link is not ready [ 52.504869] lp: driver loaded but no devices found [ 52.508142] ppdev: user-space parallel port driver [ 52.839347] [drm:drm_crtc_helper_set_config], [ 52.839350] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:41] #connectors=1 (x y) (0 0) [ 52.839375] [drm:drm_crtc_helper_set_config], [CONNECTOR:7:LVDS-1] to [CRTC:3] [ 52.839378] [drm:drm_crtc_helper_set_config], [CONNECTOR:19:DP-1] to [CRTC:5] [ 52.839381] [drm:drm_crtc_helper_set_config], [ 52.839382] [drm:drm_crtc_helper_set_config], [CRTC:5] [FB:41] #connectors=1 (x y) (0 0) [ 52.839401] [drm:drm_crtc_helper_set_config], [CONNECTOR:7:LVDS-1] to [CRTC:3] [ 52.839404] [drm:drm_crtc_helper_set_config], [CONNECTOR:19:DP-1] to [CRTC:5] [ 52.949032] [drm:i915_driver_open], [ 52.949055] [drm:drm_crtc_helper_set_config], [ 52.949057] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:41] #connectors=1 (x y) (0 0) [ 52.949072] [drm:drm_crtc_helper_set_config], [CONNECTOR:7:LVDS-1] to [CRTC:3] [ 52.949074] [drm:drm_crtc_helper_set_config], [CONNECTOR:19:DP-1] to [CRTC:5] [ 52.949076] [drm:drm_crtc_helper_set_config], [ 52.949077] [drm:drm_crtc_helper_set_config], [CRTC:5] [FB:41] #connectors=1 (x y) (0 0) [ 52.949087] [drm:drm_crtc_helper_set_config], [CONNECTOR:7:LVDS-1] to [CRTC:3] [ 52.949089] [drm:drm_crtc_helper_set_config], [CONNECTOR:19:DP-1] to [CRTC:5] [ 52.949106] [drm:i915_driver_open], [ 52.949296] [drm:drm_mode_getresources], CRTC[2] CONNECTORS[8] ENCODERS[8] [ 52.949299] [drm:drm_mode_getresources], CRTC[2] CONNECTORS[8] ENCODERS[8] [ 52.949322] [drm:drm_mode_getconnector], [CONNECTOR:7:?] [ 52.949323] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1] [ 52.949331] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1] probed modes : [ 52.949333] [drm:drm_mode_debug_printmodeline], Modeline 29:"1366x768" 60 75200 1366 1414 1478 1582 768 772 779 792 0x48 0x9 [ 52.949337] [drm:drm_mode_getconnector], [CONNECTOR:7:?] [ 52.949511] [drm:drm_mode_getconnector], [CONNECTOR:13:?] [ 52.949513] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:13:VGA-1] [ 52.949517] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0 [ 52.949518] [drm:intel_crt_detect], CRT not detected via hotplug [ 52.949520] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:13:VGA-1] disconnected [ 52.949522] [drm:drm_mode_getconnector], [CONNECTOR:13:?] [ 52.949524] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:13:VGA-1] [ 52.949527] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0 [ 52.949528] [drm:intel_crt_detect], CRT not detected via hotplug [ 52.949530] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:13:VGA-1] disconnected [ 52.949542] [drm:drm_mode_getconnector], [CONNECTOR:16:?] [ 52.949543] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:16:HDMI-A-1] [ 52.984369] Ebtables v2.0 registered [ 53.266273] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:16:HDMI-A-1] disconnected [ 53.266292] [drm:drm_mode_getconnector], [CONNECTOR:16:?] [ 53.266295] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:16:HDMI-A-1] [ 53.585490] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:16:HDMI-A-1] disconnected [ 53.585554] [drm:drm_mode_getconnector], [CONNECTOR:19:?] [ 53.585557] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:19:DP-1] [ 53.586069] [drm:intel_dp_detect], DPCD: 110a840101000180 [ 53.587098] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 53.614069] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 53.615107] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 53.642146] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 53.642174] [drm:drm_edid_to_eld], ELD: no CEA Extension found [ 53.642185] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:19:DP-1] probed modes : [ 53.642187] [drm:drm_mode_debug_printmodeline], Modeline 30:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x48 0x5 [ 53.642190] [drm:drm_mode_debug_printmodeline], Modeline 35:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6 [ 53.642192] [drm:drm_mode_debug_printmodeline], Modeline 34:"1600x900" 60 118963 1600 1696 1864 2128 900 901 904 932 0x0 0x6 [ 53.642195] [drm:drm_mode_debug_printmodeline], Modeline 33:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5 [ 53.642197] [drm:drm_mode_debug_printmodeline], Modeline 31:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x9 [ 53.642200] [drm:drm_mode_debug_printmodeline], Modeline 32:"1280x720" 60 74440 1280 1336 1472 1664 720 721 724 746 0x0 0x6 [ 53.642202] [drm:drm_mode_debug_printmodeline], Modeline 38:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa [ 53.642204] [drm:drm_mode_debug_printmodeline], Modeline 36:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5 [ 53.642207] [drm:drm_mode_debug_printmodeline], Modeline 37:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa [ 53.642217] [drm:drm_mode_getconnector], [CONNECTOR:19:?] [ 53.642267] [drm:drm_mode_getconnector], [CONNECTOR:22:?] [ 53.642269] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:HDMI-A-2] [ 53.653893] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:HDMI-A-2] disconnected [ 53.653902] [drm:drm_mode_getconnector], [CONNECTOR:22:?] [ 53.653904] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:HDMI-A-2] [ 53.665451] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:HDMI-A-2] disconnected [ 53.665501] [drm:drm_mode_getconnector], [CONNECTOR:24:?] [ 53.665503] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:24:HDMI-A-3] [ 53.676965] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:24:HDMI-A-3] disconnected [ 53.676973] [drm:drm_mode_getconnector], [CONNECTOR:24:?] [ 53.676975] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:24:HDMI-A-3] [ 53.688439] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:24:HDMI-A-3] disconnected [ 53.688487] [drm:drm_mode_getconnector], [CONNECTOR:25:?] [ 53.688489] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:25:DP-2] [ 53.688996] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 53.693730] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 53.701719] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 53.709156] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 53.709162] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:25:DP-2] disconnected [ 53.709172] [drm:drm_mode_getconnector], [CONNECTOR:25:?] [ 53.709174] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:25:DP-2] [ 53.709685] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 53.717692] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 53.725639] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 53.733102] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 53.733108] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:25:DP-2] disconnected [ 53.733162] [drm:drm_mode_getconnector], [CONNECTOR:27:?] [ 53.733164] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:DP-3] [ 53.733674] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 53.741641] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 53.749599] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 53.757079] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 53.757099] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:DP-3] disconnected [ 53.757127] [drm:drm_mode_getconnector], [CONNECTOR:27:?] [ 53.757135] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:DP-3] [ 53.757650] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 53.765522] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 53.773577] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 53.781027] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 53.781048] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:DP-3] disconnected [ 53.781229] [drm:drm_mode_getconnector], [CONNECTOR:7:?] [ 53.781238] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1] [ 53.781266] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1] probed modes : [ 53.781273] [drm:drm_mode_debug_printmodeline], Modeline 29:"1366x768" 60 75200 1366 1414 1478 1582 768 772 779 792 0x48 0x9 [ 53.781287] [drm:drm_mode_getconnector], [CONNECTOR:7:?] [ 53.783385] [drm:drm_mode_getconnector], [CONNECTOR:13:?] [ 53.783394] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:13:VGA-1] [ 53.783403] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0 [ 53.783410] [drm:intel_crt_detect], CRT not detected via hotplug [ 53.783417] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:13:VGA-1] disconnected [ 53.783426] [drm:drm_mode_getconnector], [CONNECTOR:13:?] [ 53.783432] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:13:VGA-1] [ 53.783439] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0 [ 53.783446] [drm:intel_crt_detect], CRT not detected via hotplug [ 53.783451] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:13:VGA-1] disconnected [ 53.783491] [drm:drm_mode_getconnector], [CONNECTOR:16:?] [ 53.783498] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:16:HDMI-A-1] [ 54.043168] e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: Rx/Tx [ 54.043173] e1000e 0000:00:19.0: eth0: 10/100 speed: disabling TSO [ 54.043892] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 54.100221] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:16:HDMI-A-1] disconnected [ 54.100230] [drm:drm_mode_getconnector], [CONNECTOR:16:?] [ 54.100232] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:16:HDMI-A-1] [ 54.419442] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:16:HDMI-A-1] disconnected [ 54.419477] [drm:drm_mode_getconnector], [CONNECTOR:19:?] [ 54.419479] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:19:DP-1] [ 54.419989] [drm:intel_dp_detect], DPCD: 110a840101000180 [ 54.421016] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 54.448022] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 54.449062] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 54.476208] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 54.476272] [drm:drm_edid_to_eld], ELD: no CEA Extension found [ 54.476295] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:19:DP-1] probed modes : [ 54.476302] [drm:drm_mode_debug_printmodeline], Modeline 30:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x48 0x5 [ 54.476313] [drm:drm_mode_debug_printmodeline], Modeline 35:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6 [ 54.476324] [drm:drm_mode_debug_printmodeline], Modeline 34:"1600x900" 60 118963 1600 1696 1864 2128 900 901 904 932 0x0 0x6 [ 54.476334] [drm:drm_mode_debug_printmodeline], Modeline 33:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5 [ 54.476344] [drm:drm_mode_debug_printmodeline], Modeline 31:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x9 [ 54.476354] [drm:drm_mode_debug_printmodeline], Modeline 32:"1280x720" 60 74440 1280 1336 1472 1664 720 721 724 746 0x0 0x6 [ 54.476364] [drm:drm_mode_debug_printmodeline], Modeline 38:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa [ 54.476374] [drm:drm_mode_debug_printmodeline], Modeline 36:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5 [ 54.476384] [drm:drm_mode_debug_printmodeline], Modeline 37:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa [ 54.476415] [drm:drm_mode_getconnector], [CONNECTOR:19:?] [ 54.477734] [drm:drm_mode_getconnector], [CONNECTOR:22:?] [ 54.477742] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:HDMI-A-2] [ 54.489584] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:HDMI-A-2] disconnected [ 54.489586] [drm:drm_mode_getconnector], [CONNECTOR:22:?] [ 54.489588] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:HDMI-A-2] [ 54.501122] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:HDMI-A-2] disconnected [ 54.501134] [drm:drm_mode_getconnector], [CONNECTOR:24:?] [ 54.501136] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:24:HDMI-A-3] [ 54.512658] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:24:HDMI-A-3] disconnected [ 54.512660] [drm:drm_mode_getconnector], [CONNECTOR:24:?] [ 54.512661] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:24:HDMI-A-3] [ 54.524192] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:24:HDMI-A-3] disconnected [ 54.524203] [drm:drm_mode_getconnector], [CONNECTOR:25:?] [ 54.524205] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:25:DP-2] [ 54.524713] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 54.531715] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 54.539705] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 54.547221] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 54.547239] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:25:DP-2] disconnected [ 54.547266] [drm:drm_mode_getconnector], [CONNECTOR:25:?] [ 54.547274] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:25:DP-2] [ 54.547793] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 54.555699] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 54.563646] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 54.571166] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 54.571184] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:25:DP-2] disconnected [ 54.571326] [drm:drm_mode_getconnector], [CONNECTOR:27:?] [ 54.571335] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:DP-3] [ 54.571852] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 54.579545] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 54.587580] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 54.595104] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 54.595122] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:DP-3] disconnected [ 54.595149] [drm:drm_mode_getconnector], [CONNECTOR:27:?] [ 54.595157] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:DP-3] [ 54.595675] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 54.603543] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 54.611526] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 54.619046] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 54.619064] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:DP-3] disconnected [ 54.631469] [drm:drm_mode_addfb], [FB:42] [ 54.631597] [drm:drm_mode_setcrtc], [CRTC:3] [ 54.631608] [drm:drm_mode_setcrtc], [CONNECTOR:7:LVDS-1] [ 54.631614] [drm:drm_crtc_helper_set_config], [ 54.631619] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:42] #connectors=1 (x y) (0 0) [ 54.631666] [drm:drm_crtc_helper_set_config], modes are different, full mode set [ 54.631673] [drm:drm_mode_debug_printmodeline], Modeline 39:"1366x768" 60 75200 1366 1414 1478 1582 768 772 779 792 0x48 0x9 [ 54.631684] [drm:drm_mode_debug_printmodeline], Modeline 43:"1024x768" 0 65000 1024 1048 1184 1344 768 771 777 806 0x0 0xa [ 54.631697] [drm:drm_crtc_helper_set_config], [CONNECTOR:7:LVDS-1] to [CRTC:3] [ 54.631704] [drm:drm_crtc_helper_set_config], [CONNECTOR:19:DP-1] to [CRTC:5] [ 54.631711] [drm:drm_crtc_helper_set_config], attempting to set mode from userspace [ 54.631717] [drm:drm_mode_debug_printmodeline], Modeline 43:"1024x768" 0 65000 1024 1048 1184 1344 768 771 777 806 0x0 0xa [ 54.631731] [drm:drm_crtc_helper_set_mode], [CRTC:3] [ 54.636791] [drm:intel_prepare_page_flip], preparing flip with no unpin work? [ 54.686876] [drm:intel_wait_for_vblank], vblank wait timed out [ 54.727191] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 5, cursor: 6 [ 54.727204] [drm:sandybridge_update_wm], FIFO watermarks For pipe B - plane 9, cursor: 6 [ 54.727212] [drm:intel_update_fbc], [ 54.727217] [drm:intel_update_fbc], more than one pipe active, disabling compression [ 54.727516] [drm:intel_choose_pipe_bpp_dither], clamping display bpc (was -1) to LVDS (6) [ 54.727524] [drm:intel_choose_pipe_bpp_dither], setting pipe bpc to 8 (max display bpc 6) [ 54.727532] [drm:ironlake_crtc_mode_set], Mode for pipe 0: [ 54.727538] [drm:drm_mode_debug_printmodeline], Modeline 43:"1024x768" 0 65000 1024 1048 1184 1344 768 771 777 806 0x0 0xa [ 54.727704] [drm] Changing LVDS panel from (+hsync, -vsync) to (-hsync, -vsync) [ 54.782641] [drm:intel_wait_for_vblank], vblank wait timed out [ 54.789829] [drm:ironlake_update_plane], Writing base 0084D000 00000000 0 0 4096 [ 54.789841] [drm:intel_update_fbc], [ 54.789846] [drm:intel_update_fbc], more than one pipe active, disabling compression [ 54.842495] [drm:intel_wait_for_vblank], vblank wait timed out [ 54.842510] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 5, cursor: 6 [ 54.842519] [drm:sandybridge_update_wm], FIFO watermarks For pipe B - plane 9, cursor: 6 [ 54.842530] [drm:drm_crtc_helper_set_mode], [ENCODER:8:LVDS-8] set [MODE:43:1024x768] [ 54.842540] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 5, cursor: 6 [ 54.842547] [drm:sandybridge_update_wm], FIFO watermarks For pipe B - plane 9, cursor: 6 [ 54.898362] [drm:intel_wait_for_vblank], vblank wait timed out [ 54.954222] [drm:intel_wait_for_vblank], vblank wait timed out [ 54.955038] [drm:gen6_fdi_link_train], FDI_RX_IIR 0x100 [ 54.955046] [drm:gen6_fdi_link_train], FDI train 1 done. [ 54.955700] [drm:gen6_fdi_link_train], FDI_RX_IIR 0x600 [ 54.955706] [drm:gen6_fdi_link_train], FDI train 2 done. [ 54.955711] [drm:gen6_fdi_link_train], FDI train done. [ 54.956927] [drm:intel_update_fbc], [ 54.956931] [drm:intel_update_fbc], more than one pipe active, disabling compression [ 54.956946] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648 [ 54.956959] [drm:drm_crtc_helper_set_config], Setting connector DPMS state to on [ 54.956966] [drm:drm_crtc_helper_set_config], [CONNECTOR:7:LVDS-1] set DPMS on [ 54.957122] [drm:drm_mode_setcrtc], [CRTC:5] [ 54.957136] [drm:drm_mode_setcrtc], [CONNECTOR:19:DP-1] [ 54.957142] [drm:drm_crtc_helper_set_config], [ 54.957147] [drm:drm_crtc_helper_set_config], [CRTC:5] [FB:42] #connectors=1 (x y) (0 0) [ 54.957191] [drm:drm_crtc_helper_set_config], modes are different, full mode set [ 54.957197] [drm:drm_mode_debug_printmodeline], Modeline 40:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x48 0x5 [ 54.957208] [drm:drm_mode_debug_printmodeline], Modeline 44:"1024x768" 0 65000 1024 1048 1184 1344 768 771 777 806 0x0 0xa [ 54.957221] [drm:drm_crtc_helper_set_config], [CONNECTOR:7:LVDS-1] to [CRTC:3] [ 54.957228] [drm:drm_crtc_helper_set_config], [CONNECTOR:19:DP-1] to [CRTC:5] [ 54.957235] [drm:drm_crtc_helper_set_config], attempting to set mode from userspace [ 54.957240] [drm:drm_mode_debug_printmodeline], Modeline 44:"1024x768" 0 65000 1024 1048 1184 1344 768 771 777 806 0x0 0xa [ 54.957253] [drm:intel_dp_mode_fixup], Display port link bw 0a lane count 1 clock 270000 [ 54.957261] [drm:drm_crtc_helper_set_mode], [CRTC:5] [ 54.957676] [drm:intel_dp_link_down], [ 54.973639] [drm:intel_prepare_page_flip], preparing flip with no unpin work? [ 54.989358] [drm:intel_prepare_page_flip], preparing flip with no unpin work? [ 55.038017] [drm:intel_wait_for_vblank], vblank wait timed out [ 55.062373] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 5, cursor: 6 [ 55.062386] [drm:sandybridge_update_wm], FIFO watermarks For pipe B - plane 5, cursor: 6 [ 55.062395] [drm:intel_update_fbc], [ 55.062399] [drm:intel_update_fbc], more than one pipe active, disabling compression [ 55.062674] [drm:intel_choose_pipe_bpp_dither], clamping display bpc (was -1) to EDID reported max of 8 [ 55.062682] [drm:intel_choose_pipe_bpp_dither], setting pipe bpc to 8 (max display bpc 8) [ 55.062689] [drm:ironlake_crtc_mode_set], Mode for pipe 1: [ 55.062695] [drm:drm_mode_debug_printmodeline], Modeline 44:"1024x768" 0 65000 1024 1048 1184 1344 768 771 777 806 0x0 0xa [ 55.117819] [drm:intel_wait_for_vblank], vblank wait timed out [ 55.117837] [drm:ironlake_update_plane], Writing base 0084D000 00000000 0 0 4096 [ 55.117847] [drm:intel_update_fbc], [ 55.117852] [drm:intel_update_fbc], more than one pipe active, disabling compression [ 55.173681] [drm:intel_wait_for_vblank], vblank wait timed out [ 55.173696] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 5, cursor: 6 [ 55.173704] [drm:sandybridge_update_wm], FIFO watermarks For pipe B - plane 5, cursor: 6 [ 55.173716] [drm:drm_crtc_helper_set_mode], [ENCODER:20:TMDS-20] set [MODE:44:1024x768] [ 55.173728] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 5, cursor: 6 [ 55.173735] [drm:sandybridge_update_wm], FIFO watermarks For pipe B - plane 5, cursor: 6 [ 55.229519] [drm:intel_wait_for_vblank], vblank wait timed out [ 55.285409] [drm:intel_wait_for_vblank], vblank wait timed out [ 55.286226] [drm:gen6_fdi_link_train], FDI_RX_IIR 0x100 [ 55.286234] [drm:gen6_fdi_link_train], FDI train 1 done. [ 55.286888] [drm:gen6_fdi_link_train], FDI_RX_IIR 0x600 [ 55.286894] [drm:gen6_fdi_link_train], FDI train 2 done. [ 55.286898] [drm:gen6_fdi_link_train], FDI train done. [ 55.288115] [drm:intel_update_fbc], [ 55.288120] [drm:intel_update_fbc], more than one pipe active, disabling compression [ 55.289047] [drm:intel_dp_start_link_train], training pattern 1 signal levels 00000000 [ 55.290413] [drm:intel_dp_start_link_train], training pattern 1 signal levels 02000000 [ 55.291845] [drm:intel_dp_start_link_train], clock recovery OK [ 55.296609] [drm:intel_dp_commit], Sink status after training: 0 [ 55.296644] [drm:drm_crtc_helper_set_config], Setting connector DPMS state to on [ 55.296655] [drm:drm_crtc_helper_set_config], [CONNECTOR:19:DP-1] set DPMS on [ 55.298672] [drm:intel_opregion_gse_intr], non asle set request?? [ 55.299382] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648 [ 55.299392] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648 [ 55.299401] [drm:intel_opregion_gse_intr], PWM freq is not supported [ 55.301845] [drm:intel_opregion_gse_intr], non asle set request?? [ 55.302552] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648 [ 55.302562] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648 [ 55.302571] [drm:intel_opregion_gse_intr], PWM freq is not supported [ 55.311963] [drm:intel_prepare_page_flip], preparing flip with no unpin work? [ 55.828408] [drm:intel_crtc_cursor_set], [ 55.828474] [drm:intel_crtc_cursor_set], [ 56.169784] [drm:intel_dp_detect], DPCD: 110a840101000180 [ 56.170814] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 56.197809] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 56.198346] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 56.203620] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 56.211594] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 56.219060] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 56.219715] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 56.227545] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 56.235582] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 56.242999] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 56.585251] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0 [ 56.585253] [drm:intel_crt_detect], CRT not detected via hotplug [ 59.658565] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0 [ 59.658577] [drm:intel_crt_detect], CRT not detected via hotplug [ 59.658584] [drm:output_poll_execute], [CONNECTOR:13:VGA-1] status updated from 2 to 2 [ 59.977768] [drm:output_poll_execute], [CONNECTOR:16:HDMI-A-1] status updated from 2 to 2 [ 59.978280] [drm:intel_dp_detect], DPCD: 110a840101000180 [ 59.979312] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 60.006418] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 60.006425] [drm:output_poll_execute], [CONNECTOR:19:DP-1] status updated from 1 to 1 [ 60.018341] [drm:output_poll_execute], [CONNECTOR:22:HDMI-A-2] status updated from 2 to 2 [ 60.030040] [drm:output_poll_execute], [CONNECTOR:24:HDMI-A-3] status updated from 2 to 2 [ 60.030555] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 60.038344] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 60.048825] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 60.054073] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 60.054081] [drm:output_poll_execute], [CONNECTOR:25:DP-2] status updated from 2 to 2 [ 60.054596] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 60.062060] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 60.070063] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 60.077505] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 60.077512] [drm:output_poll_execute], [CONNECTOR:27:DP-3] status updated from 2 to 2 [ 62.825553] [drm:drm_mode_getconnector], [CONNECTOR:7:?] [ 62.825567] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1] [ 62.825599] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1] probed modes : [ 62.825607] [drm:drm_mode_debug_printmodeline], Modeline 29:"1366x768" 60 75200 1366 1414 1478 1582 768 772 779 792 0x48 0x9 [ 62.825622] [drm:drm_mode_getconnector], [CONNECTOR:7:?] [ 62.826083] [drm:drm_mode_getconnector], [CONNECTOR:13:?] [ 62.826092] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:13:VGA-1] [ 62.826101] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0 [ 62.826108] [drm:intel_crt_detect], CRT not detected via hotplug [ 62.826115] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:13:VGA-1] disconnected [ 62.826123] [drm:drm_mode_getconnector], [CONNECTOR:13:?] [ 62.826129] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:13:VGA-1] [ 62.826137] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0 [ 62.826143] [drm:intel_crt_detect], CRT not detected via hotplug [ 62.826149] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:13:VGA-1] disconnected [ 62.826161] [drm:drm_mode_getconnector], [CONNECTOR:16:?] [ 62.826167] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:16:HDMI-A-1] [ 63.141990] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:16:HDMI-A-1] disconnected [ 63.142027] [drm:drm_mode_getconnector], [CONNECTOR:16:?] [ 63.142029] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:16:HDMI-A-1] [ 63.461203] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:16:HDMI-A-1] disconnected [ 63.461222] [drm:drm_mode_getconnector], [CONNECTOR:19:?] [ 63.461224] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:19:DP-1] [ 63.461735] [drm:intel_dp_detect], DPCD: 110a840101000180 [ 63.462762] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 63.489754] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 63.490784] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 63.517776] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 63.517791] [drm:drm_edid_to_eld], ELD: no CEA Extension found [ 63.517797] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:19:DP-1] probed modes : [ 63.517798] [drm:drm_mode_debug_printmodeline], Modeline 30:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x48 0x5 [ 63.517801] [drm:drm_mode_debug_printmodeline], Modeline 35:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6 [ 63.517804] [drm:drm_mode_debug_printmodeline], Modeline 34:"1600x900" 60 118963 1600 1696 1864 2128 900 901 904 932 0x0 0x6 [ 63.517806] [drm:drm_mode_debug_printmodeline], Modeline 33:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5 [ 63.517808] [drm:drm_mode_debug_printmodeline], Modeline 31:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x9 [ 63.517811] [drm:drm_mode_debug_printmodeline], Modeline 32:"1280x720" 60 74440 1280 1336 1472 1664 720 721 724 746 0x0 0x6 [ 63.517813] [drm:drm_mode_debug_printmodeline], Modeline 38:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa [ 63.517815] [drm:drm_mode_debug_printmodeline], Modeline 36:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5 [ 63.517818] [drm:drm_mode_debug_printmodeline], Modeline 37:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa [ 63.517829] [drm:drm_mode_getconnector], [CONNECTOR:19:?] [ 63.517854] [drm:drm_mode_getconnector], [CONNECTOR:22:?] [ 63.517856] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:HDMI-A-2] [ 63.529368] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:HDMI-A-2] disconnected [ 63.529372] [drm:drm_mode_getconnector], [CONNECTOR:22:?] [ 63.529374] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:HDMI-A-2] [ 63.540886] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:HDMI-A-2] disconnected [ 63.540890] [drm:drm_mode_getconnector], [CONNECTOR:24:?] [ 63.540892] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:24:HDMI-A-3] [ 63.552385] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:24:HDMI-A-3] disconnected [ 63.552389] [drm:drm_mode_getconnector], [CONNECTOR:24:?] [ 63.552390] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:24:HDMI-A-3] [ 63.563905] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:24:HDMI-A-3] disconnected [ 63.563910] [drm:drm_mode_getconnector], [CONNECTOR:25:?] [ 63.563912] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:25:DP-2] [ 63.564420] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 63.569424] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 63.577486] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 63.584974] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 63.584992] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:25:DP-2] disconnected [ 63.585035] [drm:drm_mode_getconnector], [CONNECTOR:25:?] [ 63.585043] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:25:DP-2] [ 63.585561] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 63.593447] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 63.601431] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 63.608949] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 63.608966] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:25:DP-2] disconnected [ 63.609030] [drm:drm_mode_getconnector], [CONNECTOR:27:?] [ 63.609039] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:DP-3] [ 63.609556] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 63.617380] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 63.625324] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 63.632889] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 63.632907] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:DP-3] disconnected [ 63.632954] [drm:drm_mode_getconnector], [CONNECTOR:27:?] [ 63.632961] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:DP-3] [ 63.633479] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 63.641328] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 63.649307] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 63.656829] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 63.656846] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:DP-3] disconnected [ 67.094969] [drm:intel_crtc_cursor_set], [ 67.094978] [drm:intel_crtc_cursor_set], cursor off [ 67.094989] [drm:intel_crtc_cursor_set], [ 67.094993] [drm:intel_crtc_cursor_set], cursor off [ 72.810492] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0 [ 72.810509] [drm:intel_crt_detect], CRT not detected via hotplug [ 72.810519] [drm:output_poll_execute], [CONNECTOR:13:VGA-1] status updated from 2 to 2 [ 73.129442] [drm:output_poll_execute], [CONNECTOR:16:HDMI-A-1] status updated from 2 to 2 [ 73.129963] [drm:intel_dp_detect], DPCD: 110a840101000180 [ 73.131002] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 73.158131] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 73.158140] [drm:output_poll_execute], [CONNECTOR:19:DP-1] status updated from 1 to 1 [ 73.169967] [drm:output_poll_execute], [CONNECTOR:22:HDMI-A-2] status updated from 2 to 2 [ 73.181766] [drm:output_poll_execute], [CONNECTOR:24:HDMI-A-3] status updated from 2 to 2 [ 73.182280] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 73.189853] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 73.197839] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 73.205298] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 73.205312] [drm:output_poll_execute], [CONNECTOR:25:DP-2] status updated from 2 to 2 [ 73.205833] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 73.213793] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 73.221782] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 73.229244] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 73.229259] [drm:output_poll_execute], [CONNECTOR:27:DP-3] status updated from 2 to 2 [ 76.634615] [drm:drm_mode_getconnector], [CONNECTOR:7:?] [ 76.634629] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1] [ 76.634663] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:7:LVDS-1] probed modes : [ 76.634671] [drm:drm_mode_debug_printmodeline], Modeline 29:"1366x768" 60 75200 1366 1414 1478 1582 768 772 779 792 0x48 0x9 [ 76.634686] [drm:drm_mode_getconnector], [CONNECTOR:7:?] [ 76.635147] [drm:drm_mode_getconnector], [CONNECTOR:13:?] [ 76.635156] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:13:VGA-1] [ 76.635165] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0 [ 76.635172] [drm:intel_crt_detect], CRT not detected via hotplug [ 76.635179] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:13:VGA-1] disconnected [ 76.635188] [drm:drm_mode_getconnector], [CONNECTOR:13:?] [ 76.635193] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:13:VGA-1] [ 76.635200] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0 [ 76.635207] [drm:intel_crt_detect], CRT not detected via hotplug [ 76.635213] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:13:VGA-1] disconnected [ 76.635225] [drm:drm_mode_getconnector], [CONNECTOR:16:?] [ 76.635231] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:16:HDMI-A-1] [ 76.952040] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:16:HDMI-A-1] disconnected [ 76.952067] [drm:drm_mode_getconnector], [CONNECTOR:16:?] [ 76.952069] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:16:HDMI-A-1] [ 77.271256] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:16:HDMI-A-1] disconnected [ 77.271268] [drm:drm_mode_getconnector], [CONNECTOR:19:?] [ 77.271270] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:19:DP-1] [ 77.271781] [drm:intel_dp_detect], DPCD: 110a840101000180 [ 77.272809] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 77.299804] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 77.300844] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 77.327978] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 77.328079] [drm:drm_edid_to_eld], ELD: no CEA Extension found [ 77.328102] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:19:DP-1] probed modes : [ 77.328110] [drm:drm_mode_debug_printmodeline], Modeline 30:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x48 0x5 [ 77.328122] [drm:drm_mode_debug_printmodeline], Modeline 35:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6 [ 77.328132] [drm:drm_mode_debug_printmodeline], Modeline 34:"1600x900" 60 118963 1600 1696 1864 2128 900 901 904 932 0x0 0x6 [ 77.328143] [drm:drm_mode_debug_printmodeline], Modeline 33:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5 [ 77.328153] [drm:drm_mode_debug_printmodeline], Modeline 31:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x9 [ 77.328163] [drm:drm_mode_debug_printmodeline], Modeline 32:"1280x720" 60 74440 1280 1336 1472 1664 720 721 724 746 0x0 0x6 [ 77.328173] [drm:drm_mode_debug_printmodeline], Modeline 38:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa [ 77.328183] [drm:drm_mode_debug_printmodeline], Modeline 36:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5 [ 77.328192] [drm:drm_mode_debug_printmodeline], Modeline 37:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa [ 77.328230] [drm:drm_mode_getconnector], [CONNECTOR:19:?] [ 77.328304] [drm:drm_mode_getconnector], [CONNECTOR:22:?] [ 77.328311] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:HDMI-A-2] [ 77.340180] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:HDMI-A-2] disconnected [ 77.340185] [drm:drm_mode_getconnector], [CONNECTOR:22:?] [ 77.340187] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:HDMI-A-2] [ 77.351701] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:HDMI-A-2] disconnected [ 77.351706] [drm:drm_mode_getconnector], [CONNECTOR:24:?] [ 77.351707] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:24:HDMI-A-3] [ 77.363225] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:24:HDMI-A-3] disconnected [ 77.363232] [drm:drm_mode_getconnector], [CONNECTOR:24:?] [ 77.363234] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:24:HDMI-A-3] [ 77.374752] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:24:HDMI-A-3] disconnected [ 77.374758] [drm:drm_mode_getconnector], [CONNECTOR:25:?] [ 77.374760] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:25:DP-2] [ 77.375268] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 77.383543] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 77.391540] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 77.399052] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 77.399070] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:25:DP-2] disconnected [ 77.399115] [drm:drm_mode_getconnector], [CONNECTOR:25:?] [ 77.399123] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:25:DP-2] [ 77.399641] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 77.407490] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 77.415470] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 77.422993] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 77.423010] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:25:DP-2] disconnected [ 77.423073] [drm:drm_mode_getconnector], [CONNECTOR:27:?] [ 77.423081] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:DP-3] [ 77.423599] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 77.431431] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 77.439407] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 77.446934] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 77.446952] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:DP-3] disconnected [ 77.446997] [drm:drm_mode_getconnector], [CONNECTOR:27:?] [ 77.447006] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:DP-3] [ 77.447524] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 77.455372] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 77.463351] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 77.470872] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 77.470889] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:DP-3] disconnected [ 77.473512] [drm:drm_mode_addfb], [FB:45] [ 77.473588] [drm:drm_mode_setcrtc], [CRTC:3] [ 77.473598] [drm:drm_mode_setcrtc], [CONNECTOR:7:LVDS-1] [ 77.473604] [drm:drm_crtc_helper_set_config], [ 77.473609] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:45] #connectors=1 (x y) (0 0) [ 77.473658] [drm:drm_crtc_helper_set_config], [CONNECTOR:7:LVDS-1] to [CRTC:3] [ 77.473665] [drm:drm_crtc_helper_set_config], [CONNECTOR:19:DP-1] to [CRTC:5] [ 77.489222] [drm:ironlake_update_plane], Writing base 01F45000 00000000 0 0 7680 [ 77.489233] [drm:intel_update_fbc], [ 77.489237] [drm:intel_update_fbc], more than one pipe active, disabling compression [ 77.499444] [drm:intel_prepare_page_flip], preparing flip with no unpin work? [ 77.542623] [drm:intel_wait_for_vblank], vblank wait timed out [ 77.542751] [drm:drm_mode_setcrtc], [CRTC:5] [ 77.542765] [drm:drm_mode_setcrtc], [CONNECTOR:19:DP-1] [ 77.542772] [drm:drm_crtc_helper_set_config], [ 77.542776] [drm:drm_crtc_helper_set_config], [CRTC:5] [FB:45] #connectors=1 (x y) (0 0) [ 77.542824] [drm:drm_crtc_helper_set_config], [CONNECTOR:7:LVDS-1] to [CRTC:3] [ 77.542832] [drm:drm_crtc_helper_set_config], [CONNECTOR:19:DP-1] to [CRTC:5] [ 77.542842] [drm:ironlake_update_plane], Writing base 01F45000 00000000 0 0 7680 [ 77.542850] [drm:intel_update_fbc], [ 77.542855] [drm:intel_update_fbc], more than one pipe active, disabling compression [ 77.555588] [drm:intel_prepare_page_flip], preparing flip with no unpin work? [ 77.598486] [drm:intel_wait_for_vblank], vblank wait timed out [ 77.603657] [drm:drm_mode_setcrtc], [CRTC:5] [ 77.603672] [drm:drm_mode_setcrtc], [CONNECTOR:19:DP-1] [ 77.603679] [drm:drm_crtc_helper_set_config], [ 77.603684] [drm:drm_crtc_helper_set_config], [CRTC:5] [FB:45] #connectors=1 (x y) (0 0) [ 77.603727] [drm:drm_crtc_helper_set_config], modes are different, full mode set [ 77.603733] [drm:drm_mode_debug_printmodeline], Modeline 44:"1024x768" 0 65000 1024 1048 1184 1344 768 771 777 806 0x0 0xa [ 77.603746] [drm:drm_mode_debug_printmodeline], Modeline 42:"" 0 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x0 0x5 [ 77.603758] [drm:drm_crtc_helper_set_config], [CONNECTOR:7:LVDS-1] to [CRTC:3] [ 77.603765] [drm:drm_crtc_helper_set_config], [CONNECTOR:19:DP-1] to [CRTC:5] [ 77.603772] [drm:drm_crtc_helper_set_config], attempting to set mode from userspace [ 77.603778] [drm:drm_mode_debug_printmodeline], Modeline 42:"" 0 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x0 0x5 [ 77.603791] [drm:intel_dp_mode_fixup], Display port link bw 0a lane count 2 clock 270000 [ 77.603799] [drm:drm_crtc_helper_set_mode], [CRTC:5] [ 77.604217] [drm:intel_dp_link_down], [ 77.638751] [drm:intel_prepare_page_flip], preparing flip with no unpin work? [ 77.686348] [drm:intel_wait_for_vblank], vblank wait timed out [ 77.710703] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 5, cursor: 6 [ 77.710716] [drm:sandybridge_update_wm], FIFO watermarks For pipe B - plane 9, cursor: 6 [ 77.710725] [drm:intel_update_fbc], [ 77.710730] [drm:intel_update_fbc], more than one pipe active, disabling compression [ 77.711004] [drm:intel_choose_pipe_bpp_dither], clamping display bpc (was -1) to EDID reported max of 8 [ 77.711012] [drm:intel_choose_pipe_bpp_dither], setting pipe bpc to 8 (max display bpc 8) [ 77.711019] [drm:ironlake_crtc_mode_set], Mode for pipe 1: [ 77.711025] [drm:drm_mode_debug_printmodeline], Modeline 42:"" 0 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x0 0x5 [ 77.766155] [drm:intel_wait_for_vblank], vblank wait timed out [ 77.766514] [drm:ironlake_update_plane], Writing base 01F45000 00000000 0 0 7680 [ 77.766527] [drm:intel_update_fbc], [ 77.766533] [drm:intel_update_fbc], more than one pipe active, disabling compression [ 77.822015] [drm:intel_wait_for_vblank], vblank wait timed out [ 77.822030] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 5, cursor: 6 [ 77.822038] [drm:sandybridge_update_wm], FIFO watermarks For pipe B - plane 9, cursor: 6 [ 77.822050] [drm:drm_crtc_helper_set_mode], [ENCODER:20:TMDS-20] set [MODE:42:] [ 77.822061] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 5, cursor: 6 [ 77.822068] [drm:sandybridge_update_wm], FIFO watermarks For pipe B - plane 9, cursor: 6 [ 77.838361] [drm:pch_irq_handler], PCH transcoder audio interrupt [ 77.877875] [drm:intel_wait_for_vblank], vblank wait timed out [ 77.933736] [drm:intel_wait_for_vblank], vblank wait timed out [ 77.934552] [drm:gen6_fdi_link_train], FDI_RX_IIR 0x100 [ 77.934560] [drm:gen6_fdi_link_train], FDI train 1 done. [ 77.935214] [drm:gen6_fdi_link_train], FDI_RX_IIR 0x600 [ 77.935220] [drm:gen6_fdi_link_train], FDI train 2 done. [ 77.935225] [drm:gen6_fdi_link_train], FDI train done. [ 77.936441] [drm:intel_update_fbc], [ 77.936446] [drm:intel_update_fbc], more than one pipe active, disabling compression [ 77.937374] [drm:intel_dp_start_link_train], training pattern 1 signal levels 00000000 [ 77.939414] [drm:intel_dp_start_link_train], clock recovery OK [ 77.944279] [drm:intel_dp_commit], Sink status after training: 0 [ 77.944308] [drm:drm_crtc_helper_set_config], Setting connector DPMS state to on [ 77.944315] [drm:drm_crtc_helper_set_config], [CONNECTOR:19:DP-1] set DPMS on [ 77.944422] [drm:i915_hotplug_work_func], running encoder hotplug functions [ 77.946189] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0 [ 77.946199] [drm:intel_crt_detect], CRT not detected via hotplug [ 77.946206] [drm:output_poll_execute], [CONNECTOR:13:VGA-1] status updated from 2 to 2 [ 77.959677] [drm:intel_prepare_page_flip], preparing flip with no unpin work? [ 78.264819] [drm:output_poll_execute], [CONNECTOR:16:HDMI-A-1] status updated from 2 to 2 [ 78.265339] [drm:intel_dp_detect], DPCD: 110a840101000180 [ 78.266377] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 78.293495] [drm:i2c_algo_dp_aux_xfer], dp_aux_xfer return 2 [ 78.293504] [drm:output_poll_execute], [CONNECTOR:19:DP-1] status updated from 1 to 1 [ 78.305326] [drm:output_poll_execute], [CONNECTOR:22:HDMI-A-2] status updated from 2 to 2 [ 78.317133] [drm:output_poll_execute], [CONNECTOR:24:HDMI-A-3] status updated from 2 to 2 [ 78.317648] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 78.325229] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 78.333219] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 78.340680] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 78.340695] [drm:output_poll_execute], [CONNECTOR:25:DP-2] status updated from 2 to 2 [ 78.341215] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 78.349170] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 78.357161] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5143003e [ 78.364623] [drm:intel_dp_detect], DPCD: 0000000000000000 [ 78.364638] [drm:output_poll_execute], [CONNECTOR:27:DP-3] status updated from 2 to 2 [ 78.566755] [drm:intel_crtc_cursor_set], [ 78.566772] [drm:intel_crtc_cursor_set], [ 85.472387] [drm:intel_crtc_cursor_set], [ 85.472396] [drm:intel_crtc_cursor_set], cursor off [ 85.472407] [drm:intel_crtc_cursor_set], [ 85.472411] [drm:intel_crtc_cursor_set], cursor off [ 87.572663] [drm:intel_crtc_cursor_set], [ 87.572669] [drm:intel_crtc_cursor_set], [ 95.032823] [drm:intel_crtc_cursor_set], [ 95.032831] [drm:intel_crtc_cursor_set], cursor off [ 95.032843] [drm:intel_crtc_cursor_set], [ 95.032847] [drm:intel_crtc_cursor_set], cursor off [ 133.707384] [drm:intel_crtc_cursor_set], [ 133.707401] [drm:intel_crtc_cursor_set], [ 147.000338] [drm:intel_crtc_cursor_set], [ 147.000346] [drm:intel_crtc_cursor_set], cursor off [ 147.000358] [drm:intel_crtc_cursor_set], [ 147.000362] [drm:intel_crtc_cursor_set], cursor off [ 147.144194] [drm:intel_crtc_cursor_set], [ 147.144199] [drm:intel_crtc_cursor_set], [ 151.102170] [drm:intel_crtc_cursor_set], [ 151.102178] [drm:intel_crtc_cursor_set], cursor off [ 151.102189] [drm:intel_crtc_cursor_set], [ 151.102193] [drm:intel_crtc_cursor_set], cursor off [ 156.036189] [drm:intel_crtc_cursor_set], [ 156.036206] [drm:intel_crtc_cursor_set], [ 157.885580] [drm:intel_crtc_cursor_set], [ 157.885592] [drm:intel_crtc_cursor_set], cursor off [ 157.885608] [drm:intel_crtc_cursor_set], [ 157.885614] [drm:intel_crtc_cursor_set], cursor off [ 158.309360] [drm:intel_crtc_cursor_set], [ 158.309366] [drm:intel_crtc_cursor_set], [ 158.324285] [drm:intel_crtc_cursor_set], [ 158.324296] [drm:intel_crtc_cursor_set], cursor off [ 158.324312] [drm:intel_crtc_cursor_set], [ 158.324318] [drm:intel_crtc_cursor_set], cursor off [ 158.325845] [drm:intel_crtc_cursor_set], [ 158.325860] [drm:intel_crtc_cursor_set], [ 158.475979] [drm:intel_crtc_cursor_set], [ 158.475988] [drm:intel_crtc_cursor_set], cursor off [ 158.475999] [drm:intel_crtc_cursor_set], [ 158.476003] [drm:intel_crtc_cursor_set], cursor off