diff mbox

drm/i915: fix up readout of the lvds dither bit on gen2/3

Message ID 1373542540-2681-1-git-send-email-daniel.vetter@ffwll.ch (mailing list archive)
State New, archived
Headers show

Commit Message

Daniel Vetter July 11, 2013, 11:35 a.m. UTC
It's in the PFIT_CONTROL register, but very much associated with the
lvds encoder. So move the readout for it (in the case of an otherwise
disabled pfit) from the pipe to the lvds encoder's get_config
function.

Otherwise we get a pipe state mismatch if we use pipe B for a non-lvds
output and we've left the dither bit enabled behind us. This can
happen if the BIOS has set the bit (some seem to unconditionally do
that, even in the complete absence of an lvds port), but not enabled
pipe B at boot-up. Then we won't clear the pfit control register since
we can only touch that if the pfit is associated with our pipe in the
crtc configuration - we could trample over the pfit state of the other
pipe otherwise since it's shared. Once pipe B is enabled we notice
that the 6to8 dither bit is set and complain about the mismatch.

Note that testing indicates that we don't actually need to set this
bit when the pfit is disabled, dithering on 18bpp panels seems to work
regardless. But ripping that code out is not something for a bugfix
meant for -rc kernels.

v2: While at it clarify the logic in i9xx_get_pfit_config, spurred by
comments from Chris on irc.

v3: Use Chris suggestion to make the control flow in
i9xx_get_pfit_config easier to understand.

v4: Kill the extra line, spotted by Chris.

Reported-by: Knut Petersen <Knut_Petersen@t-online.de>
Cc: Knut Petersen <Knut_Petersen@t-online.de>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
References: http://lists.freedesktop.org/archives/intel-gfx/2013-July/030092.html
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
---
 drivers/gpu/drm/i915/intel_display.c | 11 ++++-------
 drivers/gpu/drm/i915/intel_lvds.c    |  7 +++++++
 2 files changed, 11 insertions(+), 7 deletions(-)

Comments

Chris Wilson July 11, 2013, 11:49 a.m. UTC | #1
On Thu, Jul 11, 2013 at 01:35:40PM +0200, Daniel Vetter wrote:
> It's in the PFIT_CONTROL register, but very much associated with the
> lvds encoder. So move the readout for it (in the case of an otherwise
> disabled pfit) from the pipe to the lvds encoder's get_config
> function.
> 
> Otherwise we get a pipe state mismatch if we use pipe B for a non-lvds
> output and we've left the dither bit enabled behind us. This can
> happen if the BIOS has set the bit (some seem to unconditionally do
> that, even in the complete absence of an lvds port), but not enabled
> pipe B at boot-up. Then we won't clear the pfit control register since
> we can only touch that if the pfit is associated with our pipe in the
> crtc configuration - we could trample over the pfit state of the other
> pipe otherwise since it's shared. Once pipe B is enabled we notice
> that the 6to8 dither bit is set and complain about the mismatch.
> 
> Note that testing indicates that we don't actually need to set this
> bit when the pfit is disabled, dithering on 18bpp panels seems to work
> regardless. But ripping that code out is not something for a bugfix
> meant for -rc kernels.
> 
> v2: While at it clarify the logic in i9xx_get_pfit_config, spurred by
> comments from Chris on irc.
> 
> v3: Use Chris suggestion to make the control flow in
> i9xx_get_pfit_config easier to understand.
> 
> v4: Kill the extra line, spotted by Chris.
> 
> Reported-by: Knut Petersen <Knut_Petersen@t-online.de>
> Cc: Knut Petersen <Knut_Petersen@t-online.de>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
> References: http://lists.freedesktop.org/archives/intel-gfx/2013-July/030092.html
> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>

Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
-Chris
Daniel Vetter July 11, 2013, 11:51 a.m. UTC | #2
Hi Knut,

When you test this patch please grab a dmesg with drm.debug=0xe
regardless of outcome, I'd like to check a few other odd things with
your system (which seem to not be directly related to the issue at
hand).

Thanks, Daniel

On Thu, Jul 11, 2013 at 1:35 PM, Daniel Vetter <daniel.vetter@ffwll.ch> wrote:
> It's in the PFIT_CONTROL register, but very much associated with the
> lvds encoder. So move the readout for it (in the case of an otherwise
> disabled pfit) from the pipe to the lvds encoder's get_config
> function.
>
> Otherwise we get a pipe state mismatch if we use pipe B for a non-lvds
> output and we've left the dither bit enabled behind us. This can
> happen if the BIOS has set the bit (some seem to unconditionally do
> that, even in the complete absence of an lvds port), but not enabled
> pipe B at boot-up. Then we won't clear the pfit control register since
> we can only touch that if the pfit is associated with our pipe in the
> crtc configuration - we could trample over the pfit state of the other
> pipe otherwise since it's shared. Once pipe B is enabled we notice
> that the 6to8 dither bit is set and complain about the mismatch.
>
> Note that testing indicates that we don't actually need to set this
> bit when the pfit is disabled, dithering on 18bpp panels seems to work
> regardless. But ripping that code out is not something for a bugfix
> meant for -rc kernels.
>
> v2: While at it clarify the logic in i9xx_get_pfit_config, spurred by
> comments from Chris on irc.
>
> v3: Use Chris suggestion to make the control flow in
> i9xx_get_pfit_config easier to understand.
>
> v4: Kill the extra line, spotted by Chris.
>
> Reported-by: Knut Petersen <Knut_Petersen@t-online.de>
> Cc: Knut Petersen <Knut_Petersen@t-online.de>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
> References: http://lists.freedesktop.org/archives/intel-gfx/2013-July/030092.html
> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
> ---
>  drivers/gpu/drm/i915/intel_display.c | 11 ++++-------
>  drivers/gpu/drm/i915/intel_lvds.c    |  7 +++++++
>  2 files changed, 11 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
> index 85f3eb7..c59335c 100644
> --- a/drivers/gpu/drm/i915/intel_display.c
> +++ b/drivers/gpu/drm/i915/intel_display.c
> @@ -4913,22 +4913,19 @@ static void i9xx_get_pfit_config(struct intel_crtc *crtc,
>         uint32_t tmp;
>
>         tmp = I915_READ(PFIT_CONTROL);
> +       if (!(tmp & PFIT_ENABLE))
> +               return;
>
> +       /* Check whether the pfit is attached to our pipe. */
>         if (INTEL_INFO(dev)->gen < 4) {
>                 if (crtc->pipe != PIPE_B)
>                         return;
> -
> -               /* gen2/3 store dither state in pfit control, needs to match */
> -               pipe_config->gmch_pfit.control = tmp & PANEL_8TO6_DITHER_ENABLE;
>         } else {
>                 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
>                         return;
>         }
>
> -       if (!(tmp & PFIT_ENABLE))
> -               return;
> -
> -       pipe_config->gmch_pfit.control = I915_READ(PFIT_CONTROL);
> +       pipe_config->gmch_pfit.control = tmp;
>         pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
>         if (INTEL_INFO(dev)->gen < 5)
>                 pipe_config->gmch_pfit.lvds_border_bits =
> diff --git a/drivers/gpu/drm/i915/intel_lvds.c b/drivers/gpu/drm/i915/intel_lvds.c
> index 2abb2d3..1207998 100644
> --- a/drivers/gpu/drm/i915/intel_lvds.c
> +++ b/drivers/gpu/drm/i915/intel_lvds.c
> @@ -109,6 +109,13 @@ static void intel_lvds_get_config(struct intel_encoder *encoder,
>                 flags |= DRM_MODE_FLAG_PVSYNC;
>
>         pipe_config->adjusted_mode.flags |= flags;
> +
> +       /* gen2/3 store dither state in pfit control, needs to match */
> +       if (INTEL_INFO(dev)->gen < 4) {
> +               tmp = I915_READ(PFIT_CONTROL);
> +
> +               pipe_config->gmch_pfit.control |= tmp & PANEL_8TO6_DITHER_ENABLE;
> +       }
>  }
>
>  /* The LVDS pin pair needs to be on before the DPLLs are enabled.
> --
> 1.8.1.4
>
Knut Petersen July 11, 2013, 4:29 p.m. UTC | #3
On 11.07.2013 13:49, Chris Wilson wrote:
> On Thu, Jul 11, 2013 at 01:35:40PM +0200, Daniel Vetter wrote:
>> It's in the PFIT_CONTROL register, but very much associated with the
>> lvds encoder. So move the readout for it (in the case of an otherwise
>> disabled pfit) from the pipe to the lvds encoder's get_config
>> function.
>>
>> Otherwise we get a pipe state mismatch if we use pipe B for a non-lvds
>> output and we've left the dither bit enabled behind us. This can
>> happen if the BIOS has set the bit (some seem to unconditionally do
>> that, even in the complete absence of an lvds port), but not enabled
>> pipe B at boot-up. Then we won't clear the pfit control register since
>> we can only touch that if the pfit is associated with our pipe in the
>> crtc configuration - we could trample over the pfit state of the other
>> pipe otherwise since it's shared. Once pipe B is enabled we notice
>> that the 6to8 dither bit is set and complain about the mismatch.
>>
>> Note that testing indicates that we don't actually need to set this
>> bit when the pfit is disabled, dithering on 18bpp panels seems to work
>> regardless. But ripping that code out is not something for a bugfix
>> meant for -rc kernels.
>>
>> v2: While at it clarify the logic in i9xx_get_pfit_config, spurred by
>> comments from Chris on irc.
>>
>> v3: Use Chris suggestion to make the control flow in
>> i9xx_get_pfit_config easier to understand.
>>
>> v4: Kill the extra line, spotted by Chris.
>>
>> Reported-by: Knut Petersen <Knut_Petersen@t-online.de>
>> Cc: Knut Petersen <Knut_Petersen@t-online.de>
>> Cc: Chris Wilson <chris@chris-wilson.co.uk>
>> References: http://lists.freedesktop.org/archives/intel-gfx/2013-July/030092.html
>> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
> -Chris
>

Tested-by: Knut Petersen <Knut_Petersen@t-online.de>

Thanks, that patch cures both inital boot and suspend/resume problems.
Attached find dmesg (inital boot) and dmesg2 (suspend/resume cycle).
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.10.0-main+ (knut@linux-ktth.site) (gcc version 4.7.2 20130108 [gcc-4_7-branch revision 195012] (SUSE Linux) ) #15 PREEMPT Thu Jul 11 16:56:11 CEST 2013
[    0.000000] Disabled fast string operations
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007f7effff] usable
[    0.000000] BIOS-e820: [mem 0x000000007f7f0000-0x000000007f7f2fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007f7f3000-0x000000007f7fffff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffb00000-0x00000000ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.3 present.
[    0.000000] DMI:    /i915GMm-HFS, BIOS 6.00 PG 11/04/2005
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x7f7f0 max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-F7FFF uncachable
[    0.000000]   F8000-FBFFF write-through
[    0.000000]   FC000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 07F800000 mask FFF800000 uncachable
[    0.000000]   2 disabled
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] initial memory mapped: [mem 0x00000000-0x011fffff]
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x37800000-0x379fffff]
[    0.000000]  [mem 0x37800000-0x379fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x34000000-0x377fffff]
[    0.000000]  [mem 0x34000000-0x377fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0x33ffffff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x33ffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x37a00000-0x37bfdfff]
[    0.000000]  [mem 0x37a00000-0x37bfdfff] page 4k
[    0.000000] BRK [0x00da0000, 0x00da0fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x37bf3000-0x37feffff]
[    0.000000] Allocated new RAMDISK: [mem 0x377f6000-0x37bf2e1d]
[    0.000000] Move RAMDISK from [mem 0x37bf3000-0x37fefe1d] to [mem 0x377f6000-0x37bf2e1d]
[    0.000000] ACPI: RSDP 000f9320 00014 (v00 AOpen )
[    0.000000] ACPI: RSDT 7f7f3040 00038 (v01 AOpen  AWRDACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: FACP 7f7f30c0 00074 (v01 AOpen  AWRDACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: DSDT 7f7f3180 042E3 (v01 AOPEN  AWRDACPI 00001000 MSFT 0100000E)
[    0.000000] ACPI: FACS 7f7f0000 00040
[    0.000000] ACPI: MCFG 7f7f7580 0003C (v01 AOpen  AWRDACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: APIC 7f7f74c0 0005A (v01 AOpen  AWRDACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: SSDT 7f7f7600 001E0 (v01  PmRef  Cpu0Ist 00003000 INTL 20040311)
[    0.000000] ACPI: SSDT 7f7f7a00 000E0 (v01  PmRef    CpuPm 00003000 INTL 20040311)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 1147MB HIGHMEM available.
[    0.000000] 891MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 37bfe000
[    0.000000]   low ram: 0 - 37bfe000
[    0.000000] BRK [0x00da1000, 0x00da1fff] PGTABLE
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   Normal   [mem 0x01000000-0x37bfdfff]
[    0.000000]   HighMem  [mem 0x37bfe000-0x7f7effff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009efff]
[    0.000000]   node   0: [mem 0x00100000-0x7f7effff]
[    0.000000] On node 0 totalpages: 522126
[    0.000000] free_area_init_node: node 0, pgdat c07b64fc, node_mem_map f6806020
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   Normal zone: 1752 pages used for memmap
[    0.000000]   Normal zone: 224254 pages, LIFO batch:31
[    0.000000]   HighMem zone: 2296 pages used for memmap
[    0.000000]   HighMem zone: 293874 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] 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] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
[    0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[    0.000000] e820: [mem 0x7f800000-0xdfffffff] available for PCI devices
[    0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
[    0.000000] pcpu-alloc: [0] 0 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 520342
[    0.000000] Kernel command line: root=/dev/hda2 acpi_enforce_resources=lax sky2.legacy_pme=1 splash=verbose quiet edd=off 3 resume=/dev/hda1 drm.debug=0xe
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] Initializing HighMem for node 0 (00037bfe:0007f7f0)
[    0.000000] Memory: 2054132K/2088504K available (4329K kernel code, 394K rwdata, 2180K rodata, 484K init, 5492K bss, 34372K reserved, 1175496K highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfffa2000 - 0xfffff000   ( 372 kB)
[    0.000000]     pkmap   : 0xffc00000 - 0xffe00000   (2048 kB)
[    0.000000]     vmalloc : 0xf83fe000 - 0xffbfe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf7bfe000   ( 891 MB)
[    0.000000]       .init : 0xc07c0000 - 0xc0839000   ( 484 kB)
[    0.000000]       .data : 0xc053a81e - 0xc07bf940   (2580 kB)
[    0.000000]       .text : 0xc0100000 - 0xc053a81e   (4330 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] NR_IRQS:2304 nr_irqs:256 16
[    0.000000] CPU 0 irqstacks, hard=f6008000 soft=f600a000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[    0.000000] ... MAX_LOCKDEP_SUBCLASSES:  8
[    0.000000] ... MAX_LOCK_DEPTH:          48
[    0.000000] ... MAX_LOCKDEP_KEYS:        8191
[    0.000000] ... CLASSHASH_SIZE:          4096
[    0.000000] ... MAX_LOCKDEP_ENTRIES:     16384
[    0.000000] ... MAX_LOCKDEP_CHAINS:      32768
[    0.000000] ... CHAINHASH_SIZE:          16384
[    0.000000]  memory used by lock dependency info: 3567 kB
[    0.000000]  per task-struct memory footprint: 1152 bytes
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1200.084 MHz processor
[    0.008003] Calibrating delay loop (skipped), value calculated using timer frequency.. 2400.16 BogoMIPS (lpj=4800336)
[    0.008012] pid_max: default: 32768 minimum: 301
[    0.008120] Security Framework initialized
[    0.008141] AppArmor: AppArmor initialized
[    0.008179] Mount-cache hash table entries: 512
[    0.012136] Disabled fast string operations
[    0.012149] mce: CPU supports 5 MCE banks
[    0.012165] CPU0: Thermal monitoring enabled (TM1)
[    0.012192] Last level iTLB entries: 4KB 128, 2MB 0, 4MB 2
[    0.012192] Last level dTLB entries: 4KB 128, 2MB 0, 4MB 8
[    0.012192] tlb_flushall_shift: 6
[    0.012199] CPU: Intel(R) Pentium(R) M processor 1.20GHz (fam: 06, model: 0d, stepping: 08)
[    0.012277] ACPI: Core revision 20130517
[    0.026134] ACPI: All ACPI Tables successfully acquired
[    0.028029] ftrace: allocating 21948 entries in 43 pages
[    0.044913] Performance Events: p6 PMU driver.
[    0.044951] ... version:                0
[    0.044956] ... bit width:              32
[    0.044960] ... generic registers:      2
[    0.044965] ... value mask:             00000000ffffffff
[    0.044970] ... max period:             000000007fffffff
[    0.044974] ... fixed-purpose events:   0
[    0.044978] ... event mask:             0000000000000003
[    0.046623] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.047268] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.052231] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.088000] devtmpfs: initialized
[    0.088000] PM: Registering ACPI NVS region [mem 0x7f7f0000-0x7f7f2fff] (12288 bytes)
[    0.088000] NET: Registered protocol family 16
[    0.089345] ACPI: bus type PCI registered
[    0.089691] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.089700] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.089705] PCI: Using MMCONFIG for extended config space
[    0.089710] PCI: Using configuration type 1 for base access
[    0.096727] bio: create slab <bio-0> at 0
[    0.097149] ACPI: Added _OSI(Module Device)
[    0.097157] ACPI: Added _OSI(Processor Device)
[    0.097164] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.097171] ACPI: Added _OSI(Processor Aggregator Device)
[    0.103697] ACPI: EC: Look up EC in DSDT
[    0.123889] ACPI: Interpreter enabled
[    0.123928] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130517/hwxface-571)
[    0.124042] ACPI: (supports S0 S1 S3 S4 S5)
[    0.124048] ACPI: Using IOAPIC for interrupt routing
[    0.124161] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
[    0.156844] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.157364] acpi PNP0A08:00: host bridge window [io  0x0000-0x0cf7] (ignored)
[    0.157373] acpi PNP0A08:00: host bridge window [io  0x0d00-0xffff] (ignored)
[    0.157381] acpi PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
[    0.157388] acpi PNP0A08:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored)
[    0.157396] acpi PNP0A08:00: host bridge window [mem 0x7f800000-0xfebfffff] (ignored)
[    0.157403] PCI: root bus 00: using default resources
[    0.157775] PCI host bridge to bus 0000:00
[    0.157809] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.157817] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    0.157825] pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffff]
[    0.157992] pci 0000:00:00.0: [8086:2590] type 00 class 0x060000
[    0.158807] pci 0000:00:02.0: [8086:2592] type 00 class 0x030000
[    0.158839] pci 0000:00:02.0: reg 0x10: [mem 0xd2280000-0xd22fffff]
[    0.158859] pci 0000:00:02.0: reg 0x14: [io  0xe000-0xe007]
[    0.158878] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff pref]
[    0.158897] pci 0000:00:02.0: reg 0x1c: [mem 0xd2300000-0xd233ffff]
[    0.159410] pci 0000:00:02.1: [8086:2792] type 00 class 0x038000
[    0.159438] pci 0000:00:02.1: reg 0x10: [mem 0xd2200000-0xd227ffff]
[    0.160085] pci 0000:00:1b.0: [8086:2668] type 00 class 0x040300
[    0.160129] pci 0000:00:1b.0: reg 0x10: [mem 0xd2340000-0xd2343fff 64bit]
[    0.160317] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.160775] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.161157] pci 0000:00:1c.0: [8086:2660] type 01 class 0x060400
[    0.161356] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.161502] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.161694] pci 0000:00:1c.1: [8086:2662] type 01 class 0x060400
[    0.161891] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.162043] pci 0000:00:1c.1: System wakeup disabled by ACPI
[    0.162232] pci 0000:00:1c.2: [8086:2664] type 01 class 0x060400
[    0.162429] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.162594] pci 0000:00:1c.2: System wakeup disabled by ACPI
[    0.162802] pci 0000:00:1c.3: [8086:2666] type 01 class 0x060400
[    0.162999] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.163179] pci 0000:00:1c.3: System wakeup disabled by ACPI
[    0.163370] pci 0000:00:1d.0: [8086:2658] type 00 class 0x0c0300
[    0.163471] pci 0000:00:1d.0: reg 0x20: [io  0xe100-0xe11f]
[    0.163683] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.163860] pci 0000:00:1d.1: [8086:2659] type 00 class 0x0c0300
[    0.163962] pci 0000:00:1d.1: reg 0x20: [io  0xe200-0xe21f]
[    0.164200] pci 0000:00:1d.1: System wakeup disabled by ACPI
[    0.164371] pci 0000:00:1d.2: [8086:265a] type 00 class 0x0c0300
[    0.164473] pci 0000:00:1d.2: reg 0x20: [io  0xe300-0xe31f]
[    0.164713] pci 0000:00:1d.2: System wakeup disabled by ACPI
[    0.164887] pci 0000:00:1d.3: [8086:265b] type 00 class 0x0c0300
[    0.164988] pci 0000:00:1d.3: reg 0x20: [io  0xe400-0xe41f]
[    0.165236] pci 0000:00:1d.3: System wakeup disabled by ACPI
[    0.165427] pci 0000:00:1d.7: [8086:265c] type 00 class 0x0c0320
[    0.165468] pci 0000:00:1d.7: reg 0x10: [mem 0xd2344000-0xd23443ff]
[    0.165640] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.165855] pci 0000:00:1d.7: System wakeup disabled by ACPI
[    0.166042] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
[    0.166344] pci 0000:00:1e.0: System wakeup disabled by ACPI
[    0.166522] pci 0000:00:1f.0: [8086:2641] type 00 class 0x060100
[    0.166734] pci 0000:00:1f.0: Force enabled HPET at 0xfed00000
[    0.166752] pci 0000:00:1f.0: quirk: [io  0x4000-0x407f] claimed by ICH6 ACPI/GPIO/TCO
[    0.166766] pci 0000:00:1f.0: quirk: [io  0x4080-0x40bf] claimed by ICH6 GPIO
[    0.166777] pci 0000:00:1f.0: LPC Generic IO decode 1 PIO at 0280-02ff
[    0.166787] pci 0000:00:1f.0: LPC Generic IO decode 2 PIO at 1640-164f
[    0.167067] pci 0000:00:1f.1: [8086:266f] type 00 class 0x01018a
[    0.167100] pci 0000:00:1f.1: reg 0x10: [io  0x0000-0x0007]
[    0.167124] pci 0000:00:1f.1: reg 0x14: [io  0x0000-0x0003]
[    0.167148] pci 0000:00:1f.1: reg 0x18: [io  0x0000-0x0007]
[    0.167173] pci 0000:00:1f.1: reg 0x1c: [io  0x0000-0x0003]
[    0.167197] pci 0000:00:1f.1: reg 0x20: [io  0xf000-0xf00f]
[    0.167593] pci 0000:00:1f.2: [8086:2653] type 00 class 0x01018f
[    0.167633] pci 0000:00:1f.2: reg 0x10: [io  0xe500-0xe507]
[    0.167658] pci 0000:00:1f.2: reg 0x14: [io  0xe600-0xe603]
[    0.167682] pci 0000:00:1f.2: reg 0x18: [io  0xe700-0xe707]
[    0.167706] pci 0000:00:1f.2: reg 0x1c: [io  0xe800-0xe803]
[    0.167731] pci 0000:00:1f.2: reg 0x20: [io  0xe900-0xe90f]
[    0.167755] pci 0000:00:1f.2: reg 0x24: [mem 0xd2345000-0xd23453ff]
[    0.167843] pci 0000:00:1f.2: PME# supported from D3hot
[    0.168239] pci 0000:00:1f.3: [8086:266a] type 00 class 0x0c0500
[    0.168358] pci 0000:00:1f.3: reg 0x20: [io  0x5000-0x501f]
[    0.168958] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.168976] pci 0000:00:1c.0:   bridge window [mem 0x00000000-0x000fffff]
[    0.168993] pci 0000:00:1c.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    0.169274] pci 0000:02:00.0: [11ab:4362] type 00 class 0x020000
[    0.169334] pci 0000:02:00.0: reg 0x10: [mem 0xd2120000-0xd2123fff 64bit]
[    0.169366] pci 0000:02:00.0: reg 0x18: [io  0xc000-0xc0ff]
[    0.169473] pci 0000:02:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
[    0.169641] pci 0000:02:00.0: supports D1 D2
[    0.169648] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.169845] pci 0000:02:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    0.170072] pci 0000:00:1c.1: PCI bridge to [bus 02]
[    0.170085] pci 0000:00:1c.1:   bridge window [io  0xc000-0xcfff]
[    0.170097] pci 0000:00:1c.1:   bridge window [mem 0xd2100000-0xd21fffff]
[    0.170355] pci 0000:03:00.0: [11ab:4362] type 00 class 0x020000
[    0.170414] pci 0000:03:00.0: reg 0x10: [mem 0xd2020000-0xd2023fff 64bit]
[    0.170446] pci 0000:03:00.0: reg 0x18: [io  0xd000-0xd0ff]
[    0.170552] pci 0000:03:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
[    0.170720] pci 0000:03:00.0: supports D1 D2
[    0.170727] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.170928] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    0.170955] pci 0000:00:1c.2: PCI bridge to [bus 03]
[    0.170967] pci 0000:00:1c.2:   bridge window [io  0xd000-0xdfff]
[    0.170979] pci 0000:00:1c.2:   bridge window [mem 0xd2000000-0xd20fffff]
[    0.171182] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.171200] pci 0000:00:1c.3:   bridge window [mem 0x00000000-0x000fffff]
[    0.171217] pci 0000:00:1c.3:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    0.171402] pci 0000:05:03.0: [11c1:5811] type 00 class 0x0c0010
[    0.171445] pci 0000:05:03.0: reg 0x10: [mem 0xd1000000-0xd1000fff]
[    0.171633] pci 0000:05:03.0: supports D1 D2
[    0.171640] pci 0000:05:03.0: PME# supported from D0 D1 D2 D3hot
[    0.171843] pci 0000:05:04.0: [10ee:3fc3] type 00 class 0x040100
[    0.171880] pci 0000:05:04.0: reg 0x10: [mem 0xd0000000-0xd0ffffff]
[    0.172257] pci 0000:00:1e.0: PCI bridge to [bus 05] (subtractive decode)
[    0.172275] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xd1ffffff]
[    0.172292] pci 0000:00:1e.0:   bridge window [io  0x0000-0xffff] (subtractive decode)
[    0.172300] pci 0000:00:1e.0:   bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
[    0.172362] pci_bus 0000:00: on NUMA node 0
[    0.172374] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
[    0.172382] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
[    0.176085] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 *5 7 9 10 11 12 14 15)
[    0.176482] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 *10 11 12 14 15)
[    0.176876] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 11 *12 14 15)
[    0.177269] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12 14 15)
[    0.177661] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 *9 10 11 12 14 15)
[    0.178052] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
[    0.178446] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
[    0.178843] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 7 9 10 *11 12 14 15)
[    0.180138] ACPI: \_SB_.PCI0: notify handler is installed
[    0.180405] Found 1 acpi root devices
[    0.181466] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.181496] vgaarb: loaded
[    0.181501] vgaarb: bridge control possible 0000:00:02.0
[    0.181824] SCSI subsystem initialized
[    0.182027] libata version 3.00 loaded.
[    0.182055] ACPI: bus type USB registered
[    0.182143] usbcore: registered new interface driver usbfs
[    0.182189] usbcore: registered new interface driver hub
[    0.182274] usbcore: registered new device driver usb
[    0.182398] PCI: Using ACPI for IRQ routing
[    0.197292] PCI: pci_cache_line_size set to 64 bytes
[    0.197442] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]
[    0.197469] e820: reserve RAM buffer [mem 0x7f7f0000-0x7fffffff]
[    0.199186] hpet clockevent registered
[    0.199196] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.199207] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.199220] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.201430] Switched to clocksource hpet
[    0.228445] AppArmor: AppArmor Filesystem Enabled
[    0.228533] pnp: PnP ACPI init
[    0.228635] ACPI: bus type PNP registered
[    0.229411] system 00:00: [io  0x0b78-0x0b7b] has been reserved
[    0.229423] system 00:00: [io  0x0f78-0x0f7b] has been reserved
[    0.229432] system 00:00: [io  0x0a78-0x0a7b] has been reserved
[    0.229442] system 00:00: [io  0x0e78-0x0e7b] has been reserved
[    0.229451] system 00:00: [io  0x0bbc-0x0bbf] has been reserved
[    0.229496] system 00:00: [io  0x0fbc-0x0fbf] has been reserved
[    0.229505] system 00:00: [io  0x04d0-0x04d1] has been reserved
[    0.229514] system 00:00: [io  0x0290-0x0297] has been reserved
[    0.229524] system 00:00: [io  0x0880-0x088f] has been reserved
[    0.229764] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.229825] pnp 00:01: [dma 4]
[    0.229935] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.230108] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.230250] pnp 00:03: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.230403] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.231528] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.232462] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.233848] pnp 00:07: Plug and Play ACPI device, IDs PNP0400 (active)
[    0.234516] system 00:08: [io  0x4000-0x40bf] could not be reserved
[    0.234532] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.234724] pnp 00:09: Plug and Play ACPI device, IDs INT0800 (active)
[    0.235956] system 00:0a: [mem 0xe0000000-0xefffffff] has been reserved
[    0.235971] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.236919] system 00:0b: [mem 0x000d0000-0x000d3fff] has been reserved
[    0.236930] system 00:0b: [mem 0x000db800-0x000dbfff] has been reserved
[    0.236941] system 00:0b: [mem 0x000f0000-0x000fbfff] could not be reserved
[    0.236951] system 00:0b: [mem 0x000fc000-0x000fffff] could not be reserved
[    0.236962] system 00:0b: [mem 0x7f7f0000-0x7f7fffff] could not be reserved
[    0.236972] system 00:0b: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.236982] system 00:0b: [mem 0x00100000-0x7f7effff] could not be reserved
[    0.236993] system 00:0b: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.237003] system 00:0b: [mem 0xfed13000-0xfed1dfff] has been reserved
[    0.237012] system 00:0b: [mem 0xfed20000-0xfed8ffff] has been reserved
[    0.237022] system 00:0b: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.237032] system 00:0b: [mem 0xffb00000-0xffb7ffff] has been reserved
[    0.237041] system 00:0b: [mem 0xfff00000-0xffffffff] has been reserved
[    0.237051] system 00:0b: [mem 0x000e0000-0x000effff] has been reserved
[    0.237065] system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.237105] pnp: PnP ACPI: found 12 devices
[    0.237110] ACPI: bus type PNP unregistered
[    0.280545] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    0.280559] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000
[    0.280569] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000
[    0.280596] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x001fffff pref] to [bus 02] add_size 200000
[    0.280621] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x001fffff pref] to [bus 03] add_size 200000
[    0.280645] pci 0000:00:1c.3: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    0.280654] pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000
[    0.280663] pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff] to [bus 04] add_size 200000
[    0.280708] pci 0000:00:1c.0: res[8]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
[    0.280717] pci 0000:00:1c.0: res[9]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.280725] pci 0000:00:1c.1: res[9]=[mem 0x00100000-0x001fffff pref] get_res_add_size add_size 200000
[    0.280733] pci 0000:00:1c.2: res[9]=[mem 0x00100000-0x001fffff pref] get_res_add_size add_size 200000
[    0.280741] pci 0000:00:1c.3: res[8]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
[    0.280749] pci 0000:00:1c.3: res[9]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.280757] pci 0000:00:1c.0: res[7]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    0.280765] pci 0000:00:1c.3: res[7]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    0.280781] pci 0000:00:1c.0: BAR 8: assigned [mem 0x80000000-0x801fffff]
[    0.280792] pci 0000:00:1c.0: BAR 9: assigned [mem 0x80200000-0x803fffff 64bit pref]
[    0.280802] pci 0000:00:1c.1: BAR 9: assigned [mem 0x80400000-0x806fffff pref]
[    0.280812] pci 0000:00:1c.2: BAR 9: assigned [mem 0x80700000-0x809fffff pref]
[    0.280822] pci 0000:00:1c.3: BAR 8: assigned [mem 0x80a00000-0x80bfffff]
[    0.280833] pci 0000:00:1c.3: BAR 9: assigned [mem 0x80c00000-0x80dfffff 64bit pref]
[    0.280844] pci 0000:00:1c.0: BAR 7: assigned [io  0x1000-0x1fff]
[    0.280855] pci 0000:00:1c.3: BAR 7: assigned [io  0x2000-0x2fff]
[    0.280870] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.280881] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
[    0.280895] pci 0000:00:1c.0:   bridge window [mem 0x80000000-0x801fffff]
[    0.280908] pci 0000:00:1c.0:   bridge window [mem 0x80200000-0x803fffff 64bit pref]
[    0.280927] pci 0000:02:00.0: BAR 6: assigned [mem 0x80400000-0x8041ffff pref]
[    0.280935] pci 0000:00:1c.1: PCI bridge to [bus 02]
[    0.280945] pci 0000:00:1c.1:   bridge window [io  0xc000-0xcfff]
[    0.280959] pci 0000:00:1c.1:   bridge window [mem 0xd2100000-0xd21fffff]
[    0.280971] pci 0000:00:1c.1:   bridge window [mem 0x80400000-0x806fffff pref]
[    0.280990] pci 0000:03:00.0: BAR 6: assigned [mem 0x80700000-0x8071ffff pref]
[    0.280997] pci 0000:00:1c.2: PCI bridge to [bus 03]
[    0.281006] pci 0000:00:1c.2:   bridge window [io  0xd000-0xdfff]
[    0.281021] pci 0000:00:1c.2:   bridge window [mem 0xd2000000-0xd20fffff]
[    0.281033] pci 0000:00:1c.2:   bridge window [mem 0x80700000-0x809fffff pref]
[    0.281049] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.281058] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
[    0.281072] pci 0000:00:1c.3:   bridge window [mem 0x80a00000-0x80bfffff]
[    0.281085] pci 0000:00:1c.3:   bridge window [mem 0x80c00000-0x80dfffff 64bit pref]
[    0.281102] pci 0000:00:1e.0: PCI bridge to [bus 05]
[    0.281116] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xd1ffffff]
[    0.281144] pci 0000:00:1c.0: enabling device (0100 -> 0103)
[    0.282431] pci 0000:00:1c.3: enabling device (0100 -> 0103)
[    0.282856] pci 0000:00:1e.0: setting latency timer to 64
[    0.282868] pci_bus 0000:00: resource 4 [io  0x0000-0xffff]
[    0.282876] pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffff]
[    0.282883] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    0.282891] pci_bus 0000:01: resource 1 [mem 0x80000000-0x801fffff]
[    0.282898] pci_bus 0000:01: resource 2 [mem 0x80200000-0x803fffff 64bit pref]
[    0.282906] pci_bus 0000:02: resource 0 [io  0xc000-0xcfff]
[    0.282913] pci_bus 0000:02: resource 1 [mem 0xd2100000-0xd21fffff]
[    0.282920] pci_bus 0000:02: resource 2 [mem 0x80400000-0x806fffff pref]
[    0.282928] pci_bus 0000:03: resource 0 [io  0xd000-0xdfff]
[    0.282935] pci_bus 0000:03: resource 1 [mem 0xd2000000-0xd20fffff]
[    0.282942] pci_bus 0000:03: resource 2 [mem 0x80700000-0x809fffff pref]
[    0.282950] pci_bus 0000:04: resource 0 [io  0x2000-0x2fff]
[    0.282957] pci_bus 0000:04: resource 1 [mem 0x80a00000-0x80bfffff]
[    0.282965] pci_bus 0000:04: resource 2 [mem 0x80c00000-0x80dfffff 64bit pref]
[    0.282972] pci_bus 0000:05: resource 1 [mem 0xd0000000-0xd1ffffff]
[    0.282979] pci_bus 0000:05: resource 4 [io  0x0000-0xffff]
[    0.282986] pci_bus 0000:05: resource 5 [mem 0x00000000-0xffffffff]
[    0.283104] NET: Registered protocol family 2
[    0.284197] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
[    0.284359] TCP bind hash table entries: 8192 (order: 6, 294912 bytes)
[    0.285995] TCP: Hash tables configured (established 8192 bind 8192)
[    0.286131] TCP: reno registered
[    0.286143] UDP hash table entries: 512 (order: 3, 40960 bytes)
[    0.286362] UDP-Lite hash table entries: 512 (order: 3, 40960 bytes)
[    0.287052] NET: Registered protocol family 1
[    0.287094] pci 0000:00:02.0: Boot video device
[    1.888032] pci 0000:00:1d.7: EHCI: BIOS handoff failed (BIOS bug?) 01010001
[    1.888503] PCI: CLS 32 bytes, default 64
[    1.889026] Unpacking initramfs...
[    2.132599] Freeing initrd memory: 4084K (f77f6000 - f7bf3000)
[    2.133512] microcode: CPU0 sig=0x6d8, pf=0x20, revision=0x20
[    2.133793] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    2.134873] audit: initializing netlink socket (disabled)
[    2.134999] type=2000 audit(1373559014.132:1): initialized
[    2.192475] bounce pool size: 64 pages
[    2.192492] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    2.192768] VFS: Disk quotas dquot_6.5.2
[    2.192800] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    2.193468] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    2.193999] fuse init (API version 7.22)
[    2.194159] msgmni has been set to 1724
[    2.209713] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    2.209770] io scheduler noop registered
[    2.209777] io scheduler deadline registered
[    2.209794] io scheduler cfq registered (default)
[    2.210499] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
[    2.210952] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
[    2.211194] pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X
[    2.211434] pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X
[    2.212261] intel_idle: does not run on family 6 model 13
[    2.212623] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[    2.212762] ACPI: Power Button [PWRB]
[    2.213040] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    2.213052] ACPI: Power Button [PWRF]
[    2.213485] ACPI: Fan [FAN] (on)
[    2.213801] ACPI: Requesting acpi_cpufreq
[    2.214439] ACPI: AOpen i915GMm-HFS detected: disabling all active thermal trip points
[    2.214446] ACPI: AOpen i915GMm-HFS detected: disabling all passive thermal trip points
[    2.214451] ACPI: AOpen i915GMm-HFS detected: enabling thermal zone polling
[    2.219603] thermal LNXTHERM:00: registered as thermal_zone0
[    2.219611] ACPI: Thermal Zone [THRM] (47 C)
[    2.220197] Serial: 8250/16550 driver, 8 ports, IRQ sharing enabled
[    2.241770] 00:05: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    2.263156] 00:06: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    2.268543] lp: driver loaded but no devices found
[    2.268942] Non-volatile memory driver v1.3
[    2.268948] Linux agpgart interface v0.103
[    2.269121] agpgart-intel 0000:00:00.0: Intel 915GM Chipset
[    2.269288] agpgart-intel 0000:00:00.0: detected gtt size: 262144K total, 262144K mappable
[    2.270036] agpgart-intel 0000:00:00.0: detected 8192K stolen memory
[    2.270479] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000
[    2.270625] [drm] Initialized drm 1.1.0 20060810
[    2.274088] [drm:i915_dump_device_info], i915 device info: gen=3, pciid=0x2592 flags=is_mobile,cursor_needs_physical,has_overlay,overlay_needs_physical,supports_tv,
[    2.274259] [drm] Memory usable by graphics device = 256M
[    2.274264] [drm:i915_gem_gtt_init], GMADR size = 256M
[    2.274271] [drm:i915_gem_gtt_init], GTT stolen size = 8M
[    2.274407] i915 0000:00:02.0: setting latency timer to 64
[    2.275249] [drm:intel_detect_pch], No PCH found?
[    2.276299] [drm:intel_opregion_setup], graphic opregion physical addr: 0x0
[    2.276307] [drm:intel_opregion_setup], ACPI OpRegion not supported!
[    2.276399] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    2.276405] [drm] Driver supports precise vblank timestamp query.
[    2.276411] [drm:init_vbt_defaults], Set default to SSC at 100MHz
[    2.276934] [drm:parse_general_features], BDB_GENERAL_FEATURES int_tv_support 1 int_crt_support 0 lvds_use_ssc 0 lvds_ssc_freq 96 display_clock_mode 0 fdi_rx_polarity_inverted 0
[    2.276946] [drm:parse_general_definitions], crt_ddc_bus_pin: 2
[    2.276991] [drm:parse_lfp_panel_data], Found panel mode in BIOS VBT tables:
[    2.276997] [drm:drm_mode_debug_printmodeline], Modeline 0:"1024x768" 0 65000 1024 1048 1184 1344 768 771 777 806 0x8 0xa
[    2.277029] [drm:parse_lfp_panel_data], VBT initial LVDS value 40000300
[    2.277057] [drm:parse_sdvo_panel_data], Found SDVO panel mode in BIOS VBT tables:
[    2.277063] [drm:drm_mode_debug_printmodeline], Modeline 0:"1024x768" 0 65000 1024 1048 1184 1344 768 771 777 806 0x8 0xa
[    2.277077] [drm:parse_sdvo_device_mapping], the SDVO device with slave addr 70 is found on SDVOB port
[    2.277086] [drm:parse_sdvo_device_mapping], SDVO device: dvo=1, addr=70, wiring=1, ddc_pin=29, i2c_pin=5
[    2.277095] [drm:parse_sdvo_device_mapping], the SDVO device with slave addr 72 is found on SDVOC port
[    2.277103] [drm:parse_sdvo_device_mapping], SDVO device: dvo=2, addr=72, wiring=0, ddc_pin=29, i2c_pin=5
[    2.277577] [drm:intel_modeset_init], 2 display pipes available.
[    2.277715] [drm:intel_crtc_init], swapping pipes & planes for FBC
[    2.277722] [drm:intel_modeset_init], pipe A sprite A init failed: -19
[    2.277768] [drm:intel_crtc_init], swapping pipes & planes for FBC
[    2.277774] [drm:intel_modeset_init], pipe B sprite B init failed: -19
[    2.277781] [drm:intel_shared_dpll_init], 0 shared PLLs initialized
[    2.277800] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    2.278168] [drm] Skipping LVDS initialization for AOpen i915GMm-HFS
[    2.278301] [drm:intel_setup_outputs], probing SDVOB
[    2.278309] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus dpb. force bit now 1
[    2.340496] [drm:intel_sdvo_debug_write], SDVOB: W: 02                         (SDVO_CMD_GET_DEVICE_CAPS)
[    2.342173] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 02 3C 06 01 01 01 01 00
[    2.350899] [drm:intel_sdvo_get_capabilities], SDVO capabilities:
[    2.350899]   vendor_id: 2
[    2.350899]   device_id: 60
[    2.350899]   device_rev_id: 6
[    2.350899]   sdvo_version_major: 1
[    2.350899]   sdvo_version_minor: 1
[    2.350899]   sdvo_inputs_mask: 1
[    2.350899]   smooth_scaling: 0
[    2.350899]   sharp_scaling: 0
[    2.350899]   up_scaling: 0
[    2.350899]   down_scaling: 0
[    2.350899]   stall_support: 0
[    2.350899]   output_flags: 1
[    2.350918] [drm:intel_sdvo_debug_write], SDVOB: W: 0C                         (SDVO_CMD_GET_HOT_PLUG_SUPPORT)
[    2.352605] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 01 00
[    2.355510] [drm:intel_sdvo_debug_write], SDVOB: W: 0D 01 00                   (SDVO_CMD_SET_ACTIVE_HOT_PLUG)
[    2.358576] [drm:intel_sdvo_debug_write], SDVOB: W: 9D                         (SDVO_CMD_GET_SUPP_ENCODE)
[    2.360262] [drm:intel_sdvo_read_response], SDVOB: R: (Not supported)... failed
[    2.361348] [drm:intel_sdvo_debug_write], SDVOB: W: 10 00                      (SDVO_CMD_SET_TARGET_INPUT)
[    2.363705] [drm:intel_sdvo_read_response], SDVOB: R: (Success)
[    2.364696] [drm:intel_sdvo_debug_write], SDVOB: W: 1D                         (SDVO_CMD_GET_INPUT_PIXEL_CLOCK_RANGE)
[    2.366371] [drm:intel_sdvo_read_response], SDVOB: R: (Success) C4 09 20 4E
[    2.371217] [drm:intel_sdvo_init], SDVOB device VID/DID: 02:3C.06, clock range 25MHz - 200MHz, input 1: Y, input 2: N, output 1: Y, output 2: N
[    2.371227] [drm:intel_setup_outputs], probing SDVOC
[    2.371238] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus dpb. force bit now 2
[    2.433220] [drm:intel_sdvo_debug_write], SDVOC: W: 02                         (SDVO_CMD_GET_DEVICE_CAPS)
[    2.434895] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 02 C2 01 01 01 3D 3E 00
[    2.443612] [drm:intel_sdvo_get_capabilities], SDVO capabilities:
[    2.443612]   vendor_id: 2
[    2.443612]   device_id: 194
[    2.443612]   device_rev_id: 1
[    2.443612]   sdvo_version_major: 1
[    2.443612]   sdvo_version_minor: 1
[    2.443612]   sdvo_inputs_mask: 1
[    2.443612]   smooth_scaling: 1
[    2.443612]   sharp_scaling: 1
[    2.443612]   up_scaling: 1
[    2.443612]   down_scaling: 1
[    2.443612]   stall_support: 0
[    2.443612]   output_flags: 62
[    2.443745] [drm:intel_sdvo_debug_write], SDVOC: W: 11 08 00                   (SDVO_CMD_SET_TARGET_OUTPUT)
[    2.446808] [drm:intel_sdvo_read_response], SDVOC: R: (Success)
[    2.447783] [drm:intel_sdvo_debug_write], SDVOC: W: 27                         (SDVO_CMD_GET_SUPPORTED_TV_FORMATS)
[    2.449474] [drm:intel_sdvo_read_response], SDVOC: R: (Success) FF FF FF FF FF 1F
[    2.456323] [drm:intel_sdvo_debug_write], SDVOC: W: 84                         (SDVO_CMD_GET_SUPPORTED_ENHANCEMENTS)
[    2.457996] [drm:intel_sdvo_read_response], SDVOC: R: (Success) FA DF
[    2.460911] [drm:intel_sdvo_debug_write], SDVOC: W: 61                         (SDVO_CMD_GET_MAX_OVERSCAN_H)
[    2.462583] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 2F 00 20 00
[    2.467432] [drm:intel_sdvo_debug_write], SDVOC: W: 62                         (SDVO_CMD_GET_OVERSCAN_H)
[    2.469119] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 20 00
[    2.472038] [drm:intel_sdvo_create_enhance_property_tv], h_overscan: max 47, default 32, current 32
[    2.472047] [drm:intel_sdvo_debug_write], SDVOC: W: 64                         (SDVO_CMD_GET_MAX_OVERSCAN_V)
[    2.473718] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 2F 00 20 00
[    2.478563] [drm:intel_sdvo_debug_write], SDVOC: W: 65                         (SDVO_CMD_GET_OVERSCAN_V)
[    2.480244] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 20 00
[    2.483154] [drm:intel_sdvo_create_enhance_property_tv], v_overscan: max 47, default 32, current 32
[    2.483162] [drm:intel_sdvo_debug_write], SDVOC: W: 67                         (SDVO_CMD_GET_MAX_HPOS)
[    2.484845] [drm:intel_sdvo_read_response], SDVOC: R: (Success) FF 03 00 02
[    2.489694] [drm:intel_sdvo_debug_write], SDVOC: W: 68                         (SDVO_CMD_GET_HPOS)
[    2.491366] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 02
[    2.494278] [drm:intel_sdvo_create_enhance_property_tv], hpos: max 1023, default 512, current 512
[    2.494286] [drm:intel_sdvo_debug_write], SDVOC: W: 6A                         (SDVO_CMD_GET_MAX_VPOS)
[    2.495958] [drm:intel_sdvo_read_response], SDVOC: R: (Success) FF 03 00 02
[    2.500814] [drm:intel_sdvo_debug_write], SDVOC: W: 6B                         (SDVO_CMD_GET_VPOS)
[    2.502486] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 02
[    2.505408] [drm:intel_sdvo_create_enhance_property_tv], vpos: max 1023, default 512, current 512
[    2.505416] [drm:intel_sdvo_debug_write], SDVOC: W: 55                         (SDVO_CMD_GET_MAX_SATURATION)
[    2.507088] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 7F 00 45 00
[    2.511934] [drm:intel_sdvo_debug_write], SDVOC: W: 56                         (SDVO_CMD_GET_SATURATION)
[    2.513613] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 45 00
[    2.516527] [drm:intel_sdvo_create_enhance_property_tv], saturation: max 127, default 69, current 69
[    2.516536] [drm:intel_sdvo_debug_write], SDVOC: W: 5E                         (SDVO_CMD_GET_MAX_CONTRAST)
[    2.518208] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 7F 00 40 00
[    2.523057] [drm:intel_sdvo_debug_write], SDVOC: W: 5F                         (SDVO_CMD_GET_CONTRAST)
[    2.524737] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 40 00
[    2.527644] [drm:intel_sdvo_create_enhance_property_tv], contrast: max 127, default 64, current 64
[    2.527653] [drm:intel_sdvo_debug_write], SDVOC: W: 58                         (SDVO_CMD_GET_MAX_HUE)
[    2.529337] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 7F 00 40 00
[    2.534178] [drm:intel_sdvo_debug_write], SDVOC: W: 59                         (SDVO_CMD_GET_HUE)
[    2.535850] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 40 00
[    2.538771] [drm:intel_sdvo_create_enhance_property_tv], hue: max 127, default 64, current 64
[    2.538780] [drm:intel_sdvo_debug_write], SDVOC: W: 6D                         (SDVO_CMD_GET_MAX_SHARPNESS)
[    2.540460] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 07 00 04 00
[    2.545310] [drm:intel_sdvo_debug_write], SDVOC: W: 6E                         (SDVO_CMD_GET_SHARPNESS)
[    2.546982] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 04 00
[    2.549901] [drm:intel_sdvo_create_enhance_property_tv], sharpness: max 7, default 4, current 4
[    2.549910] [drm:intel_sdvo_debug_write], SDVOC: W: 5B                         (SDVO_CMD_GET_MAX_BRIGHTNESS)
[    2.551581] [drm:intel_sdvo_read_response], SDVOC: R: (Success) FF 00 80 00
[    2.556441] [drm:intel_sdvo_debug_write], SDVOC: W: 5C                         (SDVO_CMD_GET_BRIGHTNESS)
[    2.558113] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 80 00
[    2.561035] [drm:intel_sdvo_create_enhance_property_tv], brightness: max 255, default 128, current 128
[    2.561044] [drm:intel_sdvo_debug_write], SDVOC: W: 7B                         (SDVO_CMD_GET_MAX_FLICKER_FILTER_ADAPTIVE)
[    2.562716] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 07 00 07 00
[    2.567564] [drm:intel_sdvo_debug_write], SDVOC: W: 50                         (SDVO_CMD_GET_FLICKER_FILTER_ADAPTIVE)
[    2.569247] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 07 00
[    2.572167] [drm:intel_sdvo_create_enhance_property_tv], flicker_filter_adaptive: max 7, default 7, current 7
[    2.572176] [drm:intel_sdvo_debug_write], SDVOC: W: 74                         (SDVO_CMD_GET_MAX_TV_CHROMA_FILTER)
[    2.573847] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 03 00 01 00
[    2.578696] [drm:intel_sdvo_debug_write], SDVOC: W: 75                         (SDVO_CMD_GET_TV_CHROMA_FILTER)
[    2.580383] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 01 00
[    2.583294] [drm:intel_sdvo_create_enhance_property_tv], tv_chroma_filter: max 3, default 1, current 1
[    2.583303] [drm:intel_sdvo_debug_write], SDVOC: W: 77                         (SDVO_CMD_GET_MAX_TV_LUMA_FILTER)
[    2.584989] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 02 00 00 00
[    2.589838] [drm:intel_sdvo_debug_write], SDVOC: W: 78                         (SDVO_CMD_GET_TV_LUMA_FILTER)
[    2.591510] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    2.594422] [drm:intel_sdvo_create_enhance_property_tv], tv_luma_filter: max 2, default 0, current 0
[    2.594430] [drm:intel_sdvo_debug_write], SDVOC: W: 70                         (SDVO_CMD_GET_DOT_CRAWL)
[    2.596112] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    2.599020] [drm:intel_sdvo_create_enhance_property_tv], dot crawl: current 0
[    2.599146] [drm:intel_sdvo_debug_write], SDVOC: W: 11 04 00                   (SDVO_CMD_SET_TARGET_OUTPUT)
[    2.602206] [drm:intel_sdvo_read_response], SDVOC: R: (Success)
[    2.603182] [drm:intel_sdvo_debug_write], SDVOC: W: 27                         (SDVO_CMD_GET_SUPPORTED_TV_FORMATS)
[    2.604871] [drm:intel_sdvo_read_response], SDVOC: R: (Success) FF FF FF FF FF 1F
[    2.611677] [drm:intel_sdvo_debug_write], SDVOC: W: 84                         (SDVO_CMD_GET_SUPPORTED_ENHANCEMENTS)
[    2.613361] [drm:intel_sdvo_read_response], SDVOC: R: (Success) FA DF
[    2.616273] [drm:intel_sdvo_debug_write], SDVOC: W: 61                         (SDVO_CMD_GET_MAX_OVERSCAN_H)
[    2.617945] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 2F 00 20 00
[    2.622792] [drm:intel_sdvo_debug_write], SDVOC: W: 62                         (SDVO_CMD_GET_OVERSCAN_H)
[    2.624478] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 20 00
[    2.627388] [drm:intel_sdvo_create_enhance_property_tv], h_overscan: max 47, default 32, current 32
[    2.627397] [drm:intel_sdvo_debug_write], SDVOC: W: 64                         (SDVO_CMD_GET_MAX_OVERSCAN_V)
[    2.629078] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 2F 00 20 00
[    2.633923] [drm:intel_sdvo_debug_write], SDVOC: W: 65                         (SDVO_CMD_GET_OVERSCAN_V)
[    2.635595] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 20 00
[    2.638519] [drm:intel_sdvo_create_enhance_property_tv], v_overscan: max 47, default 32, current 32
[    2.638528] [drm:intel_sdvo_debug_write], SDVOC: W: 67                         (SDVO_CMD_GET_MAX_HPOS)
[    2.640208] [drm:intel_sdvo_read_response], SDVOC: R: (Success) FF 03 00 02
[    2.645058] [drm:intel_sdvo_debug_write], SDVOC: W: 68                         (SDVO_CMD_GET_HPOS)
[    2.646729] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 02
[    2.649648] [drm:intel_sdvo_create_enhance_property_tv], hpos: max 1023, default 512, current 512
[    2.649656] [drm:intel_sdvo_debug_write], SDVOC: W: 6A                         (SDVO_CMD_GET_MAX_VPOS)
[    2.651328] [drm:intel_sdvo_read_response], SDVOC: R: (Success) FF 03 00 02
[    2.656188] [drm:intel_sdvo_debug_write], SDVOC: W: 6B                         (SDVO_CMD_GET_VPOS)
[    2.657860] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 02
[    2.660780] [drm:intel_sdvo_create_enhance_property_tv], vpos: max 1023, default 512, current 512
[    2.660789] [drm:intel_sdvo_debug_write], SDVOC: W: 55                         (SDVO_CMD_GET_MAX_SATURATION)
[    2.662461] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 7F 00 45 00
[    2.667306] [drm:intel_sdvo_debug_write], SDVOC: W: 56                         (SDVO_CMD_GET_SATURATION)
[    2.668988] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 45 00
[    2.671896] [drm:intel_sdvo_create_enhance_property_tv], saturation: max 127, default 69, current 69
[    2.671904] [drm:intel_sdvo_debug_write], SDVOC: W: 5E                         (SDVO_CMD_GET_MAX_CONTRAST)
[    2.673589] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 7F 00 40 00
[    2.678430] [drm:intel_sdvo_debug_write], SDVOC: W: 5F                         (SDVO_CMD_GET_CONTRAST)
[    2.680112] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 40 00
[    2.683019] [drm:intel_sdvo_create_enhance_property_tv], contrast: max 127, default 64, current 64
[    2.683028] [drm:intel_sdvo_debug_write], SDVOC: W: 58                         (SDVO_CMD_GET_MAX_HUE)
[    2.684712] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 7F 00 40 00
[    2.689562] [drm:intel_sdvo_debug_write], SDVOC: W: 59                         (SDVO_CMD_GET_HUE)
[    2.691233] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 40 00
[    2.694155] [drm:intel_sdvo_create_enhance_property_tv], hue: max 127, default 64, current 64
[    2.694164] [drm:intel_sdvo_debug_write], SDVOC: W: 6D                         (SDVO_CMD_GET_MAX_SHARPNESS)
[    2.695835] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 07 00 04 00
[    2.700687] [drm:intel_sdvo_debug_write], SDVOC: W: 6E                         (SDVO_CMD_GET_SHARPNESS)
[    2.702359] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 04 00
[    2.705276] [drm:intel_sdvo_create_enhance_property_tv], sharpness: max 7, default 4, current 4
[    2.705285] [drm:intel_sdvo_debug_write], SDVOC: W: 5B                         (SDVO_CMD_GET_MAX_BRIGHTNESS)
[    2.706956] [drm:intel_sdvo_read_response], SDVOC: R: (Success) FF 00 80 00
[    2.711805] [drm:intel_sdvo_debug_write], SDVOC: W: 5C                         (SDVO_CMD_GET_BRIGHTNESS)
[    2.713487] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 80 00
[    2.716407] [drm:intel_sdvo_create_enhance_property_tv], brightness: max 255, default 128, current 128
[    2.716416] [drm:intel_sdvo_debug_write], SDVOC: W: 7B                         (SDVO_CMD_GET_MAX_FLICKER_FILTER_ADAPTIVE)
[    2.718088] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 07 00 07 00
[    2.722938] [drm:intel_sdvo_debug_write], SDVOC: W: 50                         (SDVO_CMD_GET_FLICKER_FILTER_ADAPTIVE)
[    2.724616] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 07 00
[    2.727523] [drm:intel_sdvo_create_enhance_property_tv], flicker_filter_adaptive: max 7, default 7, current 7
[    2.727532] [drm:intel_sdvo_debug_write], SDVOC: W: 74                         (SDVO_CMD_GET_MAX_TV_CHROMA_FILTER)
[    2.729217] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 03 00 01 00
[    2.734058] [drm:intel_sdvo_debug_write], SDVOC: W: 75                         (SDVO_CMD_GET_TV_CHROMA_FILTER)
[    2.735730] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 01 00
[    2.738650] [drm:intel_sdvo_create_enhance_property_tv], tv_chroma_filter: max 3, default 1, current 1
[    2.738659] [drm:intel_sdvo_debug_write], SDVOC: W: 77                         (SDVO_CMD_GET_MAX_TV_LUMA_FILTER)
[    2.740341] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 02 00 00 00
[    2.745190] [drm:intel_sdvo_debug_write], SDVOC: W: 78                         (SDVO_CMD_GET_TV_LUMA_FILTER)
[    2.746861] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    2.749781] [drm:intel_sdvo_create_enhance_property_tv], tv_luma_filter: max 2, default 0, current 0
[    2.749790] [drm:intel_sdvo_debug_write], SDVOC: W: 70                         (SDVO_CMD_GET_DOT_CRAWL)
[    2.751461] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    2.754373] [drm:intel_sdvo_create_enhance_property_tv], dot crawl: current 0
[    2.754501] [drm:intel_sdvo_debug_write], SDVOC: W: 11 10 00                   (SDVO_CMD_SET_TARGET_OUTPUT)
[    2.757563] [drm:intel_sdvo_read_response], SDVOC: R: (Success)
[    2.758539] [drm:intel_sdvo_debug_write], SDVOC: W: 27                         (SDVO_CMD_GET_SUPPORTED_TV_FORMATS)
[    2.760220] [drm:intel_sdvo_read_response], SDVOC: R: (Success) FF FF FF FF FF 1F
[    2.767022] [drm:intel_sdvo_debug_write], SDVOC: W: 84                         (SDVO_CMD_GET_SUPPORTED_ENHANCEMENTS)
[    2.768706] [drm:intel_sdvo_read_response], SDVOC: R: (Success) FA DF
[    2.771612] [drm:intel_sdvo_debug_write], SDVOC: W: 61                         (SDVO_CMD_GET_MAX_OVERSCAN_H)
[    2.773295] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 2F 00 20 00
[    2.778142] [drm:intel_sdvo_debug_write], SDVOC: W: 62                         (SDVO_CMD_GET_OVERSCAN_H)
[    2.779814] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 20 00
[    2.782738] [drm:intel_sdvo_create_enhance_property_tv], h_overscan: max 47, default 32, current 32
[    2.782747] [drm:intel_sdvo_debug_write], SDVOC: W: 64                         (SDVO_CMD_GET_MAX_OVERSCAN_V)
[    2.784430] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 2F 00 20 00
[    2.789280] [drm:intel_sdvo_debug_write], SDVOC: W: 65                         (SDVO_CMD_GET_OVERSCAN_V)
[    2.790952] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 20 00
[    2.793874] [drm:intel_sdvo_create_enhance_property_tv], v_overscan: max 47, default 32, current 32
[    2.793882] [drm:intel_sdvo_debug_write], SDVOC: W: 67                         (SDVO_CMD_GET_MAX_HPOS)
[    2.795554] [drm:intel_sdvo_read_response], SDVOC: R: (Success) FF 03 00 02
[    2.800417] [drm:intel_sdvo_debug_write], SDVOC: W: 68                         (SDVO_CMD_GET_HPOS)
[    2.802089] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 02
[    2.805011] [drm:intel_sdvo_create_enhance_property_tv], hpos: max 1023, default 512, current 512
[    2.805019] [drm:intel_sdvo_debug_write], SDVOC: W: 6A                         (SDVO_CMD_GET_MAX_VPOS)
[    2.806691] [drm:intel_sdvo_read_response], SDVOC: R: (Success) FF 03 00 02
[    2.811540] [drm:intel_sdvo_debug_write], SDVOC: W: 6B                         (SDVO_CMD_GET_VPOS)
[    2.813223] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 02
[    2.816143] [drm:intel_sdvo_create_enhance_property_tv], vpos: max 1023, default 512, current 512
[    2.816151] [drm:intel_sdvo_debug_write], SDVOC: W: 55                         (SDVO_CMD_GET_MAX_SATURATION)
[    2.817823] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 7F 00 45 00
[    2.822672] [drm:intel_sdvo_debug_write], SDVOC: W: 56                         (SDVO_CMD_GET_SATURATION)
[    2.824359] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 45 00
[    2.827266] [drm:intel_sdvo_create_enhance_property_tv], saturation: max 127, default 69, current 69
[    2.827275] [drm:intel_sdvo_debug_write], SDVOC: W: 5E                         (SDVO_CMD_GET_MAX_CONTRAST)
[    2.828953] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 7F 00 40 00
[    2.833802] [drm:intel_sdvo_debug_write], SDVOC: W: 5F                         (SDVO_CMD_GET_CONTRAST)
[    2.835474] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 40 00
[    2.838391] [drm:intel_sdvo_create_enhance_property_tv], contrast: max 127, default 64, current 64
[    2.838400] [drm:intel_sdvo_debug_write], SDVOC: W: 58                         (SDVO_CMD_GET_MAX_HUE)
[    2.840076] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 7F 00 40 00
[    2.844922] [drm:intel_sdvo_debug_write], SDVOC: W: 59                         (SDVO_CMD_GET_HUE)
[    2.846594] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 40 00
[    2.849515] [drm:intel_sdvo_create_enhance_property_tv], hue: max 127, default 64, current 64
[    2.849524] [drm:intel_sdvo_debug_write], SDVOC: W: 6D                         (SDVO_CMD_GET_MAX_SHARPNESS)
[    2.851195] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 07 00 04 00
[    2.856051] [drm:intel_sdvo_debug_write], SDVOC: W: 6E                         (SDVO_CMD_GET_SHARPNESS)
[    2.857722] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 04 00
[    2.860641] [drm:intel_sdvo_create_enhance_property_tv], sharpness: max 7, default 4, current 4
[    2.860649] [drm:intel_sdvo_debug_write], SDVOC: W: 5B                         (SDVO_CMD_GET_MAX_BRIGHTNESS)
[    2.862321] [drm:intel_sdvo_read_response], SDVOC: R: (Success) FF 00 80 00
[    2.867168] [drm:intel_sdvo_debug_write], SDVOC: W: 5C                         (SDVO_CMD_GET_BRIGHTNESS)
[    2.868850] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 80 00
[    2.871762] [drm:intel_sdvo_create_enhance_property_tv], brightness: max 255, default 128, current 128
[    2.871771] [drm:intel_sdvo_debug_write], SDVOC: W: 7B                         (SDVO_CMD_GET_MAX_FLICKER_FILTER_ADAPTIVE)
[    2.873457] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 07 00 07 00
[    2.878299] [drm:intel_sdvo_debug_write], SDVOC: W: 50                         (SDVO_CMD_GET_FLICKER_FILTER_ADAPTIVE)
[    2.879971] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 07 00
[    2.882891] [drm:intel_sdvo_create_enhance_property_tv], flicker_filter_adaptive: max 7, default 7, current 7
[    2.882900] [drm:intel_sdvo_debug_write], SDVOC: W: 74                         (SDVO_CMD_GET_MAX_TV_CHROMA_FILTER)
[    2.884586] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 03 00 01 00
[    2.889430] [drm:intel_sdvo_debug_write], SDVOC: W: 75                         (SDVO_CMD_GET_TV_CHROMA_FILTER)
[    2.891102] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 01 00
[    2.894024] [drm:intel_sdvo_create_enhance_property_tv], tv_chroma_filter: max 3, default 1, current 1
[    2.894032] [drm:intel_sdvo_debug_write], SDVOC: W: 77                         (SDVO_CMD_GET_MAX_TV_LUMA_FILTER)
[    2.895704] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 02 00 00 00
[    2.900567] [drm:intel_sdvo_debug_write], SDVOC: W: 78                         (SDVO_CMD_GET_TV_LUMA_FILTER)
[    2.902239] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    2.905155] [drm:intel_sdvo_create_enhance_property_tv], tv_luma_filter: max 2, default 0, current 0
[    2.905164] [drm:intel_sdvo_debug_write], SDVOC: W: 70                         (SDVO_CMD_GET_DOT_CRAWL)
[    2.906836] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    2.909757] [drm:intel_sdvo_create_enhance_property_tv], dot crawl: current 0
[    2.909880] [drm:intel_sdvo_debug_write], SDVOC: W: 10 00                      (SDVO_CMD_SET_TARGET_INPUT)
[    2.912245] [drm:intel_sdvo_read_response], SDVOC: R: (Success)
[    2.913221] [drm:intel_sdvo_debug_write], SDVOC: W: 1D                         (SDVO_CMD_GET_INPUT_PIXEL_CLOCK_RANGE)
[    2.914895] [drm:intel_sdvo_read_response], SDVOC: R: (Success) C4 09 D8 40
[    2.919745] [drm:intel_sdvo_init], SDVOC device VID/DID: 02:C2.01, clock range 25MHz - 166MHz, input 1: Y, input 2: N, output 1: Y, output 2: N
[    2.919944] [drm:i915_gem_setup_global_gtt], clearing unused GTT space: [0, ffff000]
[    2.924688] [drm:i915_gem_context_init], Disabling HW Contexts; old hardware
[    2.924916] [drm] initialized overlay support
[    2.924926] [drm:intel_modeset_readout_hw_state], [CRTC:3] hw state readout: enabled
[    2.924934] [drm:intel_modeset_readout_hw_state], [CRTC:4] hw state readout: disabled
[    2.924943] [drm:intel_modeset_readout_hw_state], [ENCODER:6:DAC-6] hw state readout: enabled, pipe=0
[    2.924953] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    2.926627] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[    2.929538] [drm:intel_modeset_readout_hw_state], [ENCODER:7:TMDS-7] hw state readout: disabled, pipe=0
[    2.929548] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    2.931220] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    2.934128] [drm:intel_modeset_readout_hw_state], [ENCODER:9:DAC-9] hw state readout: disabled, pipe=0
[    2.934137] [drm:intel_modeset_readout_hw_state], [ENCODER:63:TV-63] hw state readout: disabled, pipe=0
[    2.934146] [drm:intel_modeset_readout_hw_state], [CONNECTOR:5:VGA-1] hw state readout: enabled
[    2.934155] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    2.935831] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[    2.938746] [drm:intel_modeset_readout_hw_state], [CONNECTOR:8:DVI-D-1] hw state readout: disabled
[    2.938755] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    2.940437] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    2.943342] [drm:intel_modeset_readout_hw_state], [CONNECTOR:10:SVIDEO-1] hw state readout: disabled
[    2.943351] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    2.945039] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    2.947944] [drm:intel_modeset_readout_hw_state], [CONNECTOR:27:SVIDEO-2] hw state readout: disabled
[    2.947953] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    2.949642] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    2.952561] [drm:intel_modeset_readout_hw_state], [CONNECTOR:44:SVIDEO-3] hw state readout: disabled
[    2.952570] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    2.954246] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    2.957166] [drm:intel_modeset_readout_hw_state], [CONNECTOR:61:VGA-2] hw state readout: disabled
[    2.957174] [drm:intel_modeset_readout_hw_state], [CONNECTOR:62:SVIDEO-4] hw state readout: disabled
[    2.957184] [drm:intel_dump_pipe_config], [CRTC:3][setup_hw_state] config for pipe A
[    2.957192] [drm:intel_dump_pipe_config], cpu_transcoder: A
[    2.957198] [drm:intel_dump_pipe_config], pipe bpp: 0, dithering: 0
[    2.957204] [drm:intel_dump_pipe_config], fdi/pch: 0, lanes: 0, gmch_m: 0, gmch_n: 0, link_m: 0, link_n: 0, tu: 0
[    2.957213] [drm:intel_dump_pipe_config], requested mode:
[    2.957218] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 800 0 0 0 600 0 0 0 0x0 0x0
[    2.957228] [drm:intel_dump_pipe_config], adjusted mode:
[    2.957234] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x5
[    2.957243] [drm:intel_dump_pipe_config], gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[    2.957250] [drm:intel_dump_pipe_config], pch pfit: pos: 0x00000000, size: 0x00000000
[    2.957257] [drm:intel_dump_pipe_config], ips: 0
[    2.957264] [drm:intel_dump_pipe_config], [CRTC:4][setup_hw_state] config for pipe B
[    2.957271] [drm:intel_dump_pipe_config], cpu_transcoder: B
[    2.957277] [drm:intel_dump_pipe_config], pipe bpp: 0, dithering: 0
[    2.957283] [drm:intel_dump_pipe_config], fdi/pch: 0, lanes: 0, gmch_m: 0, gmch_n: 0, link_m: 0, link_n: 0, tu: 0
[    2.957292] [drm:intel_dump_pipe_config], requested mode:
[    2.957297] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[    2.957307] [drm:intel_dump_pipe_config], adjusted mode:
[    2.957312] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[    2.957321] [drm:intel_dump_pipe_config], gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[    2.957329] [drm:intel_dump_pipe_config], pch pfit: pos: 0x00000000, size: 0x00000000
[    2.957335] [drm:intel_dump_pipe_config], ips: 0
[    2.957343] [drm:intel_connector_check_state], [CONNECTOR:5:VGA-1]
[    2.957351] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    2.959023] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[    2.961935] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    2.963606] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    2.966522] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    2.968207] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    2.971113] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    2.972797] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    2.975703] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    2.977385] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    2.980297] [drm:check_encoder_state], [ENCODER:6:DAC-6]
[    2.980305] [drm:check_encoder_state], [ENCODER:7:TMDS-7]
[    2.980313] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    2.981989] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[    2.984905] [drm:check_encoder_state], [ENCODER:9:DAC-9]
[    2.984913] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    2.986589] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    2.989510] [drm:check_encoder_state], [ENCODER:63:TV-63]
[    2.989517] [drm:check_crtc_state], [CRTC:3]
[    2.989528] [drm:check_crtc_state], [CRTC:4]
[    2.989614] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:VGA-1]
[    2.992028] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    2.992038] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    2.992045] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    2.992051] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    3.021543] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    3.021550] [drm:intel_crt_detect_ddc], CRT detected via DDC:0x50 [EDID]
[    3.024024] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    3.024033] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    3.024039] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    3.024046] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    3.053606] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    3.053668] [drm:drm_edid_to_eld], ELD: no CEA Extension found
[    3.053688] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:VGA-1] probed modes :
[    3.053696] [drm:drm_mode_debug_printmodeline], Modeline 86:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[    3.053706] [drm:drm_mode_debug_printmodeline], Modeline 78:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[    3.053716] [drm:drm_mode_debug_printmodeline], Modeline 93:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[    3.053727] [drm:drm_mode_debug_printmodeline], Modeline 87:"1024x768" 75 78800 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[    3.053737] [drm:drm_mode_debug_printmodeline], Modeline 88:"1024x768" 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[    3.053747] [drm:drm_mode_debug_printmodeline], Modeline 89:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[    3.053757] [drm:drm_mode_debug_printmodeline], Modeline 90:"832x624" 75 57284 832 864 928 1152 624 625 628 667 0x40 0xa
[    3.053767] [drm:drm_mode_debug_printmodeline], Modeline 91:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[    3.053778] [drm:drm_mode_debug_printmodeline], Modeline 92:"800x600" 72 50000 800 856 976 1040 600 637 643 666 0x40 0x5
[    3.053788] [drm:drm_mode_debug_printmodeline], Modeline 79:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[    3.053798] [drm:drm_mode_debug_printmodeline], Modeline 80:"800x600" 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[    3.053808] [drm:drm_mode_debug_printmodeline], Modeline 81:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[    3.053818] [drm:drm_mode_debug_printmodeline], Modeline 82:"640x480" 73 31500 640 664 704 832 480 489 491 520 0x40 0xa
[    3.053828] [drm:drm_mode_debug_printmodeline], Modeline 83:"640x480" 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[    3.053838] [drm:drm_mode_debug_printmodeline], Modeline 84:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[    3.053848] [drm:drm_mode_debug_printmodeline], Modeline 85:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[    3.053859] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:8:DVI-D-1]
[    3.053867] [drm:intel_sdvo_debug_write], SDVOB: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
[    3.055544] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[    3.058456] [drm:intel_sdvo_detect], SDVO response 0 0 [1]
[    3.058464] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:8:DVI-D-1] disconnected
[    3.058472] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:10:SVIDEO-1]
[    3.058480] [drm:intel_sdvo_debug_write], SDVOC: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
[    3.060171] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    3.106927] [drm:intel_sdvo_detect], SDVO response 0 0 [8]
[    3.106934] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:10:SVIDEO-1] disconnected
[    3.106942] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:SVIDEO-2]
[    3.106950] [drm:intel_sdvo_debug_write], SDVOC: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
[    3.132123] tsc: Refined TSC clocksource calibration: 1199.999 MHz
[    3.108642] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    3.154928] [drm:intel_sdvo_detect], SDVO response 0 0 [4]
[    3.154936] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:SVIDEO-2] disconnected
[    3.154944] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:44:SVIDEO-3]
[    3.154951] [drm:intel_sdvo_debug_write], SDVOC: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
[    3.156642] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    3.202926] [drm:intel_sdvo_detect], SDVO response 0 0 [10]
[    3.202934] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:44:SVIDEO-3] disconnected
[    3.202942] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:61:VGA-2]
[    3.202949] [drm:intel_sdvo_debug_write], SDVOC: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
[    3.204641] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    3.250926] [drm:intel_sdvo_detect], SDVO response 0 0 [2]
[    3.250933] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:61:VGA-2] disconnected
[    3.250941] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:62:SVIDEO-4]
[    3.250950] [drm:intel_get_load_detect_pipe], [CONNECTOR:62:SVIDEO-4], [ENCODER:63:TV-63]
[    3.250992] [drm:intel_get_load_detect_pipe], creating tmp fb for load-detection
[    3.251312] [drm:intel_modeset_affected_pipes], set mode pipe masks: modeset: 2, prepare: 2, disable: 0
[    3.251324] [drm:connected_sink_compute_bpp], [CONNECTOR:62:SVIDEO-4] checking for sink bpp constrains
[    3.251331] [drm:intel_tv_compute_config], forcing bpc to 8 for TV
[    3.251338] [drm:intel_modeset_pipe_config], plane bpp: 24, pipe bpp: 24, dithering: 0
[    3.251346] [drm:intel_dump_pipe_config], [CRTC:4][modeset] config for pipe B
[    3.251353] [drm:intel_dump_pipe_config], cpu_transcoder: B
[    3.251359] [drm:intel_dump_pipe_config], pipe bpp: 24, dithering: 0
[    3.251365] [drm:intel_dump_pipe_config], fdi/pch: 0, lanes: 0, gmch_m: 0, gmch_n: 0, link_m: 0, link_n: 0, tu: 0
[    3.251374] [drm:intel_dump_pipe_config], requested mode:
[    3.251380] [drm:drm_mode_debug_printmodeline], Modeline 0:"NTSC 480i" 0 107520 1280 1368 1496 1712 1024 1027 1034 1104 0x40 0x0
[    3.251390] [drm:intel_dump_pipe_config], adjusted mode:
[    3.251396] [drm:drm_mode_debug_printmodeline], Modeline 0:"NTSC 480i" 0 108000 1280 1368 1496 1712 1024 1027 1034 1104 0x40 0x0
[    3.251406] [drm:intel_dump_pipe_config], gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[    3.251413] [drm:intel_dump_pipe_config], pch pfit: pos: 0x00000000, size: 0x00000000
[    3.251420] [drm:intel_dump_pipe_config], ips: 0
[    3.265465] [drm:i9xx_update_plane], Writing base 00020000 00000000 0 0 5120
[    3.265483] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) A: 28
[    3.265491] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) B: 31
[    3.265498] [drm:i9xx_update_wm], FIFO watermarks - A: 26, B: 29
[    3.265506] [drm:i9xx_update_wm], Setting FIFO watermarks - A: 26, B: 29, C: 2, SR 1
[    3.265513] [drm:i9xx_update_wm], memory self refresh disabled
[    3.265525] [drm:intel_crtc_mode_set], [ENCODER:63:TV-63] set [MODE:0:NTSC 480i]
[    3.270537] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) A: 28
[    3.270545] [drm:intel_calculate_wm], FIFO entries required for mode: 34
[    3.270551] [drm:intel_calculate_wm], FIFO watermark level: -8
[    3.270558] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) B: 31
[    3.270565] [drm:i9xx_update_wm], FIFO watermarks - A: 1, B: 29
[    3.270572] [drm:i9xx_update_wm], self-refresh entries: 80
[    3.270578] [drm:i9xx_update_wm], Setting FIFO watermarks - A: 1, B: 29, C: 2, SR 15
[    3.270586] [drm:i9xx_update_wm], memory self refresh enabled
[    3.292035] [drm:intel_connector_check_state], [CONNECTOR:5:VGA-1]
[    3.292047] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.293772] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[    3.296697] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.298375] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    3.301289] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.302966] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    3.305879] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.307556] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    3.310477] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.312160] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    3.315068] [drm:intel_connector_check_state], [CONNECTOR:62:SVIDEO-4]
[    3.315076] [drm:check_encoder_state], [ENCODER:6:DAC-6]
[    3.315083] [drm:check_encoder_state], [ENCODER:7:TMDS-7]
[    3.315092] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.316780] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[    3.319685] [drm:check_encoder_state], [ENCODER:9:DAC-9]
[    3.319694] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.321375] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    3.324291] [drm:check_encoder_state], [ENCODER:63:TV-63]
[    3.324299] [drm:check_crtc_state], [CRTC:3]
[    3.324311] [drm:check_crtc_state], [CRTC:4]
[    3.356026] [drm:intel_tv_detect_type], TV detected: 400c0c07, 7f0000aa
[    3.356034] [drm:intel_tv_detect_type], Unrecognised TV connection
[    3.388027] [drm:intel_release_load_detect_pipe], [CONNECTOR:62:SVIDEO-4], [ENCODER:63:TV-63]
[    3.388037] [drm:intel_modeset_affected_pipes], set mode pipe masks: modeset: 0, prepare: 0, disable: 2
[    3.426912] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) A: 28
[    3.426921] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) B: 31
[    3.426927] [drm:i9xx_update_wm], FIFO watermarks - A: 26, B: 29
[    3.426934] [drm:i9xx_update_wm], Setting FIFO watermarks - A: 26, B: 29, C: 2, SR 1
[    3.426942] [drm:i9xx_update_wm], memory self refresh disabled
[    3.426954] [drm:intel_connector_check_state], [CONNECTOR:5:VGA-1]
[    3.426963] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.428653] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[    3.431560] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.433249] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    3.436165] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.437840] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    3.440761] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.442436] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    3.445354] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.447028] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    3.449949] [drm:check_encoder_state], [ENCODER:6:DAC-6]
[    3.449957] [drm:check_encoder_state], [ENCODER:7:TMDS-7]
[    3.449965] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.451642] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[    3.454553] [drm:check_encoder_state], [ENCODER:9:DAC-9]
[    3.454562] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.456244] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    3.459151] [drm:check_encoder_state], [ENCODER:63:TV-63]
[    3.459158] [drm:check_crtc_state], [CRTC:3]
[    3.459168] [drm:check_crtc_state], [CRTC:4]
[    3.461692] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:62:SVIDEO-4] disconnected
[    3.461702] [drm:drm_setup_crtcs], 
[    3.461709] [drm:drm_enable_connectors], connector 5 enabled? yes
[    3.461716] [drm:drm_enable_connectors], connector 8 enabled? no
[    3.461723] [drm:drm_enable_connectors], connector 10 enabled? no
[    3.461729] [drm:drm_enable_connectors], connector 27 enabled? no
[    3.461736] [drm:drm_enable_connectors], connector 44 enabled? no
[    3.461742] [drm:drm_enable_connectors], connector 61 enabled? no
[    3.461748] [drm:drm_enable_connectors], connector 62 enabled? no
[    3.461755] [drm:drm_target_preferred], looking for cmdline mode on connector 5
[    3.461762] [drm:drm_target_preferred], looking for preferred mode on connector 5
[    3.461771] [drm:drm_target_preferred], found mode 1280x1024
[    3.461777] [drm:drm_setup_crtcs], picking CRTCs for 4096x4096 config
[    3.461787] [drm:drm_setup_crtcs], desired mode 1280x1024 set on crtc 3
[    3.476151] [drm:intelfb_create], allocated 1280x1024 fb: 0x00020000, bo f636cc80
[    3.477510] fbcon: inteldrmfb (fb0) is primary device
[    3.480711] [drm:intel_crtc_set_config], [CRTC:3] [FB:95] #connectors=1 (x y) (0 0)
[    3.480720] [drm:intel_set_config_compute_mode_changes], crtc has no fb, full mode set
[    3.480726] [drm:intel_set_config_compute_mode_changes], modes are different, full mode set
[    3.480734] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[    3.480742] [drm:drm_mode_debug_printmodeline], Modeline 94:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[    3.480750] [drm:intel_modeset_stage_output_state], [CONNECTOR:5:VGA-1] to [CRTC:3]
[    3.480758] [drm:intel_modeset_affected_pipes], set mode pipe masks: modeset: 1, prepare: 1, disable: 0
[    3.480766] [drm:connected_sink_compute_bpp], [CONNECTOR:5:VGA-1] checking for sink bpp constrains
[    3.480774] [drm:intel_modeset_pipe_config], plane bpp: 24, pipe bpp: 24, dithering: 0
[    3.480779] [drm:intel_dump_pipe_config], [CRTC:3][modeset] config for pipe A
[    3.480784] [drm:intel_dump_pipe_config], cpu_transcoder: A
[    3.480788] [drm:intel_dump_pipe_config], pipe bpp: 24, dithering: 0
[    3.480794] [drm:intel_dump_pipe_config], fdi/pch: 0, lanes: 0, gmch_m: 0, gmch_n: 0, link_m: 0, link_n: 0, tu: 0
[    3.480798] [drm:intel_dump_pipe_config], requested mode:
[    3.480807] [drm:drm_mode_debug_printmodeline], Modeline 0:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[    3.480811] [drm:intel_dump_pipe_config], adjusted mode:
[    3.480819] [drm:drm_mode_debug_printmodeline], Modeline 0:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[    3.480824] [drm:intel_dump_pipe_config], gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[    3.480829] [drm:intel_dump_pipe_config], pch pfit: pos: 0x00000000, size: 0x00000000
[    3.480833] [drm:intel_dump_pipe_config], ips: 0
[    3.505691] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) A: 28
[    3.505696] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) B: 31
[    3.505701] [drm:i9xx_update_wm], FIFO watermarks - A: 26, B: 29
[    3.505707] [drm:i9xx_update_wm], Setting FIFO watermarks - A: 26, B: 29, C: 2, SR 1
[    3.505711] [drm:i9xx_update_wm], memory self refresh disabled
[    3.506342] [drm:i9xx_update_plane], Writing base 00020000 00000000 0 0 5120
[    3.506349] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) A: 28
[    3.506354] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) B: 31
[    3.506359] [drm:i9xx_update_wm], FIFO watermarks - A: 26, B: 29
[    3.506365] [drm:i9xx_update_wm], Setting FIFO watermarks - A: 26, B: 29, C: 2, SR 1
[    3.506369] [drm:i9xx_update_wm], memory self refresh disabled
[    3.506376] [drm:intel_crtc_mode_set], [ENCODER:6:DAC-6] set [MODE:0:1280x1024]
[    3.506382] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) A: 28
[    3.506387] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) B: 31
[    3.506392] [drm:intel_calculate_wm], FIFO entries required for mode: 43
[    3.506397] [drm:intel_calculate_wm], FIFO watermark level: -14
[    3.506401] [drm:i9xx_update_wm], FIFO watermarks - A: 26, B: 1
[    3.506406] [drm:i9xx_update_wm], self-refresh entries: 80
[    3.506411] [drm:i9xx_update_wm], Setting FIFO watermarks - A: 26, B: 1, C: 2, SR 15
[    3.506416] [drm:i9xx_update_wm], memory self refresh enabled
[    3.528035] [drm:intel_connector_check_state], [CONNECTOR:5:VGA-1]
[    3.528057] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.532644] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[    3.532663] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.537236] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    3.537254] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.541825] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    3.541843] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.546418] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    3.546436] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.551003] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    3.551009] [drm:check_encoder_state], [ENCODER:6:DAC-6]
[    3.551014] [drm:check_encoder_state], [ENCODER:7:TMDS-7]
[    3.551033] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.555606] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[    3.555611] [drm:check_encoder_state], [ENCODER:9:DAC-9]
[    3.555630] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[    3.560209] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[    3.560215] [drm:check_encoder_state], [ENCODER:63:TV-63]
[    3.560220] [drm:check_crtc_state], [CRTC:3]
[    3.560230] [drm:check_crtc_state], [CRTC:4]
[    3.560238] [drm:intel_crtc_set_config], [CRTC:4] [NOFB]
[    3.560247] [drm:intel_modeset_stage_output_state], [CONNECTOR:5:VGA-1] to [CRTC:3]
[    3.560313] [drm:intel_crtc_set_config], [CRTC:3] [FB:95] #connectors=1 (x y) (0 0)
[    3.560322] [drm:intel_modeset_stage_output_state], [CONNECTOR:5:VGA-1] to [CRTC:3]
[    3.573885] [drm:intel_crtc_set_config], [CRTC:3] [FB:95] #connectors=1 (x y) (0 0)
[    3.573894] [drm:intel_modeset_stage_output_state], [CONNECTOR:5:VGA-1] to [CRTC:3]
[    3.587247] Console: switching to colour frame buffer device 160x64
[    3.587261] [drm:intel_crtc_set_config], [CRTC:3] [FB:95] #connectors=1 (x y) (0 0)
[    3.587270] [drm:intel_modeset_stage_output_state], [CONNECTOR:5:VGA-1] to [CRTC:3]
[    3.600886] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    3.600893] i915 0000:00:02.0: registered panic notifier
[    3.600956] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    3.601577] parport_pc 00:07: reported by Plug and Play ACPI
[    3.601739] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
[    3.696887] lp0: using parport0 (interrupt-driven).
[    3.702746] loop: module loaded
[    3.702948] ACPI Warning: 0x00004028-0x0000402f SystemIO conflicts with Region \PM2S 1 (20130517/utaddress-251)
[    3.702965] ACPI: This conflict may cause random problems and system instability
[    3.702970] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    3.702986] ACPI Warning: 0x000040b0-0x000040bf SystemIO conflicts with Region \GPO2 1 (20130517/utaddress-251)
[    3.703000] ACPI: This conflict may cause random problems and system instability
[    3.703005] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    3.703011] ACPI Warning: 0x00004080-0x000040af SystemIO conflicts with Region \GPO_ 1 (20130517/utaddress-251)
[    3.703024] ACPI: This conflict may cause random problems and system instability
[    3.703029] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    3.703163] Uniform Multi-Platform E-IDE driver
[    3.703289] piix 0000:00:1f.1: IDE controller (0x8086:0x266f rev 0x04)
[    3.703954] piix 0000:00:1f.1: not 100% native mode: will probe irqs later
[    3.703967]     ide0: BM-DMA at 0xf000-0xf007
[    3.703982]     ide1: BM-DMA at 0xf008-0xf00f
[    3.703995] Probing IDE interface ide0...
[    3.992334] hda: FUJITSU MHV2080AT, ATA DISK drive
[    4.132324] Switched to clocksource tsc
[    4.664320] hda: host max PIO4 wanted PIO255(auto-tune) selected PIO4
[    4.668116] hda: UDMA/100 mode selected
[    4.671651] Probing IDE interface ide1...
[    5.240372] ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
[    5.325105] ide1 at 0x170-0x177,0x376 on irq 15
[    5.325572] ide-gd driver 1.18
[    5.325757] hda: max request size: 128KiB
[    5.325919] hda: 156301488 sectors (80026 MB) w/8192KiB Cache, CHS=65535/16/63
[    5.330566] hda: cache flushes supported
[    5.339071]  hda: hda1 hda2
[    5.340707] ide-cd driver 5.00
[    5.341111] ata_piix 0000:00:1f.2: version 2.13
[    5.341580] ata_piix 0000:00:1f.2: MAP [
[    5.341585]  P0 P2 -- -- ]
[    5.341754] ata_piix 0000:00:1f.2: setting latency timer to 64
[    5.343676] scsi0 : ata_piix
[    5.344411] scsi1 : ata_piix
[    5.344608] ata1: SATA max UDMA/133 cmd 0xe500 ctl 0xe600 bmdma 0xe900 irq 19
[    5.344615] ata2: SATA max UDMA/133 cmd 0xe700 ctl 0xe800 bmdma 0xe908 irq 19
[    5.344839] sky2: driver version 1.30
[    5.345112] sky2 0000:02:00.0: Yukon-2 EC chip revision 2
[    5.345214] sky2 0000:02:00.0: irq 44 for MSI/MSI-X
[    5.346133] sky2 0000:02:00.0 eth0: addr 00:01:80:62:cf:b1
[    5.347120] sky2 0000:03:00.0: Yukon-2 EC chip revision 2
[    5.347212] sky2 0000:03:00.0: irq 45 for MSI/MSI-X
[    5.347698] sky2 0000:03:00.0 eth1: addr 00:01:80:62:cf:b2
[    5.347824] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.347830] ehci-pci: EHCI PCI platform driver
[    5.348365] ehci-pci 0000:00:1d.7: setting latency timer to 64
[    5.348531] ehci-pci 0000:00:1d.7: EHCI Host Controller
[    5.348941] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    5.353103] ehci-pci 0000:00:1d.7: cache line size of 32 is not supported
[    5.353213] ehci-pci 0000:00:1d.7: irq 23, io mem 0xd2344000
[    5.364026] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    5.364502] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    5.364511] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.364518] usb usb1: Product: EHCI Host Controller
[    5.364525] usb usb1: Manufacturer: Linux 3.10.0-main+ ehci_hcd
[    5.364532] usb usb1: SerialNumber: 0000:00:1d.7
[    5.366152] hub 1-0:1.0: USB hub found
[    5.366288] hub 1-0:1.0: 8 ports detected
[    5.368158] uhci_hcd: USB Universal Host Controller Interface driver
[    5.368653] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    5.368710] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    5.368785] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    5.368859] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000e100
[    5.369069] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    5.369077] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.369084] usb usb2: Product: UHCI Host Controller
[    5.369091] usb usb2: Manufacturer: Linux 3.10.0-main+ uhci_hcd
[    5.369098] usb usb2: SerialNumber: 0000:00:1d.0
[    5.369630] hub 2-0:1.0: USB hub found
[    5.369694] hub 2-0:1.0: 2 ports detected
[    5.370687] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    5.370698] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    5.370723] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[    5.370770] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000e200
[    5.370928] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    5.370936] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.370944] usb usb3: Product: UHCI Host Controller
[    5.370950] usb usb3: Manufacturer: Linux 3.10.0-main+ uhci_hcd
[    5.370957] usb usb3: SerialNumber: 0000:00:1d.1
[    5.371471] hub 3-0:1.0: USB hub found
[    5.371492] hub 3-0:1.0: 2 ports detected
[    5.372461] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    5.372472] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    5.372496] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[    5.372558] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e300
[    5.372685] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    5.372693] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.372700] usb usb4: Product: UHCI Host Controller
[    5.372707] usb usb4: Manufacturer: Linux 3.10.0-main+ uhci_hcd
[    5.372714] usb usb4: SerialNumber: 0000:00:1d.2
[    5.373205] hub 4-0:1.0: USB hub found
[    5.373226] hub 4-0:1.0: 2 ports detected
[    5.374253] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[    5.374264] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    5.374288] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[    5.374336] uhci_hcd 0000:00:1d.3: irq 16, io base 0x0000e400
[    5.374466] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    5.374474] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.374481] usb usb5: Product: UHCI Host Controller
[    5.374488] usb usb5: Manufacturer: Linux 3.10.0-main+ uhci_hcd
[    5.374495] usb usb5: SerialNumber: 0000:00:1d.3
[    5.374982] hub 5-0:1.0: USB hub found
[    5.375003] hub 5-0:1.0: 2 ports detected
[    5.375573] usbcore: registered new interface driver usblp
[    5.375665] usbcore: registered new interface driver usb-storage
[    5.376150] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    5.547134] ata1.00: ATA-8: ST31000340NS, SN06, max UDMA/133
[    5.547142] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    5.603753] ata1.00: configured for UDMA/133
[    5.604929] scsi 0:0:0:0: Direct-Access     ATA      ST31000340NS     SN06 PQ: 0 ANSI: 5
[    5.607176] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    5.608688] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    5.608908] sd 0:0:0:0: [sda] Write Protect is off
[    5.608916] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    5.609010] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    5.625625]  sda: sda1 sda2 sda3 sda4
[    5.627551] sd 0:0:0:0: [sda] Attached SCSI disk
[    5.628422] serio: i8042 KBD port at 0x60,0x64 irq 1
[    5.629582] mousedev: PS/2 mouse device common for all mice
[    5.631213] input: PC Speaker as /devices/platform/pcspkr/input/input2
[    5.631590] rtc_cmos 00:02: RTC can wake from S4
[    5.632331] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[    5.632399] rtc_cmos 00:02: alarms up to one month, 242 bytes nvram, hpet irqs
[    5.632983] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt
[    5.633207] w83627hf: w83627hf: Found W83627THF chip at 0x290
[    5.633243] ACPI Warning: 0x00000295-0x00000296 SystemIO conflicts with Region \SEN1 1 (20130517/utaddress-251)
[    5.633259] ACPI: This conflict may cause random problems and system instability
[    5.633264] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    5.633960] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[    5.634015] iTCO_wdt: Found a ICH6-M TCO device (Version=2, TCOBASE=0x4060)
[    5.634676] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    5.634721] device-mapper: uevent: version 1.0.3
[    5.634946] device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: dm-devel@redhat.com
[    5.635037] cpuidle: using governor ladder
[    5.635043] cpuidle: using governor menu
[    5.636351] hidraw: raw HID events driver (C) Jiri Kosina
[    5.636771] usbcore: registered new interface driver usbhid
[    5.636776] usbhid: USB HID core driver
[    5.637127] TCP: cubic registered
[    5.637132] Initializing XFRM netlink socket
[    5.637815] Using IPI Shortcut mode
[    5.638208] PM: Checking hibernation image partition /dev/hda1
[    5.638250] PM: Hibernation image partition 3:1 present
[    5.638254] PM: Looking for hibernation image.
[    5.682872] PM: Image not found (code -22)
[    5.682878] PM: Hibernation image not present or could not be loaded.
[    5.682960] registered taskstats version 1
[    5.684217] rtc_cmos 00:02: setting system clock to 2013-07-11 16:10:18 UTC (1373559018)
[    5.685580] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    5.685586] EDD information not available.
[    5.686526] Freeing unused kernel memory: 484K (c07c0000 - c0839000)
[    5.686888] Write protecting the kernel text: 4332k
[    5.687196] Write protecting the kernel read-only data: 2184k
[    5.687200] NX-protecting the kernel data: 4884k
[    5.812642] systemd-udevd[83]: starting version 195
[    6.320164] tsc: Marking TSC unstable due to cpufreq changes
[    6.320344] Switched to clocksource hpet
[    6.837696] EXT4-fs (hda2): mounted filesystem with ordered data mode. Opts: acl,user_xattr
[    7.217059] EXT4-fs (hda2): re-mounted. Opts: acl,user_xattr
[    8.300623] systemd[1]: systemd 195 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ; suse)
[    8.390728] systemd[1]: Set hostname to <linux-ktth.site>.
[    9.699214] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
[    9.699986] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    9.700183] systemd[1]: Starting Syslog Socket.
[    9.700538] systemd[1]: Listening on Syslog Socket.
[    9.700605] systemd[1]: Starting Remote File Systems.
[    9.700694] systemd[1]: Reached target Remote File Systems.
[    9.700761] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
[    9.700965] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    9.701027] systemd[1]: Starting Delayed Shutdown Socket.
[    9.701255] systemd[1]: Listening on Delayed Shutdown Socket.
[    9.701356] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
[    9.701700] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    9.702079] systemd[1]: Starting udev Kernel Socket.
[    9.702274] systemd[1]: Listening on udev Kernel Socket.
[    9.702585] systemd[1]: Starting udev Control Socket.
[    9.702821] systemd[1]: Listening on udev Control Socket.
[    9.702886] systemd[1]: Starting Encrypted Volumes.
[    9.702973] systemd[1]: Reached target Encrypted Volumes.
[    9.703287] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
[    9.705263] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    9.705333] systemd[1]: Expecting device dev-hda1.device...
[    9.705424] systemd[1]: Expecting device dev-sda2.device...
[    9.705511] systemd[1]: Expecting device dev-sda4.device...
[    9.705605] systemd[1]: Starting Journal Socket.
[    9.706259] systemd[1]: Listening on Journal Socket.
[    9.706338] systemd[1]: Starting LSB: Set default boot entry if called...
[    9.710036] systemd[1]: Starting Create dynamic rule for /dev/root link...
[    9.936339] systemd[1]: Starting Load Kernel Modules...
[    9.939431] systemd[1]: Mounting Huge Pages File System...
[   10.007143] systemd[1]: Started Set Up Additional Binary Formats.
[   10.007255] systemd[1]: Starting Setup Virtual Console...
[   10.010534] systemd[1]: Mounting POSIX Message Queue File System...
[   10.019659] systemd[1]: Started File System Check on Root Device.
[   10.019781] systemd[1]: Starting Remount Root and Kernel File Systems...
[   10.021697] systemd[1]: Starting Journal Service...
[   10.023872] systemd[1]: Started Journal Service.
[   11.620429] EXT4-fs (hda2): re-mounted. Opts: acl,user_xattr
[   12.288093] systemd-udevd[218]: starting version 195
[   13.266711] [drm:intel_crtc_set_config], [CRTC:3] [FB:95] #connectors=1 (x y) (0 0)
[   13.266734] [drm:intel_modeset_stage_output_state], [CONNECTOR:5:VGA-1] to [CRTC:3]
[   13.632497] [drm:intel_sdvo_debug_write], SDVOC: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
[   13.634214] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   13.687264] [drm:intel_sdvo_detect], SDVO response 0 0 [2]
[   14.734168] Adding 4192252k swap on /dev/hda1.  Priority:-1 extents:1 across:4192252k 
[   15.060395] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
[   15.157140] ALSA sound/pci/hda/hda_auto_parser.c:393 autoconfig: line_outs=3 (0x14/0x17/0x16/0x0/0x0) type:line
[   15.157153] ALSA sound/pci/hda/hda_auto_parser.c:397    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   15.157160] ALSA sound/pci/hda/hda_auto_parser.c:401    hp_outs=1 (0x19/0x0/0x0/0x0/0x0)
[   15.157166] ALSA sound/pci/hda/hda_auto_parser.c:402    mono: mono_out=0x0
[   15.157172] ALSA sound/pci/hda/hda_auto_parser.c:405    dig-out=0x1e/0x0
[   15.157178] ALSA sound/pci/hda/hda_auto_parser.c:406    inputs:
[   15.157185] ALSA sound/pci/hda/hda_auto_parser.c:410      Rear Mic=0x18
[   15.157191] ALSA sound/pci/hda/hda_auto_parser.c:410      Front Mic=0x1b
[   15.157198] ALSA sound/pci/hda/hda_auto_parser.c:410      Line=0x1a
[   15.157205] ALSA sound/pci/hda/patch_realtek.c:487 realtek: No valid SSID, checking pincfg 0x411111f0 for NID 0x1d
[   15.157211] ALSA sound/pci/hda/patch_realtek.c:570 realtek: Enable default setup for auto mode as fallback
[   15.172282] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input3
[   15.220477] input: HDA Intel Line Out CLFE as /devices/pci0000:00/0000:00:1b.0/sound/card1/input4
[   15.221086] input: HDA Intel Line Out Surround as /devices/pci0000:00/0000:00:1b.0/sound/card1/input5
[   15.221594] input: HDA Intel Line Out Front as /devices/pci0000:00/0000:00:1b.0/sound/card1/input6
[   15.222097] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card1/input7
[   15.222602] input: HDA Intel Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input8
[   15.223127] input: HDA Intel Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input9
[   17.591263] REISERFS (device sda2): found reiserfs format "3.6" with standard journal
[   17.591310] REISERFS (device sda2): using ordered data mode
[   17.591315] reiserfs: using flush barriers
[   17.601068] REISERFS (device sda2): journal params: device sda2, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
[   17.602539] REISERFS (device sda2): checking transaction log (sda2)
[   17.651331] REISERFS (device sda2): Using r5 hash to sort names
[   17.680638] REISERFS (device sda4): found reiserfs format "3.6" with standard journal
[   17.680696] REISERFS (device sda4): using ordered data mode
[   17.680706] reiserfs: using flush barriers
[   17.681594] REISERFS (device sda4): journal params: device sda4, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
[   17.682635] REISERFS (device sda4): checking transaction log (sda4)
[   17.747313] REISERFS (device sda4): Using r5 hash to sort names
[   17.863840] systemd-journald[196]: Received SIGUSR1
[   21.392262] systemd-logind[392]: Watching system buttons on /dev/input/event1 (Power Button)
[   21.392987] systemd-logind[392]: Watching system buttons on /dev/input/event0 (Power Button)
[   21.988937] NET: Registered protocol family 10
[   23.712078] [drm:intel_sdvo_debug_write], SDVOC: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
[   23.713878] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   23.763106] [drm:intel_sdvo_detect], SDVO response 0 0 [2]
[   32.635210] sky2 0000:02:00.0 eth0: enabling interface
[   32.635548] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   33.792068] [drm:intel_sdvo_debug_write], SDVOC: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
[   33.793761] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   33.843093] [drm:intel_sdvo_detect], SDVO response 0 0 [2]
[   35.133567] sky2 0000:02:00.0 eth0: Link is up at 1000 Mbps, full duplex, flow control both
[   35.133876] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   43.872064] [drm:intel_sdvo_debug_write], SDVOC: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
[   43.873863] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   43.922973] [drm:intel_sdvo_detect], SDVO response 0 0 [2]
[   72.240872] PM: Hibernation mode set to 'suspend'
[   72.258380] PM: Marking nosave pages: [mem 0x0009f000-0x000fffff]
[   72.258399] PM: Basic memory bitmaps created
[   72.258408] PM: Syncing filesystems ... done.
[   73.495752] Freezing user space processes ... (elapsed 0.001 seconds) done.
[   73.497511] PM: Preallocating image memory... done (allocated 65406 pages)
[   73.697589] PM: Allocated 261624 kbytes in 0.20 seconds (1308.12 MB/s)
[   73.697596] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[   73.700845] Suspending console(s) (use no_console_suspend to debug)
[   73.774697] parport_pc 00:07: disabled
[   73.775336] serial 00:06: disabled
[   73.775401] serial 00:06: System wakeup disabled by ACPI
[   73.775919] serial 00:05: disabled
[   73.775956] serial 00:05: System wakeup disabled by ACPI
[   73.787565] [drm:i915_get_vblank_counter], trying to get vblank count for disabled pipe B
[   73.813508] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) A: 28
[   73.813513] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) B: 31
[   73.813518] [drm:i9xx_update_wm], FIFO watermarks - A: 26, B: 29
[   73.813524] [drm:i9xx_update_wm], Setting FIFO watermarks - A: 26, B: 29, C: 2, SR 1
[   73.813528] [drm:i9xx_update_wm], memory self refresh disabled
[   73.904198] PM: freeze of devices complete after 203.251 msecs
[   73.907299] PM: late freeze of devices complete after 3.090 msecs
[   73.911376] PM: noirq freeze of devices complete after 4.068 msecs
[   73.911755] PM: Creating hibernation image:
[   73.912015] PM: Need to copy 65260 pages
[   73.912015] PM: Normal pages needed: 17280 + 1024, available pages: 210937
[   73.912015] PM: Hibernation image created (65260 pages copied)
[   73.912015] Force enabled HPET at resume
[   73.913310] PM: noirq thaw of devices complete after 0.880 msecs
[   73.914467] PM: early thaw of devices complete after 1.085 msecs
[   73.920258] pci 0000:00:1e.0: setting latency timer to 64
[   73.920907] PIIX_IDE 0000:00:1f.1: setting latency timer to 64
[   73.921500] ata_piix 0000:00:1f.2: setting latency timer to 64
[   73.927803] serial 00:05: activated
[   73.931597] [drm:intel_opregion_setup], graphic opregion physical addr: 0x0
[   73.931601] [drm:intel_opregion_setup], ACPI OpRegion not supported!
[   73.934101] serial 00:06: activated
[   73.936395] [drm:i915_gem_context_init], Disabling HW Contexts; old hardware
[   73.936482] [drm:intel_modeset_readout_hw_state], [CRTC:3] hw state readout: disabled
[   73.936488] [drm:intel_modeset_readout_hw_state], [CRTC:4] hw state readout: disabled
[   73.936496] [drm:intel_modeset_readout_hw_state], [ENCODER:6:DAC-6] hw state readout: disabled, pipe=0
[   73.936517] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   73.941438] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
[   73.942657] parport_pc 00:07: activated
[   73.944356] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[   73.944363] [drm:intel_modeset_readout_hw_state], [ENCODER:7:TMDS-7] hw state readout: disabled, pipe=0
[   73.944382] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   73.949392] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   73.949399] [drm:intel_modeset_readout_hw_state], [ENCODER:9:DAC-9] hw state readout: disabled, pipe=0
[   73.949406] [drm:intel_modeset_readout_hw_state], [ENCODER:63:TV-63] hw state readout: disabled, pipe=0
[   73.949413] [drm:intel_modeset_readout_hw_state], [CONNECTOR:5:VGA-1] hw state readout: disabled
[   73.949431] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   73.954282] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[   73.954288] [drm:intel_modeset_readout_hw_state], [CONNECTOR:8:DVI-D-1] hw state readout: disabled
[   73.954306] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   73.959070] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   73.959076] [drm:intel_modeset_readout_hw_state], [CONNECTOR:10:SVIDEO-1] hw state readout: disabled
[   73.959094] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   73.963815] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   73.963821] [drm:intel_modeset_readout_hw_state], [CONNECTOR:27:SVIDEO-2] hw state readout: disabled
[   73.963839] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   73.968959] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   73.968966] [drm:intel_modeset_readout_hw_state], [CONNECTOR:44:SVIDEO-3] hw state readout: disabled
[   73.968984] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   73.973644] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   73.973650] [drm:intel_modeset_readout_hw_state], [CONNECTOR:61:VGA-2] hw state readout: disabled
[   73.973656] [drm:intel_modeset_readout_hw_state], [CONNECTOR:62:SVIDEO-4] hw state readout: disabled
[   73.973664] [drm:intel_dump_pipe_config], [CRTC:3][setup_hw_state] config for pipe A
[   73.973668] [drm:intel_dump_pipe_config], cpu_transcoder: A
[   73.973673] [drm:intel_dump_pipe_config], pipe bpp: 0, dithering: 0
[   73.973679] [drm:intel_dump_pipe_config], fdi/pch: 0, lanes: 0, gmch_m: 0, gmch_n: 0, link_m: 0, link_n: 0, tu: 0
[   73.973683] [drm:intel_dump_pipe_config], requested mode:
[   73.973691] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[   73.973695] [drm:intel_dump_pipe_config], adjusted mode:
[   73.973703] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[   73.973708] [drm:intel_dump_pipe_config], gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[   73.973713] [drm:intel_dump_pipe_config], pch pfit: pos: 0x00000000, size: 0x00000000
[   73.973717] [drm:intel_dump_pipe_config], ips: 0
[   73.973723] [drm:intel_dump_pipe_config], [CRTC:4][setup_hw_state] config for pipe B
[   73.973727] [drm:intel_dump_pipe_config], cpu_transcoder: B
[   73.973731] [drm:intel_dump_pipe_config], pipe bpp: 0, dithering: 0
[   73.973738] [drm:intel_dump_pipe_config], fdi/pch: 0, lanes: 0, gmch_m: 0, gmch_n: 0, link_m: 0, link_n: 0, tu: 0
[   73.973742] [drm:intel_dump_pipe_config], requested mode:
[   73.973749] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[   73.973753] [drm:intel_dump_pipe_config], adjusted mode:
[   73.973760] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[   73.973766] [drm:intel_dump_pipe_config], gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[   73.973770] [drm:intel_dump_pipe_config], pch pfit: pos: 0x00000000, size: 0x00000000
[   73.973774] [drm:intel_dump_pipe_config], ips: 0
[   73.973781] [drm:intel_modeset_affected_pipes], set mode pipe masks: modeset: 1, prepare: 1, disable: 0
[   73.973789] [drm:connected_sink_compute_bpp], [CONNECTOR:5:VGA-1] checking for sink bpp constrains
[   73.973796] [drm:intel_modeset_pipe_config], plane bpp: 24, pipe bpp: 24, dithering: 0
[   73.973801] [drm:intel_dump_pipe_config], [CRTC:3][modeset] config for pipe A
[   73.973805] [drm:intel_dump_pipe_config], cpu_transcoder: A
[   73.973810] [drm:intel_dump_pipe_config], pipe bpp: 24, dithering: 0
[   73.973816] [drm:intel_dump_pipe_config], fdi/pch: 0, lanes: 0, gmch_m: 0, gmch_n: 0, link_m: 0, link_n: 0, tu: 0
[   73.973820] [drm:intel_dump_pipe_config], requested mode:
[   73.973828] [drm:drm_mode_debug_printmodeline], Modeline 0:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   73.973832] [drm:intel_dump_pipe_config], adjusted mode:
[   73.973840] [drm:drm_mode_debug_printmodeline], Modeline 0:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   73.973846] [drm:intel_dump_pipe_config], gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[   73.973850] [drm:intel_dump_pipe_config], pch pfit: pos: 0x00000000, size: 0x00000000
[   73.973854] [drm:intel_dump_pipe_config], ips: 0
[   73.974473] [drm:i9xx_update_plane], Writing base 00020000 00000000 0 0 5120
[   73.974482] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) A: 28
[   73.974487] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) B: 31
[   73.974492] [drm:i9xx_update_wm], FIFO watermarks - A: 26, B: 29
[   73.974498] [drm:i9xx_update_wm], Setting FIFO watermarks - A: 26, B: 29, C: 2, SR 1
[   73.974502] [drm:i9xx_update_wm], memory self refresh disabled
[   73.974509] [drm:intel_crtc_mode_set], [ENCODER:6:DAC-6] set [MODE:0:1280x1024]
[   73.974515] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) A: 28
[   73.974520] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) B: 31
[   73.974525] [drm:intel_calculate_wm], FIFO entries required for mode: 43
[   73.974530] [drm:intel_calculate_wm], FIFO watermark level: -14
[   73.974534] [drm:i9xx_update_wm], FIFO watermarks - A: 26, B: 1
[   73.974539] [drm:i9xx_update_wm], self-refresh entries: 80
[   73.974544] [drm:i9xx_update_wm], Setting FIFO watermarks - A: 26, B: 1, C: 2, SR 15
[   73.974549] [drm:i9xx_update_wm], memory self refresh enabled
[   73.996054] [drm:intel_modeset_affected_pipes], set mode pipe masks: modeset: 0, prepare: 0, disable: 0
[   73.996071] [drm:intel_connector_check_state], [CONNECTOR:5:VGA-1]
[   73.996109] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   74.000941] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[   74.000978] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   74.005787] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   74.005823] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   74.010612] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   74.010648] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   74.015322] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   74.015340] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   74.019974] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   74.019979] [drm:check_encoder_state], [ENCODER:6:DAC-6]
[   74.019985] [drm:check_encoder_state], [ENCODER:7:TMDS-7]
[   74.020018] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   74.024606] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[   74.024612] [drm:check_encoder_state], [ENCODER:9:DAC-9]
[   74.024630] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   74.029200] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   74.029205] [drm:check_encoder_state], [ENCODER:63:TV-63]
[   74.029210] [drm:check_crtc_state], [CRTC:3]
[   74.029220] [drm:check_crtc_state], [CRTC:4]
[   74.029254] [drm:intel_resume_hotplug], running encoder hotplug functions
[   74.029272] [drm:intel_sdvo_debug_write], SDVOB: W: 0D 01 00                   (SDVO_CMD_SET_ACTIVE_HOT_PLUG)
[   74.032710] [drm:intel_crtc_set_config], [CRTC:3] [FB:95] #connectors=1 (x y) (0 0)
[   74.032720] [drm:intel_modeset_stage_output_state], [CONNECTOR:5:VGA-1] to [CRTC:3]
[   74.045040] hda: host max PIO4 wanted PIO255(auto-tune) selected PIO4
[   74.056092] hda: UDMA/100 mode selected
[   74.183810] ata1.00: configured for UDMA/133
[   74.184956] PM: thaw of devices complete after 270.409 msecs
[   74.190368] PM: writing image.
[   74.192101] PM: Using 1 thread(s) for compression.
[   74.192101] PM: Compressing and saving image data (65324 pages)...
[   74.192179] PM: Image saving progress:   0%
[   74.459330] PM: Image saving progress:  10%
[   74.691454] PM: Image saving progress:  20%
[   74.899658] PM: Image saving progress:  30%
[   75.074743] PM: Image saving progress:  40%
[   75.298290] PM: Image saving progress:  50%
[   75.516284] PM: Image saving progress:  60%
[   75.776649] PM: Image saving progress:  70%
[   76.049422] PM: Image saving progress:  80%
[   76.342510] sky2 0000:02:00.0 eth0: Link is up at 1000 Mbps, full duplex, flow control both
[   76.484225] PM: Image saving progress:  90%
[   76.815168] PM: Image saving progress: 100%
[   76.995220] PM: Image saving done.
[   76.995236] PM: Wrote 261296 kbytes in 2.80 seconds (93.32 MB/s)
[   76.995911] PM: S|
[   77.102049] Suspending console(s) (use no_console_suspend to debug)
[   77.105165] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[   77.140244] sd 0:0:0:0: [sda] Stopping disk
[   78.126825] parport_pc 00:07: disabled
[   78.128076] serial 00:06: disabled
[   78.128156] serial 00:06: System wakeup disabled by ACPI
[   78.129179] serial 00:05: disabled
[   78.129253] serial 00:05: System wakeup disabled by ACPI
[   78.142143] [drm:i915_get_vblank_counter], trying to get vblank count for disabled pipe B
[   78.170969] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) A: 28
[   78.170979] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) B: 31
[   78.170988] [drm:i9xx_update_wm], FIFO watermarks - A: 26, B: 29
[   78.170999] [drm:i9xx_update_wm], Setting FIFO watermarks - A: 26, B: 29, C: 2, SR 1
[   78.171007] [drm:i9xx_update_wm], memory self refresh disabled
[   78.260176] PM: suspend of devices complete after 1156.505 msecs
[   78.263229] PM: late suspend of devices complete after 3.042 msecs
[   78.420553] pcieport 0000:00:1c.1: System wakeup enabled by ACPI
[   78.576458] ehci-pci 0000:00:1d.7: System wakeup enabled by ACPI
[   78.592248] uhci_hcd 0000:00:1d.3: System wakeup enabled by ACPI
[   78.592398] uhci_hcd 0000:00:1d.2: System wakeup enabled by ACPI
[   78.592549] uhci_hcd 0000:00:1d.1: System wakeup enabled by ACPI
[   78.592699] uhci_hcd 0000:00:1d.0: System wakeup enabled by ACPI
[   78.593681] PM: noirq suspend of devices complete after 330.443 msecs
[   78.594568] ACPI: Preparing to enter system sleep state S3
[   78.598668] PM: Saving platform NVS memory
[   78.598668] ACPI: Low-level resume complete
[   78.598668] PM: Restoring platform NVS memory
[   78.598668] Force enabled HPET at resume
[   78.599056] ACPI: Waking up from system sleep state S3
[   78.633088] uhci_hcd 0000:00:1d.0: System wakeup disabled by ACPI
[   78.633235] uhci_hcd 0000:00:1d.1: System wakeup disabled by ACPI
[   78.633379] uhci_hcd 0000:00:1d.2: System wakeup disabled by ACPI
[   78.633523] uhci_hcd 0000:00:1d.3: System wakeup disabled by ACPI
[   78.648241] ehci-pci 0000:00:1d.7: System wakeup disabled by ACPI
[   78.977634] PM: noirq resume of devices complete after 377.061 msecs
[   78.979928] PM: early resume of devices complete after 2.191 msecs
[   78.981112] i915 0000:00:02.0: setting latency timer to 64
[   78.985193] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
[   78.986538] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[   78.986581] usb usb2: root hub lost power or was reset
[   78.987646] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[   78.987687] usb usb3: root hub lost power or was reset
[   78.988594] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[   78.988624] usb usb5: root hub lost power or was reset
[   78.989148] ehci-pci 0000:00:1d.7: setting latency timer to 64
[   78.989195] pci 0000:00:1e.0: setting latency timer to 64
[   78.989706] PIIX_IDE 0000:00:1f.1: setting latency timer to 64
[   78.990217] ata_piix 0000:00:1f.2: setting latency timer to 64
[   78.990292] pcieport 0000:00:1c.1: System wakeup disabled by ACPI
[   78.993545] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[   78.993575] usb usb4: root hub lost power or was reset
[   79.002031] serial 00:05: activated
[   79.006345] [drm:i915_redisable_vga], Something enabled VGA plane, disabling it
[   79.006704] [drm:intel_opregion_setup], graphic opregion physical addr: 0x0
[   79.006708] [drm:intel_opregion_setup], ACPI OpRegion not supported!
[   79.007131] [drm:i915_gem_context_init], Disabling HW Contexts; old hardware
[   79.007165] [drm:intel_modeset_readout_hw_state], [CRTC:3] hw state readout: disabled
[   79.007171] [drm:intel_modeset_readout_hw_state], [CRTC:4] hw state readout: disabled
[   79.007179] [drm:intel_modeset_readout_hw_state], [ENCODER:6:DAC-6] hw state readout: disabled, pipe=0
[   79.007200] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   79.008305] serial 00:06: activated
[   79.011367] parport_pc 00:07: activated
[   79.016707] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[   79.016714] [drm:intel_modeset_readout_hw_state], [ENCODER:7:TMDS-7] hw state readout: disabled, pipe=0
[   79.016734] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   79.021294] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   79.021301] [drm:intel_modeset_readout_hw_state], [ENCODER:9:DAC-9] hw state readout: disabled, pipe=0
[   79.021308] [drm:intel_modeset_readout_hw_state], [ENCODER:63:TV-63] hw state readout: disabled, pipe=0
[   79.021315] [drm:intel_modeset_readout_hw_state], [CONNECTOR:5:VGA-1] hw state readout: disabled
[   79.021333] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   79.025912] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[   79.025919] [drm:intel_modeset_readout_hw_state], [CONNECTOR:8:DVI-D-1] hw state readout: disabled
[   79.025937] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   79.030502] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   79.030508] [drm:intel_modeset_readout_hw_state], [CONNECTOR:10:SVIDEO-1] hw state readout: disabled
[   79.030526] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   79.035089] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   79.035095] [drm:intel_modeset_readout_hw_state], [CONNECTOR:27:SVIDEO-2] hw state readout: disabled
[   79.035113] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   79.039689] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   79.039695] [drm:intel_modeset_readout_hw_state], [CONNECTOR:44:SVIDEO-3] hw state readout: disabled
[   79.039712] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   79.044300] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   79.044306] [drm:intel_modeset_readout_hw_state], [CONNECTOR:61:VGA-2] hw state readout: disabled
[   79.044312] [drm:intel_modeset_readout_hw_state], [CONNECTOR:62:SVIDEO-4] hw state readout: disabled
[   79.044320] [drm:intel_dump_pipe_config], [CRTC:3][setup_hw_state] config for pipe A
[   79.044325] [drm:intel_dump_pipe_config], cpu_transcoder: A
[   79.044329] [drm:intel_dump_pipe_config], pipe bpp: 0, dithering: 0
[   79.044336] [drm:intel_dump_pipe_config], fdi/pch: 0, lanes: 0, gmch_m: 0, gmch_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.044340] [drm:intel_dump_pipe_config], requested mode:
[   79.044348] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[   79.044352] [drm:intel_dump_pipe_config], adjusted mode:
[   79.044359] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[   79.044364] [drm:intel_dump_pipe_config], gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[   79.044369] [drm:intel_dump_pipe_config], pch pfit: pos: 0x00000000, size: 0x00000000
[   79.044373] [drm:intel_dump_pipe_config], ips: 0
[   79.044379] [drm:intel_dump_pipe_config], [CRTC:4][setup_hw_state] config for pipe B
[   79.044383] [drm:intel_dump_pipe_config], cpu_transcoder: B
[   79.044388] [drm:intel_dump_pipe_config], pipe bpp: 0, dithering: 0
[   79.044394] [drm:intel_dump_pipe_config], fdi/pch: 0, lanes: 0, gmch_m: 0, gmch_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.044398] [drm:intel_dump_pipe_config], requested mode:
[   79.044406] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[   79.044410] [drm:intel_dump_pipe_config], adjusted mode:
[   79.044417] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[   79.044422] [drm:intel_dump_pipe_config], gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[   79.044427] [drm:intel_dump_pipe_config], pch pfit: pos: 0x00000000, size: 0x00000000
[   79.044431] [drm:intel_dump_pipe_config], ips: 0
[   79.044438] [drm:intel_modeset_affected_pipes], set mode pipe masks: modeset: 1, prepare: 1, disable: 0
[   79.044447] [drm:connected_sink_compute_bpp], [CONNECTOR:5:VGA-1] checking for sink bpp constrains
[   79.044454] [drm:intel_modeset_pipe_config], plane bpp: 24, pipe bpp: 24, dithering: 0
[   79.044459] [drm:intel_dump_pipe_config], [CRTC:3][modeset] config for pipe A
[   79.044463] [drm:intel_dump_pipe_config], cpu_transcoder: A
[   79.044467] [drm:intel_dump_pipe_config], pipe bpp: 24, dithering: 0
[   79.044473] [drm:intel_dump_pipe_config], fdi/pch: 0, lanes: 0, gmch_m: 0, gmch_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.044477] [drm:intel_dump_pipe_config], requested mode:
[   79.044486] [drm:drm_mode_debug_printmodeline], Modeline 0:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   79.044489] [drm:intel_dump_pipe_config], adjusted mode:
[   79.044498] [drm:drm_mode_debug_printmodeline], Modeline 0:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   79.044503] [drm:intel_dump_pipe_config], gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[   79.044508] [drm:intel_dump_pipe_config], pch pfit: pos: 0x00000000, size: 0x00000000
[   79.044512] [drm:intel_dump_pipe_config], ips: 0
[   79.045085] [drm:i9xx_update_plane], Writing base 00020000 00000000 0 0 5120
[   79.045093] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) A: 28
[   79.045098] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) B: 31
[   79.045103] [drm:i9xx_update_wm], FIFO watermarks - A: 26, B: 29
[   79.045109] [drm:i9xx_update_wm], Setting FIFO watermarks - A: 26, B: 29, C: 2, SR 1
[   79.045113] [drm:i9xx_update_wm], memory self refresh disabled
[   79.045120] [drm:intel_crtc_mode_set], [ENCODER:6:DAC-6] set [MODE:0:1280x1024]
[   79.045127] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) A: 28
[   79.045132] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) B: 31
[   79.045137] [drm:intel_calculate_wm], FIFO entries required for mode: 43
[   79.045141] [drm:intel_calculate_wm], FIFO watermark level: -14
[   79.045146] [drm:i9xx_update_wm], FIFO watermarks - A: 26, B: 1
[   79.045150] [drm:i9xx_update_wm], self-refresh entries: 80
[   79.045156] [drm:i9xx_update_wm], Setting FIFO watermarks - A: 26, B: 1, C: 2, SR 15
[   79.045160] [drm:i9xx_update_wm], memory self refresh enabled
[   79.060087] [drm:intel_modeset_affected_pipes], set mode pipe masks: modeset: 0, prepare: 0, disable: 0
[   79.060103] [drm:intel_connector_check_state], [CONNECTOR:5:VGA-1]
[   79.060140] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   79.064949] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[   79.064985] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   79.069792] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   79.069828] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   79.074534] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   79.074552] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   79.079195] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   79.079213] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   79.083777] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   79.083783] [drm:check_encoder_state], [ENCODER:6:DAC-6]
[   79.083789] [drm:check_encoder_state], [ENCODER:7:TMDS-7]
[   79.083807] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   79.088414] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[   79.088420] [drm:check_encoder_state], [ENCODER:9:DAC-9]
[   79.088438] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   79.093005] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   79.093011] [drm:check_encoder_state], [ENCODER:63:TV-63]
[   79.093016] [drm:check_crtc_state], [CRTC:3]
[   79.093025] [drm:check_crtc_state], [CRTC:4]
[   79.093038] [drm:intel_resume_hotplug], running encoder hotplug functions
[   79.093056] [drm:intel_sdvo_debug_write], SDVOB: W: 0D 01 00                   (SDVO_CMD_SET_ACTIVE_HOT_PLUG)
[   79.096523] [drm:intel_crtc_set_config], [CRTC:3] [FB:95] #connectors=1 (x y) (0 0)
[   79.096533] [drm:intel_modeset_stage_output_state], [CONNECTOR:5:VGA-1] to [CRTC:3]
[   79.109048] hda: host max PIO4 wanted PIO255(auto-tune) selected PIO4
[   79.120044] hda: UDMA/100 mode selected
[   81.454879] sky2 0000:02:00.0 eth0: Link is up at 1000 Mbps, full duplex, flow control both
[   84.032051] ata1: link is slow to respond, please be patient (ready=0)
[   86.154319] ata1.00: configured for UDMA/133
[   86.189215] sd 0:0:0:0: [sda] Starting disk
[   86.218168] PM: resume of devices complete after 7238.228 msecs
[   86.678269] Restarting tasks ... done.
[   86.684110] PM: Basic memory bitmaps freed
[   89.124044] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[   89.124069] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[   89.124084] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[   89.124098] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[   89.156632] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[   89.156652] [drm:intel_crt_detect_ddc], CRT detected via DDC:0x50 [EDID]
[   89.156668] [drm:output_poll_execute], [CONNECTOR:5:VGA-1] status updated from unknown to connected
[   89.156690] [drm:intel_sdvo_debug_write], SDVOC: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
[   89.158470] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   89.207078] [drm:intel_sdvo_detect], SDVO response 0 0 [2]
[   89.207096] [drm:output_poll_execute], [CONNECTOR:61:VGA-2] status updated from unknown to disconnected
[   89.210488] [drm:drm_fb_helper_hotplug_event], 
[   89.210508] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:VGA-1]
[   89.215762] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[   89.215786] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[   89.215802] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[   89.215816] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[   89.250020] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[   89.250040] [drm:intel_crt_detect_ddc], CRT detected via DDC:0x50 [EDID]
[   89.252551] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[   89.252561] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[   89.252569] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[   89.252575] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[   89.283510] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[   89.283628] [drm:drm_edid_to_eld], ELD: no CEA Extension found
[   89.283684] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:VGA-1] probed modes :
[   89.283692] [drm:drm_mode_debug_printmodeline], Modeline 86:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   89.283703] [drm:drm_mode_debug_printmodeline], Modeline 78:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   89.283714] [drm:drm_mode_debug_printmodeline], Modeline 93:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   89.283725] [drm:drm_mode_debug_printmodeline], Modeline 87:"1024x768" 75 78800 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   89.283735] [drm:drm_mode_debug_printmodeline], Modeline 88:"1024x768" 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[   89.283745] [drm:drm_mode_debug_printmodeline], Modeline 89:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   89.283755] [drm:drm_mode_debug_printmodeline], Modeline 90:"832x624" 75 57284 832 864 928 1152 624 625 628 667 0x40 0xa
[   89.283766] [drm:drm_mode_debug_printmodeline], Modeline 91:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   89.283776] [drm:drm_mode_debug_printmodeline], Modeline 92:"800x600" 72 50000 800 856 976 1040 600 637 643 666 0x40 0x5
[   89.283787] [drm:drm_mode_debug_printmodeline], Modeline 79:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   89.283797] [drm:drm_mode_debug_printmodeline], Modeline 80:"800x600" 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[   89.283807] [drm:drm_mode_debug_printmodeline], Modeline 81:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   89.283818] [drm:drm_mode_debug_printmodeline], Modeline 82:"640x480" 73 31500 640 664 704 832 480 489 491 520 0x40 0xa
[   89.283828] [drm:drm_mode_debug_printmodeline], Modeline 83:"640x480" 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[   89.283838] [drm:drm_mode_debug_printmodeline], Modeline 84:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[   89.283848] [drm:drm_mode_debug_printmodeline], Modeline 85:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   89.283861] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:8:DVI-D-1]
[   89.283870] [drm:intel_sdvo_debug_write], SDVOB: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
[   89.289567] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[   89.293398] [drm:intel_sdvo_detect], SDVO response 0 0 [1]
[   89.293407] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:8:DVI-D-1] disconnected
[   89.293415] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:10:SVIDEO-1]
[   89.293424] [drm:intel_sdvo_debug_write], SDVOC: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
[   89.295097] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   89.343093] [drm:intel_sdvo_detect], SDVO response 0 0 [8]
[   89.343110] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:10:SVIDEO-1] disconnected
[   89.343127] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:SVIDEO-2]
[   89.343145] [drm:intel_sdvo_debug_write], SDVOC: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
[   89.347721] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   89.395090] [drm:intel_sdvo_detect], SDVO response 0 0 [4]
[   89.395107] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:27:SVIDEO-2] disconnected
[   89.395124] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:44:SVIDEO-3]
[   89.395142] [drm:intel_sdvo_debug_write], SDVOC: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
[   89.399256] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   89.447089] [drm:intel_sdvo_detect], SDVO response 0 0 [10]
[   89.447106] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:44:SVIDEO-3] disconnected
[   89.447123] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:61:VGA-2]
[   89.447140] [drm:intel_sdvo_debug_write], SDVOC: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
[   89.451512] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   89.499090] [drm:intel_sdvo_detect], SDVO response 0 0 [2]
[   89.499107] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:61:VGA-2] disconnected
[   89.499124] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:62:SVIDEO-4]
[   89.499142] [drm:intel_get_load_detect_pipe], [CONNECTOR:62:SVIDEO-4], [ENCODER:63:TV-63]
[   89.499196] [drm:intel_get_load_detect_pipe], reusing fbdev for load-detection framebuffer
[   89.499214] [drm:intel_modeset_affected_pipes], set mode pipe masks: modeset: 2, prepare: 2, disable: 0
[   89.499236] [drm:connected_sink_compute_bpp], [CONNECTOR:62:SVIDEO-4] checking for sink bpp constrains
[   89.499253] [drm:intel_tv_compute_config], forcing bpc to 8 for TV
[   89.499266] [drm:intel_modeset_pipe_config], plane bpp: 24, pipe bpp: 24, dithering: 0
[   89.499282] [drm:intel_dump_pipe_config], [CRTC:4][modeset] config for pipe B
[   89.499297] [drm:intel_dump_pipe_config], cpu_transcoder: B
[   89.499309] [drm:intel_dump_pipe_config], pipe bpp: 24, dithering: 0
[   89.499323] [drm:intel_dump_pipe_config], fdi/pch: 0, lanes: 0, gmch_m: 0, gmch_n: 0, link_m: 0, link_n: 0, tu: 0
[   89.499340] [drm:intel_dump_pipe_config], requested mode:
[   89.499352] [drm:drm_mode_debug_printmodeline], Modeline 0:"NTSC 480i" 0 107520 1280 1368 1496 1712 1024 1027 1034 1104 0x40 0x0
[   89.499373] [drm:intel_dump_pipe_config], adjusted mode:
[   89.499386] [drm:drm_mode_debug_printmodeline], Modeline 0:"NTSC 480i" 0 108000 1280 1368 1496 1712 1024 1027 1034 1104 0x40 0x0
[   89.499406] [drm:intel_dump_pipe_config], gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[   89.499422] [drm:intel_dump_pipe_config], pch pfit: pos: 0x00000000, size: 0x00000000
[   89.499436] [drm:intel_dump_pipe_config], ips: 0
[   89.502809] [drm:i9xx_update_plane], Writing base 00020000 00000000 0 0 5120
[   89.502835] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) A: 28
[   89.502851] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) B: 31
[   89.502866] [drm:intel_calculate_wm], FIFO entries required for mode: 43
[   89.502880] [drm:intel_calculate_wm], FIFO watermark level: -14
[   89.502893] [drm:i9xx_update_wm], FIFO watermarks - A: 26, B: 1
[   89.502908] [drm:i9xx_update_wm], self-refresh entries: 80
[   89.502921] [drm:i9xx_update_wm], Setting FIFO watermarks - A: 26, B: 1, C: 2, SR 15
[   89.502937] [drm:i9xx_update_wm], memory self refresh enabled
[   89.502954] [drm:intel_crtc_mode_set], [ENCODER:63:TV-63] set [MODE:0:NTSC 480i]
[   89.507976] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) A: 28
[   89.507994] [drm:intel_calculate_wm], FIFO entries required for mode: 34
[   89.508310] [drm:intel_calculate_wm], FIFO watermark level: -8
[   89.508327] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) B: 31
[   89.508342] [drm:intel_calculate_wm], FIFO entries required for mode: 43
[   89.508356] [drm:intel_calculate_wm], FIFO watermark level: -14
[   89.508369] [drm:i9xx_update_wm], FIFO watermarks - A: 1, B: 1
[   89.508383] [drm:i9xx_update_wm], Setting FIFO watermarks - A: 1, B: 1, C: 2, SR 1
[   89.508399] [drm:i9xx_update_wm], memory self refresh disabled
[   89.532052] [drm:intel_connector_check_state], [CONNECTOR:5:VGA-1]
[   89.532074] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   89.539965] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[   89.543042] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   89.545143] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   89.548217] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   89.549994] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   89.553412] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   89.560539] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   89.563593] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   89.567423] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   89.570503] [drm:intel_connector_check_state], [CONNECTOR:62:SVIDEO-4]
[   89.570520] [drm:check_encoder_state], [ENCODER:6:DAC-6]
[   89.570536] [drm:check_encoder_state], [ENCODER:7:TMDS-7]
[   89.570553] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   89.573900] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[   89.577006] [drm:check_encoder_state], [ENCODER:9:DAC-9]
[   89.577025] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   89.578800] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   89.582267] [drm:check_encoder_state], [ENCODER:63:TV-63]
[   89.582283] [drm:check_crtc_state], [CRTC:3]
[   89.582305] [drm:check_crtc_state], [CRTC:4]
[   89.620055] [drm:intel_tv_detect_type], TV detected: 400c0c07, 7f0000aa
[   89.620074] [drm:intel_tv_detect_type], Unrecognised TV connection
[   89.636063] [drm:intel_release_load_detect_pipe], [CONNECTOR:62:SVIDEO-4], [ENCODER:63:TV-63]
[   89.636086] [drm:intel_modeset_affected_pipes], set mode pipe masks: modeset: 0, prepare: 0, disable: 2
[   89.675306] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) A: 28
[   89.675327] [drm:i9xx_get_fifo_size], FIFO size - (0x00001d9c) B: 31
[   89.675342] [drm:intel_calculate_wm], FIFO entries required for mode: 43
[   89.675355] [drm:intel_calculate_wm], FIFO watermark level: -14
[   89.675368] [drm:i9xx_update_wm], FIFO watermarks - A: 26, B: 1
[   89.675383] [drm:i9xx_update_wm], self-refresh entries: 80
[   89.675396] [drm:i9xx_update_wm], Setting FIFO watermarks - A: 26, B: 1, C: 2, SR 15
[   89.675412] [drm:i9xx_update_wm], memory self refresh enabled
[   89.675437] [drm:intel_connector_check_state], [CONNECTOR:5:VGA-1]
[   89.675455] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   89.681098] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[   89.684621] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   89.686402] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   89.689854] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   89.691633] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   89.695124] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   89.697217] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   89.705264] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   89.707043] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   89.711177] [drm:check_encoder_state], [ENCODER:6:DAC-6]
[   89.711194] [drm:check_encoder_state], [ENCODER:7:TMDS-7]
[   89.711212] [drm:intel_sdvo_debug_write], SDVOB: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   89.714147] [drm:intel_sdvo_read_response], SDVOB: R: (Success) 00 00
[   89.717225] [drm:check_encoder_state], [ENCODER:9:DAC-9]
[   89.717244] [drm:intel_sdvo_debug_write], SDVOC: W: 04                         (SDVO_CMD_GET_ACTIVE_OUTPUTS)
[   89.719021] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   89.724644] [drm:check_encoder_state], [ENCODER:63:TV-63]
[   89.724660] [drm:check_crtc_state], [CRTC:3]
[   89.724680] [drm:check_crtc_state], [CRTC:4]
[   89.724697] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:62:SVIDEO-4] disconnected
[   89.724721] [drm:drm_setup_crtcs], 
[   89.724737] [drm:drm_enable_connectors], connector 5 enabled? yes
[   89.724751] [drm:drm_enable_connectors], connector 8 enabled? no
[   89.724765] [drm:drm_enable_connectors], connector 10 enabled? no
[   89.724778] [drm:drm_enable_connectors], connector 27 enabled? no
[   89.724792] [drm:drm_enable_connectors], connector 44 enabled? no
[   89.724806] [drm:drm_enable_connectors], connector 61 enabled? no
[   89.724819] [drm:drm_enable_connectors], connector 62 enabled? no
[   89.724833] [drm:drm_target_preferred], looking for cmdline mode on connector 5
[   89.724848] [drm:drm_target_preferred], looking for preferred mode on connector 5
[   89.724864] [drm:drm_target_preferred], found mode 1280x1024
[   89.724877] [drm:drm_setup_crtcs], picking CRTCs for 4096x4096 config
[   89.724896] [drm:drm_setup_crtcs], desired mode 1280x1024 set on crtc 3
[   89.724958] [drm:intel_crtc_set_config], [CRTC:3] [FB:95] #connectors=1 (x y) (0 0)
[   89.724983] [drm:intel_modeset_stage_output_state], [CONNECTOR:5:VGA-1] to [CRTC:3]
[   89.725003] [drm:intel_crtc_set_config], [CRTC:4] [NOFB]
[   89.725022] [drm:intel_modeset_stage_output_state], [CONNECTOR:5:VGA-1] to [CRTC:3]
[   99.744078] [drm:intel_sdvo_debug_write], SDVOC: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
[   99.745873] [drm:intel_sdvo_read_response], SDVOC: R: (Success) 00 00
[   99.795090] [drm:intel_sdvo_detect], SDVO response 0 0 [2]
Daniel Vetter July 11, 2013, 5:22 p.m. UTC | #4
On Thu, Jul 11, 2013 at 06:29:15PM +0200, Knut Petersen wrote:
> On 11.07.2013 13:49, Chris Wilson wrote:
> >On Thu, Jul 11, 2013 at 01:35:40PM +0200, Daniel Vetter wrote:
> >>It's in the PFIT_CONTROL register, but very much associated with the
> >>lvds encoder. So move the readout for it (in the case of an otherwise
> >>disabled pfit) from the pipe to the lvds encoder's get_config
> >>function.
> >>
> >>Otherwise we get a pipe state mismatch if we use pipe B for a non-lvds
> >>output and we've left the dither bit enabled behind us. This can
> >>happen if the BIOS has set the bit (some seem to unconditionally do
> >>that, even in the complete absence of an lvds port), but not enabled
> >>pipe B at boot-up. Then we won't clear the pfit control register since
> >>we can only touch that if the pfit is associated with our pipe in the
> >>crtc configuration - we could trample over the pfit state of the other
> >>pipe otherwise since it's shared. Once pipe B is enabled we notice
> >>that the 6to8 dither bit is set and complain about the mismatch.
> >>
> >>Note that testing indicates that we don't actually need to set this
> >>bit when the pfit is disabled, dithering on 18bpp panels seems to work
> >>regardless. But ripping that code out is not something for a bugfix
> >>meant for -rc kernels.
> >>
> >>v2: While at it clarify the logic in i9xx_get_pfit_config, spurred by
> >>comments from Chris on irc.
> >>
> >>v3: Use Chris suggestion to make the control flow in
> >>i9xx_get_pfit_config easier to understand.
> >>
> >>v4: Kill the extra line, spotted by Chris.
> >>
> >>Reported-by: Knut Petersen <Knut_Petersen@t-online.de>
> >>Cc: Knut Petersen <Knut_Petersen@t-online.de>
> >>Cc: Chris Wilson <chris@chris-wilson.co.uk>
> >>References: http://lists.freedesktop.org/archives/intel-gfx/2013-July/030092.html
> >>Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
> >Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
> >-Chris
> >
> 
> Tested-by: Knut Petersen <Knut_Petersen@t-online.de>
> 
> Thanks, that patch cures both inital boot and suspend/resume problems.
> Attached find dmesg (inital boot) and dmesg2 (suspend/resume cycle).

Thanks for testing and reporting this issue, patch is merged into my
-fixes queue now.

Thanks, Daniel
Knut Petersen July 22, 2013, 4:55 a.m. UTC | #5
On 11.07.2013 19:22, Daniel Vetter wrote:
> On Thu, Jul 11, 2013 at 06:29:15PM +0200, Knut Petersen wrote:
>> On 11.07.2013 13:49, Chris Wilson wrote:
>>> On Thu, Jul 11, 2013 at 01:35:40PM +0200, Daniel Vetter wrote:
>>>> It's in the PFIT_CONTROL register, but very much associated with the
>>>> lvds encoder. So move the readout for it (in the case of an otherwise
>>>> disabled pfit) from the pipe to the lvds encoder's get_config
>>>> function.
>>>>
>>>> Otherwise we get a pipe state mismatch if we use pipe B for a non-lvds
>>>> output and we've left the dither bit enabled behind us. This can
>>>> happen if the BIOS has set the bit (some seem to unconditionally do
>>>> that, even in the complete absence of an lvds port), but not enabled
>>>> pipe B at boot-up. Then we won't clear the pfit control register since
>>>> we can only touch that if the pfit is associated with our pipe in the
>>>> crtc configuration - we could trample over the pfit state of the other
>>>> pipe otherwise since it's shared. Once pipe B is enabled we notice
>>>> that the 6to8 dither bit is set and complain about the mismatch.
>>>>
>>>> Note that testing indicates that we don't actually need to set this
>>>> bit when the pfit is disabled, dithering on 18bpp panels seems to work
>>>> regardless. But ripping that code out is not something for a bugfix
>>>> meant for -rc kernels.
>>>>
>>>> v2: While at it clarify the logic in i9xx_get_pfit_config, spurred by
>>>> comments from Chris on irc.
>>>>
>>>> v3: Use Chris suggestion to make the control flow in
>>>> i9xx_get_pfit_config easier to understand.
>>>>
>>>> v4: Kill the extra line, spotted by Chris.
>>>>
>>>> Reported-by: Knut Petersen <Knut_Petersen@t-online.de>
>>>> Cc: Knut Petersen <Knut_Petersen@t-online.de>
>>>> Cc: Chris Wilson <chris@chris-wilson.co.uk>
>>>> References: http://lists.freedesktop.org/archives/intel-gfx/2013-July/030092.html
>>>> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
>>> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
>>> -Chris
>>>
>> Tested-by: Knut Petersen <Knut_Petersen@t-online.de>
>>
>> Thanks, that patch cures both inital boot and suspend/resume problems.
>> Attached find dmesg (inital boot) and dmesg2 (suspend/resume cycle).
> Thanks for testing and reporting this issue, patch is merged into my
> -fixes queue now.
>
> Thanks, Daniel
We have -rc2, but this patch is still missing ...

cu,
  Knut
Daniel Vetter July 22, 2013, 6:02 a.m. UTC | #6
On Mon, Jul 22, 2013 at 06:55:55AM +0200, Knut Petersen wrote:
> On 11.07.2013 19:22, Daniel Vetter wrote:
> >On Thu, Jul 11, 2013 at 06:29:15PM +0200, Knut Petersen wrote:
> >>On 11.07.2013 13:49, Chris Wilson wrote:
> >>>On Thu, Jul 11, 2013 at 01:35:40PM +0200, Daniel Vetter wrote:
> >>>>It's in the PFIT_CONTROL register, but very much associated with the
> >>>>lvds encoder. So move the readout for it (in the case of an otherwise
> >>>>disabled pfit) from the pipe to the lvds encoder's get_config
> >>>>function.
> >>>>
> >>>>Otherwise we get a pipe state mismatch if we use pipe B for a non-lvds
> >>>>output and we've left the dither bit enabled behind us. This can
> >>>>happen if the BIOS has set the bit (some seem to unconditionally do
> >>>>that, even in the complete absence of an lvds port), but not enabled
> >>>>pipe B at boot-up. Then we won't clear the pfit control register since
> >>>>we can only touch that if the pfit is associated with our pipe in the
> >>>>crtc configuration - we could trample over the pfit state of the other
> >>>>pipe otherwise since it's shared. Once pipe B is enabled we notice
> >>>>that the 6to8 dither bit is set and complain about the mismatch.
> >>>>
> >>>>Note that testing indicates that we don't actually need to set this
> >>>>bit when the pfit is disabled, dithering on 18bpp panels seems to work
> >>>>regardless. But ripping that code out is not something for a bugfix
> >>>>meant for -rc kernels.
> >>>>
> >>>>v2: While at it clarify the logic in i9xx_get_pfit_config, spurred by
> >>>>comments from Chris on irc.
> >>>>
> >>>>v3: Use Chris suggestion to make the control flow in
> >>>>i9xx_get_pfit_config easier to understand.
> >>>>
> >>>>v4: Kill the extra line, spotted by Chris.
> >>>>
> >>>>Reported-by: Knut Petersen <Knut_Petersen@t-online.de>
> >>>>Cc: Knut Petersen <Knut_Petersen@t-online.de>
> >>>>Cc: Chris Wilson <chris@chris-wilson.co.uk>
> >>>>References: http://lists.freedesktop.org/archives/intel-gfx/2013-July/030092.html
> >>>>Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
> >>>Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
> >>>-Chris
> >>>
> >>Tested-by: Knut Petersen <Knut_Petersen@t-online.de>
> >>
> >>Thanks, that patch cures both inital boot and suspend/resume problems.
> >>Attached find dmesg (inital boot) and dmesg2 (suspend/resume cycle).
> >Thanks for testing and reporting this issue, patch is merged into my
> >-fixes queue now.
> >
> >Thanks, Daniel
> We have -rc2, but this patch is still missing ...

I'm flushing out my current -fixes to with a pull request to Dave today.
I've had a bit a hold-up with other regressions unfortunately.
-Daniel
diff mbox

Patch

diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
index 85f3eb7..c59335c 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -4913,22 +4913,19 @@  static void i9xx_get_pfit_config(struct intel_crtc *crtc,
 	uint32_t tmp;
 
 	tmp = I915_READ(PFIT_CONTROL);
+	if (!(tmp & PFIT_ENABLE))
+		return;
 
+	/* Check whether the pfit is attached to our pipe. */
 	if (INTEL_INFO(dev)->gen < 4) {
 		if (crtc->pipe != PIPE_B)
 			return;
-
-		/* gen2/3 store dither state in pfit control, needs to match */
-		pipe_config->gmch_pfit.control = tmp & PANEL_8TO6_DITHER_ENABLE;
 	} else {
 		if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
 			return;
 	}
 
-	if (!(tmp & PFIT_ENABLE))
-		return;
-
-	pipe_config->gmch_pfit.control = I915_READ(PFIT_CONTROL);
+	pipe_config->gmch_pfit.control = tmp;
 	pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
 	if (INTEL_INFO(dev)->gen < 5)
 		pipe_config->gmch_pfit.lvds_border_bits =
diff --git a/drivers/gpu/drm/i915/intel_lvds.c b/drivers/gpu/drm/i915/intel_lvds.c
index 2abb2d3..1207998 100644
--- a/drivers/gpu/drm/i915/intel_lvds.c
+++ b/drivers/gpu/drm/i915/intel_lvds.c
@@ -109,6 +109,13 @@  static void intel_lvds_get_config(struct intel_encoder *encoder,
 		flags |= DRM_MODE_FLAG_PVSYNC;
 
 	pipe_config->adjusted_mode.flags |= flags;
+
+	/* gen2/3 store dither state in pfit control, needs to match */
+	if (INTEL_INFO(dev)->gen < 4) {
+		tmp = I915_READ(PFIT_CONTROL);
+
+		pipe_config->gmch_pfit.control |= tmp & PANEL_8TO6_DITHER_ENABLE;
+	}
 }
 
 /* The LVDS pin pair needs to be on before the DPLLs are enabled.