[alsa-devel] snd_hda_codec_hdmi: `hdaudio hdaudioC0D2: Unable to bind the codec`

Paul Menzel pmenzel+alsa-devel at molgen.mpg.de
Wed Sep 19 13:14:43 CEST 2018


Dear Takashi,

On 09/18/18 23:00, Takashi Iwai wrote:
> On Tue, 18 Sep 2018 17:55:15 +0200, Paul Menzel wrote:

>> With drm-tip (v4.19-rc3-946-g09b295662edd) Linux prints
>> `snd_hda_codec_hdmi hdaudioC0D2: No i915 binding for Intel HDMI/DP codec`
>> to the log.
>>
>> ```
>> […]
>> [   12.481788] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC671: line_outs=1 (0x21/0x0/0x0/0x0/0x0) type:line
>> [   12.482536] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=1 (0x17/0x0/0x0/0x0/0x0)
>> [   12.483184] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x14/0x0/0x0/0x0/0x0)
>> [   12.483737] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
>> [   12.484198] snd_hda_codec_realtek hdaudioC0D0:    inputs:
>> [   12.484582] snd_hda_codec_realtek hdaudioC0D0:      Front Mic=0x19
>> [   12.485100] snd_hda_codec_realtek hdaudioC0D0:      Rear Mic=0x18
>> [   12.485519] snd_hda_codec_realtek hdaudioC0D0:      Line=0x1a
>> [   12.497685] snd_hda_codec_hdmi hdaudioC0D2: No i915 binding for Intel HDMI/DP codec
>> [   12.498311] hdaudio hdaudioC0D2: Unable to bind the codec
>> [   12.498789] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input6
>> [   12.499567] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input7
>> [   12.500268] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1f.3/sound/card0/input8
>> [   12.501039] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1f.3/sound/card0/input9
>> [   12.501683] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input10
>> [   17.743338] [drm:intel_pch_type [i915]] Found SunrisePoint PCH
>> […]
>> ```
>>
>> Is that an error or just a notice?
> 
> This must be a side-effect of the recent change in i915 to be async
> probe.  This made me checking the corresponding ALSA audio binding
> code change, and actually found a bug.
> 
> Could you try the fix below?

Thank you for your quick reply. Of course, and can try it.

> -- 8< --
> From: Takashi Iwai <tiwai at suse.de>
> Subject: [PATCH] ALSA: hda: Fix the audio-component completion timeout
> 
> The timeout of audio component binding was incorrectly specified in
> msec, not in jiffies, which results in way too shorter timeout than
> expected.
> 
> Along with fixing it, add the information print about the binding
> failure to show the unexpected situation more clearly.
> 
> Fixes: a57942bfdd61 ("ALSA: hda: Make audio component support more generic")
> Signed-off-by: Takashi Iwai <tiwai at suse.de>
> ---
>  sound/hda/hdac_i915.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/sound/hda/hdac_i915.c b/sound/hda/hdac_i915.c
> index b5282cbbe489..617ff1aa818f 100644
> --- a/sound/hda/hdac_i915.c
> +++ b/sound/hda/hdac_i915.c
> @@ -145,9 +145,11 @@ int snd_hdac_i915_init(struct hdac_bus *bus)
>  	if (!acomp->ops) {
>  		request_module("i915");
>  		/* 10s timeout */
> -		wait_for_completion_timeout(&bind_complete, 10 * 1000);
> +		wait_for_completion_timeout(&bind_complete,
> +					    msecs_to_jiffies(10 * 1000));
>  	}
>  	if (!acomp->ops) {
> +		dev_info(bus->dev, "couldn't bind with audio component\n");
>  		snd_hdac_acomp_exit(bus);
>  		return -ENODEV;
>  	}

Unfortunately, it doesn’t seem to help.

```
[   12.471105] snd_hda_intel 0000:00:1f.3: couldn't bind with audio component
[   12.483298] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC671: line_outs=1 (0x21/0x0/0x0/0x0/0x0) type:line
[   12.484068] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=1 (0x17/0x0/0x0/0x0/0x0)
[   12.484643] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x14/0x0/0x0/0x0/0x0)
[   12.485268] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[   12.485700] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[   12.486135] snd_hda_codec_realtek hdaudioC0D0:      Front Mic=0x19
[   12.486558] snd_hda_codec_realtek hdaudioC0D0:      Rear Mic=0x18
[   12.487051] snd_hda_codec_realtek hdaudioC0D0:      Line=0x1a
[   12.498994] snd_hda_codec_hdmi hdaudioC0D2: No i915 binding for Intel HDMI/DP codec
[   12.499707] hdaudio hdaudioC0D2: Unable to bind the codec
[   12.500294] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input6
[   12.501194] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input7
[   12.502084] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1f.3/sound/card0/input8
[   12.502800] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1f.3/sound/card0/input9
[   12.503525] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input10
[   17.734286] [drm:intel_pch_type [i915]] Found SunrisePoint PCH
[   17.734300] [drm:i915_driver_load [i915]] WOPCM size: 1024KiB
```


Kind regards,

Paul
-------------- next part --------------
[    0.000000] Linux version 4.19.0-rc4.mx64.220-00947-g2496c37018b5 (pmenzel at bohemianrhapsody.molgen.mpg.de) (gcc version 7.3.0 (GCC)) #3 SMP Wed Sep 19 12:13:44 CEST 2018
[    0.000000] Command line: BOOT_IMAGE=/boot/bzImage.test crashkernel=256M root=LABEL=root ro console=ttyS1,115200n8 console=tty0 init=/bin/systemd audit=0 drm.debug=0x1e log_buf_len=32M
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
[    0.000000] x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
[    0.000000] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009c7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009c800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000be173fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000be174000-0x00000000be174fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000be175000-0x00000000be1befff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000be1bf000-0x00000000c4d2ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000c4d30000-0x00000000c5c45fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c5c46000-0x00000000c5c72fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000c5c73000-0x00000000c9a86fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000c9a87000-0x00000000c9efdfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c9efe000-0x00000000c9efefff] usable
[    0.000000] BIOS-e820: [mem 0x00000000c9f00000-0x00000000c9ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000022e7fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 3.0.0 present.
[    0.000000] DMI: FUJITSU ESPRIMO_P756/D3401-A1, BIOS V5.0.0.11 R1.13.0 for D3401-A1x                    02/19/2016
[    0.000000] tsc: Detected 3400.000 MHz processor
[    0.001046] tsc: Detected 3408.000 MHz TSC
[    0.001046] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.001047] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.001052] last_pfn = 0x22e800 max_arch_pfn = 0x400000000
[    0.001053] MTRR default type: write-back
[    0.001054] MTRR fixed ranges enabled:
[    0.001054]   00000-9FFFF write-back
[    0.001055]   A0000-BFFFF uncachable
[    0.001055]   C0000-FFFFF write-protect
[    0.001056] MTRR variable ranges enabled:
[    0.001056]   0 base 00E0000000 mask 7FE0000000 uncachable
[    0.001057]   1 base 00D0000000 mask 7FF0000000 uncachable
[    0.001057]   2 base 00CC000000 mask 7FFC000000 uncachable
[    0.001058]   3 base 00CB000000 mask 7FFF000000 uncachable
[    0.001058]   4 disabled
[    0.001058]   5 disabled
[    0.001058]   6 disabled
[    0.001058]   7 disabled
[    0.001059]   8 disabled
[    0.001059]   9 disabled
[    0.002047] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.002387] last_pfn = 0xc9eff max_arch_pfn = 0x400000000
[    0.007171] found SMP MP-table at [mem 0x000fcb70-0x000fcb7f] mapped at [(____ptrval____)]
[    0.007178] Base memory trampoline at [(____ptrval____)] 96000 size 24576
[    0.007181] Using GB pages for direct mapping
[    0.007183] BRK [0x02b92000, 0x02b92fff] PGTABLE
[    0.007184] BRK [0x02b93000, 0x02b93fff] PGTABLE
[    0.007184] BRK [0x02b94000, 0x02b94fff] PGTABLE
[    0.007214] BRK [0x02b95000, 0x02b95fff] PGTABLE
[    0.007431] BRK [0x02b96000, 0x02b96fff] PGTABLE
[    0.007471] BRK [0x02b97000, 0x02b97fff] PGTABLE
[    0.009381] log_buf_len: 33554432 bytes
[    0.009383] early log buf free: 126544(96%)
[    0.009385] RAMDISK: [mem 0x375e7000-0x37aeafff]
[    0.009400] ACPI: Early table checksum verification disabled
[    0.009426] ACPI: RSDP 0x00000000000F05B0 000024 (v02 FUJ   )
[    0.009429] ACPI: XSDT 0x00000000C5C4B0A8 0000CC (v01 FUJ    PC       11300000 AMI  00010013)
[    0.009432] ACPI: FACP 0x00000000C5C68440 00010C (v05 FUJ    D3401-A1 11300000 AMI  00010013)
[    0.009436] ACPI: DSDT 0x00000000C5C4B200 01D240 (v02 FUJ    D3401-A1 11300000 INTL 20120913)
[    0.009438] ACPI: FACS 0x00000000C9A86F80 000040
[    0.009439] ACPI: APIC 0x00000000C5C68550 0000BC (v03 FUJ    D3401-A1 11300000 AMI  00010013)
[    0.009441] ACPI: FPDT 0x00000000C5C68610 000044 (v01 FUJ    D3401-A1 11300000 AMI  00010013)
[    0.009443] ACPI: FIDT 0x00000000C5C68658 00009C (v01 FUJ    D3401-A1 11300000 AMI  00010013)
[    0.009445] ACPI: MCFG 0x00000000C5C686F8 00003C (v01 FUJ    D3401-A1 11300000 MSFT 00000097)
[    0.009447] ACPI: HPET 0x00000000C5C68738 000038 (v01 FUJ    D3401-A1 11300000 AMI. 0005000B)
[    0.009448] ACPI: SSDT 0x00000000C5C68770 0003C5 (v01 SataRe SataTabl 00001000 INTL 20120913)
[    0.009450] ACPI: LPIT 0x00000000C5C68B38 000094 (v01 INTEL  SKL      00000000 MSFT 0000005F)
[    0.009452] ACPI: SSDT 0x00000000C5C68BD0 000248 (v02 INTEL  sensrhub 00000000 INTL 20120913)
[    0.009454] ACPI: SSDT 0x00000000C5C68E18 002BAE (v02 INTEL  PtidDevc 00001000 INTL 20120913)
[    0.009456] ACPI: SSDT 0x00000000C5C6B9C8 000BE3 (v02 INTEL  Ther_Rvp 00001000 INTL 20120913)
[    0.009458] ACPI: SSDT 0x00000000C5C6C5B0 0006DE (v02 INTEL  USB_MAP  00000000 INTL 20120913)
[    0.009460] ACPI: DBGP 0x00000000C5C6CC90 000034 (v01 INTEL           00000000 MSFT 0000005F)
[    0.009461] ACPI: DBG2 0x00000000C5C6CCC8 000054 (v00 INTEL           00000000 MSFT 0000005F)
[    0.009463] ACPI: MSDM 0x00000000C5C6CD20 000055 (v03 FUJ    PC       11300000 AMI  00010013)
[    0.009465] ACPI: SLIC 0x00000000C5C6CD78 000176 (v01 FUJ    PC       11300000 AMI  00010013)
[    0.009467] ACPI: SSDT 0x00000000C5C6CEF0 004C82 (v02 SaSsdt SaSsdt   00003000 INTL 20120913)
[    0.009469] ACPI: UEFI 0x00000000C5C71B78 000042 (v01                 00000000      00000000)
[    0.009470] ACPI: SSDT 0x00000000C5C71BC0 000E73 (v02 CpuRef CpuSsdt  00003000 INTL 20120913)
[    0.009472] ACPI: DMAR 0x00000000C5C72A38 0000A8 (v01 INTEL  SKL      00000001 INTL 00000001)
[    0.009474] ACPI: ASF! 0x00000000C5C72AE0 0000A5 (v32 INTEL   HCG     00000001 TFSM 000F4240)
[    0.009479] ACPI: Local APIC address 0xfee00000
[    0.009605] No NUMA configuration found
[    0.009605] Faking a node at [mem 0x0000000000000000-0x000000022e7fffff]
[    0.009608] NODE_DATA(0) allocated [mem 0x22c7f9000-0x22c7fcfff]
[    0.009614] Reserving 256MB of memory at 624MB for crashkernel (System RAM: 7988MB)
[    0.009623] Zone ranges:
[    0.009624]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.009625]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.009626]   Normal   [mem 0x0000000100000000-0x000000022e7fffff]
[    0.009626] Movable zone start for each node
[    0.009627] Early memory node ranges
[    0.009628]   node   0: [mem 0x0000000000001000-0x000000000009bfff]
[    0.009628]   node   0: [mem 0x0000000000100000-0x00000000be173fff]
[    0.009629]   node   0: [mem 0x00000000be1bf000-0x00000000c4d2ffff]
[    0.009629]   node   0: [mem 0x00000000c9efe000-0x00000000c9efefff]
[    0.009630]   node   0: [mem 0x0000000100000000-0x000000022e7fffff]
[    0.010075] Reserved but unavailable: 45951 pages
[    0.010076] Initmem setup node 0 [mem 0x0000000000001000-0x000000022e7fffff]
[    0.010077] On node 0 totalpages: 2045057
[    0.010078]   DMA zone: 64 pages used for memmap
[    0.010078]   DMA zone: 21 pages reserved
[    0.010079]   DMA zone: 3995 pages, LIFO batch:0
[    0.010135]   DMA32 zone: 12532 pages used for memmap
[    0.010136]   DMA32 zone: 802022 pages, LIFO batch:63
[    0.021995]   Normal zone: 19360 pages used for memmap
[    0.021995]   Normal zone: 1239040 pages, LIFO batch:63
[    0.038111] Reserving Intel graphics memory at [mem 0xcb800000-0xcf7fffff]
[    0.038217] ACPI: PM-Timer IO Port: 0x1808
[    0.038218] ACPI: Local APIC address 0xfee00000
[    0.038222] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.038223] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.038223] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.038224] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.038224] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.038225] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.038225] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.038226] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.038262] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.038263] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.038264] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.038265] ACPI: IRQ0 used by override.
[    0.038266] ACPI: IRQ9 used by override.
[    0.038267] Using ACPI (MADT) for SMP configuration information
[    0.038268] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.038270] [Firmware Bug]: TSC_DEADLINE disabled due to Errata; please update microcode to version: 0xb2 (or later)
[    0.038271] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.038282] [mem 0xcf800000-0xf7ffffff] available for PCI devices
[    0.038284] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.122537] random: get_random_bytes called from start_kernel+0x90/0x4a7 with crng_init=0
[    0.122541] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
[    0.122716] percpu: Embedded 42 pages/cpu @(____ptrval____) s134360 r8192 d29480 u262144
[    0.122720] pcpu-alloc: s134360 r8192 d29480 u262144 alloc=1*2097152
[    0.122721] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.122733] Built 1 zonelists, mobility grouping on.  Total pages: 2013080
[    0.122734] Policy zone: Normal
[    0.122735] Kernel command line: BOOT_IMAGE=/boot/bzImage.test crashkernel=256M root=LABEL=root ro console=ttyS1,115200n8 console=tty0 init=/bin/systemd audit=0 drm.debug=0x1e log_buf_len=32M
[    0.122818] audit: disabled (until reboot)
[    0.147081] Memory: 7653336K/8180228K available (14348K kernel code, 1425K rwdata, 3508K rodata, 1552K init, 736K bss, 526892K reserved, 0K cma-reserved)
[    0.147123] Kernel/User page tables isolation: enabled
[    0.147153] ftrace: allocating 41754 entries in 164 pages
[    0.157928] rcu: Hierarchical RCU implementation.
[    0.157930] rcu: 	RCU event tracing is enabled.
[    0.157931] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
[    0.157931] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    0.158979] NR_IRQS: 16640, nr_irqs: 2048, preallocated irqs: 16
[    0.159289] spurious 8259A interrupt: IRQ7.
[    0.161035] Console: colour VGA+ 80x25
[    0.172806] console [tty0] enabled
[    0.213870] console [ttyS1] enabled
[    0.214134] ACPI: Core revision 20180810
[    0.214668] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
[    0.215258] hpet clockevent registered
[    0.215329] APIC: Switch to symmetric I/O mode setup
[    0.218533] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[    0.223276] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x311fd3cd494, max_idle_ns: 440795223879 ns
[    0.223912] Calibrating delay loop (skipped), value calculated using timer frequency.. 6816.00 BogoMIPS (lpj=3408000)
[    0.224912] pid_max: default: 32768 minimum: 301
[    0.226668] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.227480] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.227936] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.228388] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.229037] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.229428] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.229915] mce: CPU supports 10 MCE banks
[    0.230208] CPU0: Thermal monitoring enabled (TM1)
[    0.230544] process: using mwait in idle threads
[    0.230913] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.231264] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.231645] Spectre V2 : Mitigation: Full generic retpoline
[    0.231912] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.232434] Speculative Store Bypass: Vulnerable
[    0.233086] Freeing SMP alternatives memory: 44K
[    0.234911] smpboot: CPU0: Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz (family: 0x6, model: 0x5e, stepping: 0x3)
[    0.234911] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.234914] ... version:                4
[    0.235230] ... bit width:              48
[    0.235912] ... generic registers:      4
[    0.236228] ... value mask:             0000ffffffffffff
[    0.236610] ... max period:             00007fffffffffff
[    0.236912] ... fixed-purpose events:   3
[    0.237229] ... event mask:             000000070000000f
[    0.237636] rcu: Hierarchical SRCU implementation.
[    0.238005] smp: Bringing up secondary CPUs ...
[    0.238404] x86: Booting SMP configuration:
[    0.238913] .... node  #0, CPUs:      #1 #2 #3 #4 #5 #6 #7
[    0.242711] smp: Brought up 1 node, 8 CPUs
[    0.243233] smpboot: Max logical packages: 1
[    0.243562] smpboot: Total of 8 processors activated (54528.00 BogoMIPS)
[    0.245157] devtmpfs: initialized
[    0.246118] PM: Registering ACPI NVS region [mem 0xbe174000-0xbe174fff] (4096 bytes)
[    0.246913] PM: Registering ACPI NVS region [mem 0xc5c73000-0xc9a86fff] (65093632 bytes)
[    0.248308] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.248918] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.249387] xor: automatically using best checksumming function   avx       
[    0.249979] NET: Registered protocol family 16
[    0.250480] cpuidle: using governor ladder
[    0.250879] ACPI: bus type PCI registered
[    0.250879] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.251915] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.252377] PCI: Using configuration type 1 for base access
[    0.254350] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.271313] raid6: sse2x1   gen() 13289 MB/s
[    0.288310] raid6: sse2x1   xor()  9937 MB/s
[    0.305313] raid6: sse2x2   gen() 16460 MB/s
[    0.322311] raid6: sse2x2   xor() 11628 MB/s
[    0.339311] raid6: sse2x4   gen() 17664 MB/s
[    0.356312] raid6: sse2x4   xor() 12492 MB/s
[    0.373312] raid6: avx2x1   gen() 26972 MB/s
[    0.390310] raid6: avx2x1   xor() 19525 MB/s
[    0.407311] raid6: avx2x2   gen() 33097 MB/s
[    0.424311] raid6: avx2x2   xor() 21287 MB/s
[    0.441311] raid6: avx2x4   gen() 35656 MB/s
[    0.458310] raid6: avx2x4   xor() 23867 MB/s
[    0.458686] raid6: using algorithm avx2x4 gen() 35656 MB/s
[    0.458912] raid6: .... xor() 23867 MB/s, rmw enabled
[    0.459281] raid6: using avx2x2 recovery algorithm
[    0.460419] ACPI: Added _OSI(Module Device)
[    0.460419] ACPI: Added _OSI(Processor Device)
[    0.460419] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.460912] ACPI: Added _OSI(Processor Aggregator Device)
[    0.461299] ACPI: Added _OSI(Linux-Dell-Video)
[    0.461639] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.481214] ACPI: 8 ACPI AML tables successfully acquired and loaded
[    0.485250] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.487761] ACPI: Dynamic OEM Table Load:
[    0.487915] ACPI: SSDT 0xFFFF880222B82000 0006E4 (v02 PmRef  Cpu0Ist  00003000 INTL 20120913)
[    0.489020] ACPI: \_PR_.CPU0: _OSC native thermal LVT Acked
[    0.490369] ACPI: Dynamic OEM Table Load:
[    0.490745] ACPI: SSDT 0xFFFF8802228CC000 00037F (v02 PmRef  Cpu0Cst  00003001 INTL 20120913)
[    0.492163] ACPI: Dynamic OEM Table Load:
[    0.492163] ACPI: SSDT 0xFFFF880222896CC0 00008E (v02 PmRef  Cpu0Hwp  00003000 INTL 20120913)
[    0.492706] ACPI: Dynamic OEM Table Load:
[    0.492914] ACPI: SSDT 0xFFFF880222B66A00 000130 (v02 PmRef  HwpLvt   00003000 INTL 20120913)
[    0.494387] ACPI: Dynamic OEM Table Load:
[    0.494716] ACPI: SSDT 0xFFFF880222AB0800 0005AA (v02 PmRef  ApIst    00003000 INTL 20120913)
[    0.496315] ACPI: Dynamic OEM Table Load:
[    0.496315] ACPI: SSDT 0xFFFF880222B66800 000119 (v02 PmRef  ApHwp    00003000 INTL 20120913)
[    0.496947] ACPI: Dynamic OEM Table Load:
[    0.497277] ACPI: SSDT 0xFFFF880222B66600 000119 (v02 PmRef  ApCst    00003000 INTL 20120913)
[    0.501650] ACPI: Interpreter enabled
[    0.501931] ACPI: (supports S0 S3 S5)
[    0.502242] ACPI: Using IOAPIC for interrupt routing
[    0.502629] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.504340] ACPI: Enabled 7 GPEs in block 00 to 7F
[    0.505602] ACPI: Power Resource [PG00] (on)
[    0.508177] ACPI: Power Resource [WRST] (off)
[    0.508743] ACPI: Power Resource [WRST] (off)
[    0.509135] ACPI: Power Resource [WRST] (off)
[    0.509924] ACPI: Power Resource [WRST] (off)
[    0.510488] ACPI: Power Resource [WRST] (off)
[    0.511054] ACPI: Power Resource [WRST] (off)
[    0.511617] ACPI: Power Resource [WRST] (off)
[    0.512132] ACPI: Power Resource [WRST] (off)
[    0.512696] ACPI: Power Resource [WRST] (off)
[    0.513131] ACPI: Power Resource [WRST] (off)
[    0.513728] ACPI: Power Resource [WRST] (off)
[    0.514131] ACPI: Power Resource [WRST] (off)
[    0.515042] ACPI: Power Resource [WRST] (off)
[    0.515606] ACPI: Power Resource [WRST] (off)
[    0.516132] ACPI: Power Resource [WRST] (off)
[    0.516694] ACPI: Power Resource [WRST] (off)
[    0.517131] ACPI: Power Resource [WRST] (off)
[    0.517694] ACPI: Power Resource [WRST] (off)
[    0.518130] ACPI: Power Resource [WRST] (off)
[    0.518990] ACPI: Power Resource [WRST] (off)
[    0.524936] ACPI: Power Resource [FN00] (off)
[    0.525337] ACPI: Power Resource [FN01] (off)
[    0.525738] ACPI: Power Resource [FN02] (off)
[    0.525966] ACPI: Power Resource [FN03] (off)
[    0.526378] ACPI: Power Resource [FN04] (off)
[    0.527613] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.527916] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.529229] acpi PNP0A08:00: _OSC: platform does not support [AER]
[    0.530200] acpi PNP0A08:00: _OSC: OS now controls [PME PCIeCapability LTR]
[    0.530919] PCI host bridge to bus 0000:00
[    0.531252] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.531709] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.531913] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.532465] pci_bus 0000:00: root bus resource [mem 0xcf800000-0xf7ffffff window]
[    0.533913] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
[    0.534465] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.534465] pci 0000:00:00.0: [8086:191f] type 00 class 0x060000
[    0.534465] pci 0000:00:02.0: [8086:1912] type 00 class 0x030000
[    0.534465] pci 0000:00:02.0: reg 0x10: [mem 0xf6000000-0xf6ffffff 64bit]
[    0.534465] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.534465] pci 0000:00:02.0: reg 0x20: [io  0xf000-0xf03f]
[    0.534465] pci 0000:00:14.0: [8086:a12f] type 00 class 0x0c0330
[    0.534465] pci 0000:00:14.0: reg 0x10: [mem 0xf7030000-0xf703ffff 64bit]
[    0.534465] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.534465] pci 0000:00:14.2: [8086:a131] type 00 class 0x118000
[    0.534465] pci 0000:00:14.2: reg 0x10: [mem 0xf704e000-0xf704efff 64bit]
[    0.534486] pci 0000:00:16.0: [8086:a13a] type 00 class 0x078000
[    0.534523] pci 0000:00:16.0: reg 0x10: [mem 0xf704d000-0xf704dfff 64bit]
[    0.534979] pci 0000:00:16.0: PME# supported from D3hot
[    0.535099] pci 0000:00:17.0: [8086:a102] type 00 class 0x010601
[    0.535113] pci 0000:00:17.0: reg 0x10: [mem 0xf7048000-0xf7049fff]
[    0.535119] pci 0000:00:17.0: reg 0x14: [mem 0xf704c000-0xf704c0ff]
[    0.535125] pci 0000:00:17.0: reg 0x18: [io  0xf090-0xf097]
[    0.535130] pci 0000:00:17.0: reg 0x1c: [io  0xf080-0xf083]
[    0.535136] pci 0000:00:17.0: reg 0x20: [io  0xf060-0xf07f]
[    0.535142] pci 0000:00:17.0: reg 0x24: [mem 0xf704b000-0xf704b7ff]
[    0.535173] pci 0000:00:17.0: PME# supported from D3hot
[    0.535282] pci 0000:00:1f.0: [8086:a147] type 00 class 0x060100
[    0.535461] pci 0000:00:1f.2: [8086:a121] type 00 class 0x058000
[    0.535474] pci 0000:00:1f.2: reg 0x10: [mem 0xf7044000-0xf7047fff]
[    0.535601] pci 0000:00:1f.3: [8086:a170] type 00 class 0x040300
[    0.535625] pci 0000:00:1f.3: reg 0x10: [mem 0xf7040000-0xf7043fff 64bit]
[    0.535653] pci 0000:00:1f.3: reg 0x20: [mem 0xf7020000-0xf702ffff 64bit]
[    0.535695] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.535818] pci 0000:00:1f.4: [8086:a123] type 00 class 0x0c0500
[    0.535835] pci 0000:00:1f.4: reg 0x10: [mem 0xf704a000-0xf704a0ff 64bit]
[    0.535854] pci 0000:00:1f.4: reg 0x20: [io  0xf040-0xf05f]
[    0.535963] pci 0000:00:1f.6: [8086:15b8] type 00 class 0x020000
[    0.535988] pci 0000:00:1f.6: reg 0x10: [mem 0xf7000000-0xf701ffff]
[    0.536087] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
[    0.537606] ACPI: PCI Interrupt Link [LNKA] (IRQs 6 10 *11 12 14 15)
[    0.537959] ACPI: PCI Interrupt Link [LNKB] (IRQs 6 *10 11 12 14 15)
[    0.538444] ACPI: PCI Interrupt Link [LNKC] (IRQs 6 10 *11 12 14 15)
[    0.538956] ACPI: PCI Interrupt Link [LNKD] (IRQs 6 10 *11 12 14 15)
[    0.539439] ACPI: PCI Interrupt Link [LNKE] (IRQs 6 10 *11 12 14 15)
[    0.539956] ACPI: PCI Interrupt Link [LNKF] (IRQs 6 10 *11 12 14 15)
[    0.540440] ACPI: PCI Interrupt Link [LNKG] (IRQs 6 10 *11 12 14 15)
[    0.540957] ACPI: PCI Interrupt Link [LNKH] (IRQs 6 10 *11 12 14 15)
[    0.542403] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.542403] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.542914] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.542914] vgaarb: loaded
[    0.543202] SCSI subsystem initialized
[    0.544527] libata version 3.00 loaded.
[    0.544527] ACPI: bus type USB registered
[    0.544527] usbcore: registered new interface driver usbfs
[    0.544723] usbcore: registered new interface driver hub
[    0.545715] usbcore: registered new device driver usb
[    0.545715] pps_core: LinuxPPS API ver. 1 registered
[    0.545715] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti at linux.it>
[    0.546913] PTP clock support registered
[    0.547498] EDAC MC: Ver: 3.0.0
[    0.547838] Advanced Linux Sound Architecture Driver Initialized.
[    0.547838] PCI: Using ACPI for IRQ routing
[    0.555026] PCI: pci_cache_line_size set to 64 bytes
[    0.555051] e820: reserve RAM buffer [mem 0x0009c800-0x0009ffff]
[    0.555052] e820: reserve RAM buffer [mem 0xbe174000-0xbfffffff]
[    0.555053] e820: reserve RAM buffer [mem 0xc4d30000-0xc7ffffff]
[    0.555054] e820: reserve RAM buffer [mem 0xc9eff000-0xcbffffff]
[    0.555054] e820: reserve RAM buffer [mem 0x22e800000-0x22fffffff]
[    0.555716] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.555716] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
[    0.557921] clocksource: Switched to clocksource tsc-early
[    0.565471] VFS: Disk quotas dquot_6.6.0
[    0.565815] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.566301] FS-Cache: Loaded
[    0.566592] CacheFiles: Loaded
[    0.566878] pnp: PnP ACPI init
[    0.567292] system 00:00: [io  0x0a00-0x0a0f] has been reserved
[    0.567716] system 00:00: [io  0x0a10-0x0a1f] has been reserved
[    0.568129] system 00:00: [io  0x0a20-0x0a2f] has been reserved
[    0.568541] system 00:00: [io  0x0a30-0x0a3f] has been reserved
[    0.568957] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.569358] pnp 00:01: [dma 0 disabled]
[    0.569386] pnp 00:01: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.569599] system 00:02: [io  0x0400-0x041f] has been reserved
[    0.570023] system 00:02: [io  0x0680-0x069f] has been reserved
[    0.570435] system 00:02: [io  0xffff] has been reserved
[    0.570819] system 00:02: [io  0xffff] has been reserved
[    0.571203] system 00:02: [io  0xffff] has been reserved
[    0.571586] system 00:02: [io  0x1800-0x18fe] has been reserved
[    0.572000] system 00:02: [io  0x164e-0x164f] has been reserved
[    0.572414] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.572466] system 00:03: [io  0x0800-0x087f] has been reserved
[    0.572892] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.572902] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.572923] system 00:05: [io  0x1854-0x1857] has been reserved
[    0.573347] system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.573474] system 00:06: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.573934] system 00:06: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.574381] system 00:06: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.574829] system 00:06: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.575277] system 00:06: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.575724] system 00:06: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.576171] system 00:06: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.578382] system 00:06: [mem 0xff000000-0xffffffff] has been reserved
[    0.578830] system 00:06: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.579295] system 00:06: [mem 0xf7fe0000-0xf7ffffff] has been reserved
[    0.579745] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.579768] system 00:07: [mem 0xfd000000-0xfdabffff] has been reserved
[    0.580226] system 00:07: [mem 0xfdad0000-0xfdadffff] has been reserved
[    0.580674] system 00:07: [mem 0xfdb00000-0xfdffffff] has been reserved
[    0.581123] system 00:07: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    0.581588] system 00:07: [mem 0xfe036000-0xfe03bfff] has been reserved
[    0.582035] system 00:07: [mem 0xfe03d000-0xfe3fffff] has been reserved
[    0.582482] system 00:07: [mem 0xfe410000-0xfe7fffff] has been reserved
[    0.582931] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.583104] system 00:08: [io  0xff00-0xfffe] has been reserved
[    0.583526] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.584236] system 00:09: [mem 0xfdaf0000-0xfdafffff] has been reserved
[    0.584695] system 00:09: [mem 0xfdae0000-0xfdaeffff] has been reserved
[    0.585143] system 00:09: [mem 0xfdac0000-0xfdacffff] has been reserved
[    0.585591] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.585990] pnp: PnP ACPI: found 10 devices
[    0.591599] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.592282] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.592283] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.592283] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.592284] pci_bus 0000:00: resource 7 [mem 0xcf800000-0xf7ffffff window]
[    0.592285] pci_bus 0000:00: resource 8 [mem 0xfd000000-0xfe7fffff window]
[    0.592369] NET: Registered protocol family 2
[    0.592791] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes)
[    0.593391] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
[    0.594046] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.594637] TCP: Hash tables configured (established 65536 bind 65536)
[    0.595109] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.595559] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.596056] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.597262] PCI: CLS 0 bytes, default 64
[    0.597279] Trying to unpack rootfs image as initramfs...
[    0.653142] Freeing initrd memory: 5136K
[    0.653469] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.653910] software IO TLB: mapped [mem 0xc0d30000-0xc4d30000] (64MB)
[    0.654458] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
[    0.655045] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    0.655453] RAPL PMU: hw unit of domain package 2^-14 Joules
[    0.655854] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    0.656240] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    0.656639] RAPL PMU: hw unit of domain psys 2^-14 Joules
[    0.657132] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x311fd3cd494, max_idle_ns: 440795223879 ns
[    0.657831] clocksource: Switched to clocksource tsc
[    0.658563] workingset: timestamp_bits=40 max_order=21 bucket_order=0
[    0.659200] SGI XFS with ACLs, security attributes, realtime, no debug enabled
[    0.660101] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[    0.660688] io scheduler noop registered
[    0.661012] io scheduler deadline registered
[    0.661348] io scheduler cfq registered (default)
[    0.661703] io scheduler mq-deadline registered
[    0.662048] io scheduler kyber registered
[    0.662421] ipmi message handler version 39.2
[    0.662766] ipmi device interface
[    0.663052] IPMI System Interface driver.
[    0.663390] ipmi_si: Unable to find any System Interface(s)
[    0.663797] IPMI Watchdog: driver initialized
[    0.664132] Copyright (C) 2004 MontaVista Software - IPMI Powerdown via sys_reboot.
[    0.664741] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.665354] ACPI: Power Button [PWRB]
[    0.665679] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.666254] ACPI: Power Button [PWRF]
[    0.672029] ACPI BIOS Error (bug): Could not resolve [\_SB.PCI0.LPCB.HEC.ECAV], AE_NOT_FOUND (20180810/psargs-330)
[    0.672741] ACPI Error: Method parse/execution failed \_TZ.FNCL, AE_NOT_FOUND (20180810/psparse-516)
[    0.673410] ACPI Error: Method parse/execution failed \_TZ.FN00._ON, AE_NOT_FOUND (20180810/psparse-516)
[    0.674071] acpi PNP0C0B:00: Failed to change power state to D0
[    0.681014] ACPI BIOS Error (bug): Could not resolve [\_SB.PCI0.LPCB.HEC.ECAV], AE_NOT_FOUND (20180810/psargs-330)
[    0.681726] ACPI Error: Method parse/execution failed \_TZ.FNCL, AE_NOT_FOUND (20180810/psparse-516)
[    0.682370] ACPI Error: Method parse/execution failed \_TZ.FN00._ON, AE_NOT_FOUND (20180810/psparse-516)
[    0.683033] acpi PNP0C0B:00: Failed to set initial power state
[    0.683453] acpi PNP0C0B:00: Cannot transition from (unknown) to D3hot
[    0.690014] ACPI BIOS Error (bug): Could not resolve [\_SB.PCI0.LPCB.HEC.ECAV], AE_NOT_FOUND (20180810/psargs-330)
[    0.690725] ACPI Error: Method parse/execution failed \_TZ.FNCL, AE_NOT_FOUND (20180810/psparse-516)
[    0.691367] ACPI Error: Method parse/execution failed \_TZ.FN01._ON, AE_NOT_FOUND (20180810/psparse-516)
[    0.692029] acpi PNP0C0B:01: Failed to change power state to D0
[    0.699013] ACPI BIOS Error (bug): Could not resolve [\_SB.PCI0.LPCB.HEC.ECAV], AE_NOT_FOUND (20180810/psargs-330)
[    0.699724] ACPI Error: Method parse/execution failed \_TZ.FNCL, AE_NOT_FOUND (20180810/psparse-516)
[    0.700364] ACPI Error: Method parse/execution failed \_TZ.FN01._ON, AE_NOT_FOUND (20180810/psparse-516)
[    0.701027] acpi PNP0C0B:01: Failed to set initial power state
[    0.701443] acpi PNP0C0B:01: Cannot transition from (unknown) to D3hot
[    0.708013] ACPI BIOS Error (bug): Could not resolve [\_SB.PCI0.LPCB.HEC.ECAV], AE_NOT_FOUND (20180810/psargs-330)
[    0.708722] ACPI Error: Method parse/execution failed \_TZ.FNCL, AE_NOT_FOUND (20180810/psparse-516)
[    0.709363] ACPI Error: Method parse/execution failed \_TZ.FN02._ON, AE_NOT_FOUND (20180810/psparse-516)
[    0.710025] acpi PNP0C0B:02: Failed to change power state to D0
[    0.717013] ACPI BIOS Error (bug): Could not resolve [\_SB.PCI0.LPCB.HEC.ECAV], AE_NOT_FOUND (20180810/psargs-330)
[    0.717725] ACPI Error: Method parse/execution failed \_TZ.FNCL, AE_NOT_FOUND (20180810/psparse-516)
[    0.718368] ACPI Error: Method parse/execution failed \_TZ.FN02._ON, AE_NOT_FOUND (20180810/psparse-516)
[    0.719028] acpi PNP0C0B:02: Failed to set initial power state
[    0.719442] acpi PNP0C0B:02: Cannot transition from (unknown) to D3hot
[    0.727016] ACPI BIOS Error (bug): Could not resolve [\_SB.PCI0.LPCB.HEC.ECAV], AE_NOT_FOUND (20180810/psargs-330)
[    0.727727] ACPI Error: Method parse/execution failed \_TZ.FNCL, AE_NOT_FOUND (20180810/psparse-516)
[    0.728370] ACPI Error: Method parse/execution failed \_TZ.FN03._ON, AE_NOT_FOUND (20180810/psparse-516)
[    0.729032] acpi PNP0C0B:03: Failed to change power state to D0
[    0.735012] ACPI BIOS Error (bug): Could not resolve [\_SB.PCI0.LPCB.HEC.ECAV], AE_NOT_FOUND (20180810/psargs-330)
[    0.735724] ACPI Error: Method parse/execution failed \_TZ.FNCL, AE_NOT_FOUND (20180810/psparse-516)
[    0.736365] ACPI Error: Method parse/execution failed \_TZ.FN03._ON, AE_NOT_FOUND (20180810/psparse-516)
[    0.737026] acpi PNP0C0B:03: Failed to set initial power state
[    0.737442] acpi PNP0C0B:03: Cannot transition from (unknown) to D3hot
[    0.745013] ACPI BIOS Error (bug): Could not resolve [\_SB.PCI0.LPCB.HEC.ECAV], AE_NOT_FOUND (20180810/psargs-330)
[    0.745723] ACPI Error: Method parse/execution failed \_TZ.FNCL, AE_NOT_FOUND (20180810/psparse-516)
[    0.746365] ACPI Error: Method parse/execution failed \_TZ.FN04._ON, AE_NOT_FOUND (20180810/psparse-516)
[    0.747026] acpi PNP0C0B:04: Failed to change power state to D0
[    0.754012] ACPI BIOS Error (bug): Could not resolve [\_SB.PCI0.LPCB.HEC.ECAV], AE_NOT_FOUND (20180810/psargs-330)
[    0.754723] ACPI Error: Method parse/execution failed \_TZ.FNCL, AE_NOT_FOUND (20180810/psparse-516)
[    0.755363] ACPI Error: Method parse/execution failed \_TZ.FN04._ON, AE_NOT_FOUND (20180810/psparse-516)
[    0.756023] acpi PNP0C0B:04: Failed to set initial power state
[    0.756436] acpi PNP0C0B:04: Cannot transition from (unknown) to D3hot
[    0.757140] Monitor-Mwait will be used to enter C-1 state
[    0.757144] Monitor-Mwait will be used to enter C-2 state
[    0.757146] Monitor-Mwait will be used to enter C-3 state
[    0.758738] ACPI BIOS Error (bug): Could not resolve [\_SB.PCI0.LPCB.HEC.ECAV], AE_NOT_FOUND (20180810/psargs-330)
[    0.759453] ACPI Error: Method parse/execution failed \_TZ.TZ00._TMP, AE_NOT_FOUND (20180810/psparse-516)
[    0.760192] ACPI BIOS Error (bug): Could not resolve [\_SB.PCI0.LPCB.HEC.ECAV], AE_NOT_FOUND (20180810/psargs-330)
[    0.760901] ACPI Error: Method parse/execution failed \_TZ.TZ00._TMP, AE_NOT_FOUND (20180810/psparse-516)
[    0.761591] ACPI BIOS Error (bug): Could not resolve [\_SB.PCI0.LPCB.HEC.ECAV], AE_NOT_FOUND (20180810/psargs-330)
[    0.762303] ACPI Error: Method parse/execution failed \_TZ.TZ01._TMP, AE_NOT_FOUND (20180810/psparse-516)
[    0.762994] ACPI BIOS Error (bug): Could not resolve [\_SB.PCI0.LPCB.HEC.ECAV], AE_NOT_FOUND (20180810/psargs-330)
[    0.763705] ACPI Error: Method parse/execution failed \_TZ.TZ01._TMP, AE_NOT_FOUND (20180810/psparse-516)
[    0.764497] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.785659] 00:01: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.786809] lp: driver loaded but no devices found
[    0.787451] Linux agpgart interface v0.103
[    0.791444] brd: module loaded
[    0.793184] loop: module loaded
[    0.797139] drbd: initialized. Version: 8.4.10 (api:1/proto:86-101)
[    0.797598] drbd: built-in
[    0.797849] drbd: registered as block device major 147
[    0.798296] Uniform Multi-Platform E-IDE driver
[    0.798889] ide_generic: please use "probe_mask=0x3f" module parameter for probing all legacy ISA IDE ports
[    0.799607] Probing IDE interface ide0...
[    1.322146] ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
[    1.322506] Probing IDE interface ide1...
[    1.845144] ide1 at 0x170-0x177,0x376 on irq 15
[    1.845501] ide-gd driver 1.18
[    1.845778] ide-cd driver 5.00
[    1.846184] megaraid cmm: 2.20.2.7 (Release Date: Sun Jul 16 00:01:03 EST 2006)
[    1.846820] megaraid: 2.20.5.1 (Release Date: Thu Nov 16 15:32:35 EST 2006)
[    1.847304] megasas: 07.706.03.00-rc1
[    1.847618] mpt3sas version 26.100.00.00 loaded
[    1.848594] ahci 0000:00:17.0: version 3.0
[    1.859028] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 5 ports 6 Gbps 0x3e impl SATA mode
[    1.861415] ahci 0000:00:17.0: flags: 64bit ncq sntf pm led clo only pio slum part ems deso sadm sds apst 
[    1.874752] scsi host0: ahci
[    1.875224] scsi host1: ahci
[    1.875637] scsi host2: ahci
[    1.876045] scsi host3: ahci
[    1.876494] scsi host4: ahci
[    1.876850] scsi host5: ahci
[    1.877145] ata1: DUMMY
[    1.877398] ata2: SATA max UDMA/133 abar m2048 at 0xf704b000 port 0xf704b180 irq 120
[    1.877956] ata3: SATA max UDMA/133 abar m2048 at 0xf704b000 port 0xf704b200 irq 120
[    1.878514] ata4: SATA max UDMA/133 abar m2048 at 0xf704b000 port 0xf704b280 irq 120
[    1.879073] ata5: SATA max UDMA/133 abar m2048 at 0xf704b000 port 0xf704b300 irq 120
[    1.879632] ata6: SATA max UDMA/133 abar m2048 at 0xf704b000 port 0xf704b380 irq 120
[    1.880362] tun: Universal TUN/TAP device driver, 1.6
[    1.880833] bnx2x: QLogic 5771x/578xx 10/20-Gigabit Ethernet Driver bnx2x 1.712.30-0 (2014/02/10)
[    1.881561] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
[    1.882011] e100: Copyright(c) 1999-2006 Intel Corporation
[    1.882411] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[    1.882885] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    1.883300] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    1.883713] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.884278] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    1.974243] e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
[    2.055629] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) 90:1b:0e:96:84:7d
[    2.056223] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
[    2.056748] e1000e 0000:00:1f.6 eth0: MAC: 12, PHY: 12, PBA No: FFFFFF-0FF
[    2.057226] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[    2.057704] igb: Copyright (c) 2007-2014 Intel Corporation.
[    2.058115] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
[    2.058697] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    2.059125] sky2: driver version 1.30
[    2.059502] Fusion MPT base driver 3.04.20
[    2.059835] Copyright (c) 1999-2008 LSI Corporation
[    2.060201] Fusion MPT SPI Host driver 3.04.20
[    2.060552] Fusion MPT FC Host driver 3.04.20
[    2.060900] Fusion MPT SAS Host driver 3.04.20
[    2.061253] Fusion MPT misc device (ioctl) driver 3.04.20
[    2.061739] mptctl: Registered with Fusion MPT base driver
[    2.062183] mptctl: /dev/mptctl @ (major,minor=10,220)
[    2.062562] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.063035] ehci-pci: EHCI PCI platform driver
[    2.063379] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.063810] ohci-pci: OHCI PCI platform driver
[    2.064211] uhci_hcd: USB Universal Host Controller Interface driver
[    2.064794] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    2.065228] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    2.066856] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000109810
[    2.067529] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    2.067825] hub 1-0:1.0: USB hub found
[    2.068229] hub 1-0:1.0: 16 ports detected
[    2.069827] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    2.070282] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    2.070832] xhci_hcd 0000:00:14.0: Host supports USB 3.0  SuperSpeed
[    2.071551] hub 2-0:1.0: USB hub found
[    2.071872] hub 2-0:1.0: 8 ports detected
[    2.072947] usbcore: registered new interface driver usb-storage
[    2.073450] usbcore: registered new interface driver ftdi_sio
[    2.073862] usbserial: USB Serial support registered for FTDI USB Serial Device
[    2.074455] usbcore: registered new interface driver omninet
[    2.074864] usbserial: USB Serial support registered for ZyXEL - omni.net lcd plus usb
[    2.075491] i8042: PNP: No PS/2 controller found.
[    2.076169] rtc_cmos 00:04: RTC can wake from S4
[    2.077065] rtc_cmos 00:04: registered as rtc0
[    2.077459] rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    2.078222] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    2.078639] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    2.080356] IR NEC protocol handler initialized
[    2.080708] IR RC5(x/sz) protocol handler initialized
[    2.081151] IR RC6 protocol handler initialized
[    2.081492] IR JVC protocol handler initialized
[    2.081833] IR Sony protocol handler initialized
[    2.082253] IR SANYO protocol handler initialized
[    2.082603] IR Sharp protocol handler initialized
[    2.083027] IR MCE Keyboard/mouse protocol handler initialized
[    2.083432] IR XMP protocol handler initialized
[    2.083777] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    2.084274] iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
[    2.084918] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    2.085439] iTCO_vendor_support: vendor-support=0
[    2.085797] nv_tco: NV TCO WatchDog Timer Driver v0.01
[    2.086557] intel_pstate: Intel P-state driver initializing
[    2.088884] intel_pstate: HWP enabled
[    2.089239] hidraw: raw HID events driver (C) Jiri Kosina
[    2.089732] usbcore: registered new interface driver usbhid
[    2.090207] usbhid: USB HID core driver
[    2.090919] Key type dns_resolver registered
[    2.092173] microcode: sig=0x506e3, pf=0x2, revision=0x7c
[    2.092779] microcode: Microcode Update Driver: v2.2.
[    2.092785] sched_clock: Marking stable (2037111510, 55653098)->(2199713373, -106948765)
[    2.094217] registered taskstats version 1
[    2.095127] rtc_cmos 00:04: setting system clock to 2018-09-19 11:06:30 UTC (1537355190)
[    2.095774] ALSA device list:
[    2.096146]   No soundcards found.
[    2.191095] ata6: SATA link down (SStatus 4 SControl 300)
[    2.191504] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.192006] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.192443] ata5: SATA link down (SStatus 4 SControl 300)
[    2.192854] ata4: SATA link down (SStatus 4 SControl 300)
[    2.193760] ata2.00: ATA-8: WDC WD5000AAKX-07U6AA1, 17.01H17, max UDMA/133
[    2.194316] ata2.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    2.196571] ata2.00: configured for UDMA/133
[    2.197047] ata3.00: ATAPI: TSSTcorp CDDVDW SH-216FB, FT00, max UDMA/100
[    2.200608] ata3.00: configured for UDMA/100
[    2.393103] usb 1-7: new low-speed USB device number 2 using xhci_hcd
[    2.526701] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/0003:046D:C077.0001/input/input2
[    2.527804] hid-generic 0003:046D:C077.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:14.0-7/input0
[    2.642105] usb 1-8: new low-speed USB device number 3 using xhci_hcd
[    2.783673] input: Fujitsu Fujitsu Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:0BF8:101E.0002/input/input3
[    2.836386] hid-generic 0003:0BF8:101E.0002: input,hidraw1: USB HID v1.10 Keyboard [Fujitsu Fujitsu Keyboard] on usb-0000:00:14.0-8/input0
[    2.844305] input: Fujitsu Fujitsu Keyboard System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/0003:0BF8:101E.0003/input/input4
[    2.897269] input: Fujitsu Fujitsu Keyboard Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/0003:0BF8:101E.0003/input/input5
[    2.898441] hid-generic 0003:0BF8:101E.0003: input,hidraw2: USB HID v1.10 Device [Fujitsu Fujitsu Keyboard] on usb-0000:00:14.0-8/input1
[    3.831167] floppy0: no floppy controllers found
[    3.831919] scsi 1:0:0:0: Direct-Access     ATA      WDC WD5000AAKX-0 1H17 PQ: 0 ANSI: 5
[    3.832866] sd 1:0:0:0: Attached scsi generic sg0 type 0
[    3.833080] sd 1:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[    3.834160] sd 1:0:0:0: [sda] Write Protect is off
[    3.834571] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.834619] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.836117] scsi 2:0:0:0: CD-ROM            TSSTcorp CDDVDW SH-216FB  FT00 PQ: 0 ANSI: 5
[    3.858675]  sda: sda1 sda2 sda3
[    3.859890] sd 1:0:0:0: [sda] Attached SCSI disk
[    3.885478] sr 2:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    3.886198] cdrom: Uniform CD-ROM driver Revision: 3.20
[    3.886749] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    3.886809] sr 2:0:0:0: Attached scsi generic sg1 type 5
[    3.888518] Freeing unused kernel image memory: 1552K
[    3.900094] Write protecting the kernel read-only data: 20480k
[    3.900970] Freeing unused kernel image memory: 2008K
[    3.901522] Freeing unused kernel image memory: 588K
[    3.901946] Run /init as init process
[    4.073905] random: fast init done
[    4.211822] XFS (sda1): Mounting V4 Filesystem
[    4.351903] XFS (sda1): Ending clean mount
[    5.007558] random: crng init done
[    6.029885] NET: Registered protocol family 10
[    6.030514] Segment Routing with IPv6
[    6.061740] NET: Registered protocol family 1
[    6.218800] systemd[1]: systemd 238 running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid)
[    6.234493] systemd[1]: Detected architecture x86-64.
[    6.255400] systemd[1]: Set hostname to <keineahnung.molgen.mpg.de>.
[    7.048592] systemd[1]: File /lib/systemd/system/systemd-journald.service:35 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based firewalling.
[    7.049773] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for the first loaded unit using IP firewalling.)
[    8.099166] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    8.100350] systemd[1]: Listening on Journal Socket.
[    8.101696] systemd[1]: Mounting Proc NFSD mountpoint...
[    8.102853] systemd[1]: Mounting Huge Pages File System...
[    8.103634] systemd[1]: Reached target network after root writable.
[    8.841255] RPC: Registered named UNIX socket transport module.
[    8.841700] RPC: Registered udp transport module.
[    8.842127] RPC: Registered tcp transport module.
[    8.842541] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   10.360099] Installing knfsd (copyright (C) 1996 okir at monad.swb.de).
[   10.543301] systemd-journald[164]: Received request to flush runtime journal from PID 1
[   12.471105] snd_hda_intel 0000:00:1f.3: couldn't bind with audio component
[   12.483298] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC671: line_outs=1 (0x21/0x0/0x0/0x0/0x0) type:line
[   12.484068] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=1 (0x17/0x0/0x0/0x0/0x0)
[   12.484643] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x14/0x0/0x0/0x0/0x0)
[   12.485268] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[   12.485700] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[   12.486135] snd_hda_codec_realtek hdaudioC0D0:      Front Mic=0x19
[   12.486558] snd_hda_codec_realtek hdaudioC0D0:      Rear Mic=0x18
[   12.487051] snd_hda_codec_realtek hdaudioC0D0:      Line=0x1a
[   12.498994] snd_hda_codec_hdmi hdaudioC0D2: No i915 binding for Intel HDMI/DP codec
[   12.499707] hdaudio hdaudioC0D2: Unable to bind the codec
[   12.500294] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input6
[   12.501194] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input7
[   12.502084] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1f.3/sound/card0/input8
[   12.502800] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1f.3/sound/card0/input9
[   12.503525] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input10
[   17.734286] [drm:intel_pch_type [i915]] Found SunrisePoint PCH
[   17.734300] [drm:i915_driver_load [i915]] WOPCM size: 1024KiB
[   17.734320] [drm:intel_uc_init_early [i915]] enable_guc=0 (submission:no huc:no)
[   17.734334] [drm:i915_driver_load [i915]] guc_log_level=0 (enabled:no, verbose:no, verbosity:0)
[   17.734350] [drm:intel_power_domains_init [i915]] Allowed DC state mask 03
[   17.734759] [drm:i915_driver_load [i915]] ppgtt mode: 3
[   17.734840] [drm:i915_ggtt_probe_hw [i915]] GGTT size = 4096M
[   17.734857] [drm:i915_ggtt_probe_hw [i915]] GMADR size = 256M
[   17.734873] [drm:i915_ggtt_probe_hw [i915]] DSM size = 64M
[   17.734874] [drm] Replacing VGA console driver
[   17.736767] Console: switching to colour dummy device 80x25
[   17.737192] [drm:i915_gem_init_stolen [i915]] GEN6_STOLEN_RESERVED = cf700047
[   17.737208] [drm:i915_gem_init_stolen [i915]] Memory reserved for graphics device: 65536K, usable: 64512K
[   17.737508] [drm:intel_opregion_setup [i915]] graphic opregion physical addr: 0xc9a71018
[   17.737530] [drm:intel_opregion_setup [i915]] Public ACPI methods supported
[   17.737546] [drm:intel_opregion_setup [i915]] SWSCI supported
[   17.738486] [drm:intel_opregion_setup [i915]] SWSCI GBDA callbacks 00000cb3, SBCB callbacks 00300483
[   17.738504] [drm:intel_opregion_setup [i915]] ASLE supported
[   17.738521] [drm:intel_opregion_setup [i915]] ASLE extension supported
[   17.738537] [drm:intel_opregion_setup [i915]] Found valid VBT in ACPI OpRegion (Mailbox #4)
[   17.738554] [drm:skl_dram_get_channel_info [i915]] (size:width:rank) L(8GB:X8:dual) S(0GB:X8:single)
[   17.738568] [drm:skl_dram_get_channels_info [i915]] memory configuration is not Symmetric memory
[   17.738582] [drm:i915_driver_load [i915]] DRAM bandwidth:17066672 KBps, total-channels: 1
[   17.738595] [drm:i915_driver_load [i915]] DRAM rank: single rank 16GB-dimm:yes
[   17.738596] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   17.739017] [drm] Driver supports precise vblank timestamp query.
[   17.739347] [drm:intel_bios_init [i915]] Set default to SSC at 120000 kHz
[   17.739366] [drm:intel_bios_init [i915]] VBT signature "$VBT SKYLAKE        ", BDB version 200
[   17.739384] [drm:intel_bios_init [i915]] BDB_GENERAL_FEATURES int_tv_support 0 int_crt_support 0 lvds_use_ssc 0 lvds_ssc_freq 120000 display_clock_mode 1 fdi_rx_polarity_inverted 0
[   17.739401] [drm:intel_bios_init [i915]] crt_ddc_bus_pin: 2
[   17.739754] [drm:intel_opregion_get_panel_type [i915]] Ignoring OpRegion panel type (0)
[   17.739771] [drm:intel_bios_init [i915]] Panel type: 2 (VBT)
[   17.739787] [drm:intel_bios_init [i915]] DRRS supported mode is static
[   17.739804] [drm:intel_bios_init [i915]] Found panel mode in BIOS VBT tables:
[   17.739810] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"1024x768" 0 65000 1024 1048 1184 1344 768 771 777 806 0x8 0xa
[   17.739825] [drm:intel_bios_init [i915]] VBT initial LVDS value 300
[   17.739842] [drm:intel_bios_init [i915]] VBT backlight PWM modulation frequency 200 Hz, active high, min brightness 0, level 255, controller 0
[   17.739857] [drm:intel_bios_init [i915]] DRRS State Enabled:1
[   17.739872] [drm:intel_bios_init [i915]] Skipping SDVO device mapping
[   17.739887] [drm:intel_bios_init [i915]] Port B VBT info: DP:0 HDMI:1 DVI:1 EDP:0 CRT:0
[   17.739902] [drm:intel_bios_init [i915]] VBT HDMI level shift for port B: 7
[   17.739917] [drm:intel_bios_init [i915]] Port C VBT info: DP:1 HDMI:1 DVI:1 EDP:0 CRT:0
[   17.739950] [drm:intel_bios_init [i915]] VBT HDMI level shift for port C: 7
[   17.739991] [drm:intel_bios_init [i915]] Port D VBT info: DP:1 HDMI:1 DVI:1 EDP:0 CRT:0
[   17.740006] [drm:intel_bios_init [i915]] VBT HDMI level shift for port D: 7
[   17.740020] [drm:intel_bios_init [i915]] Port E VBT info: DP:1 HDMI:0 DVI:0 EDP:0 CRT:0
[   17.740034] [drm:intel_bios_init [i915]] VBT HDMI level shift for port E: 0
[   17.740070] [drm:intel_dsm_detect [i915]] no _DSM method for intel device
[   17.740093] [drm:i915_driver_load [i915]] rawclk rate: 24000 kHz
[   17.740114] [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 00
[   17.740137] [drm:intel_power_well_enable [i915]] enabling power well 1
[   17.740159] [drm:intel_power_well_enable [i915]] enabling MISC IO power well
[   17.740182] [drm:skl_init_cdclk [i915]] Sanitizing cdclk programmed by pre-os
[   17.740277] [drm:intel_update_max_cdclk [i915]] Max CD clock rate: 675000 kHz
[   17.740294] [drm:skl_set_cdclk [i915]] Max dotclock rate: 675000 kHz
[   17.740325] [drm:intel_power_well_enable [i915]] enabling always-on
[   17.740339] [drm:intel_power_well_enable [i915]] enabling DC off
[   17.740353] [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 00
[   17.740368] [drm:intel_power_well_enable [i915]] enabling power well 2
[   17.740371] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   17.740860] [drm:intel_power_well_enable [i915]] enabling DDI A/E IO power well
[   17.740873] [drm:intel_power_well_enable [i915]] enabling DDI B IO power well
[   17.740887] [drm:intel_power_well_enable [i915]] enabling DDI C IO power well
[   17.740900] [drm:intel_power_well_enable [i915]] enabling DDI D IO power well
[   17.740919] [drm:intel_csr_ucode_init [i915]] Loading i915/skl_dmc_ver1_27.bin
[   17.741341] [drm:intel_fbc_init [i915]] Sanitized enable_fbc value: 1
[   17.741360] [drm:intel_print_wm_latency [i915]] Gen9 Plane WM0 latency 3 (3.0 usec)
[   17.741374] [drm:intel_print_wm_latency [i915]] Gen9 Plane WM1 latency 19 (19.0 usec)
[   17.741399] [drm:intel_print_wm_latency [i915]] Gen9 Plane WM2 latency 28 (28.0 usec)
[   17.741411] [drm:intel_print_wm_latency [i915]] Gen9 Plane WM3 latency 32 (32.0 usec)
[   17.741423] [drm:intel_print_wm_latency [i915]] Gen9 Plane WM4 latency 63 (63.0 usec)
[   17.741435] [drm:intel_print_wm_latency [i915]] Gen9 Plane WM5 latency 77 (77.0 usec)
[   17.741447] [drm:intel_print_wm_latency [i915]] Gen9 Plane WM6 latency 83 (83.0 usec)
[   17.741459] [drm:intel_print_wm_latency [i915]] Gen9 Plane WM7 latency 99 (99.0 usec)
[   17.741477] [drm:intel_modeset_init [i915]] 3 display pipes available.
[   17.741526] [drm:intel_dump_cdclk_state [i915]] Current CDCLK 337500 kHz, VCO 8100000 kHz, ref 24000 kHz, bypass 24000 kHz, voltage level 0
[   17.741846] [drm:intel_modeset_init [i915]] VBT says port A is not DVI/HDMI/DP compatible, respect it
[   17.741886] [drm:intel_hdmi_init_connector [i915]] Adding HDMI connector on port B
[   17.741904] [drm:intel_hdmi_init_connector [i915]] Using DDC pin 0x5 for port B (VBT)
[   17.741926] [drm:intel_dp_init_connector [i915]] Adding DP connector on port C
[   17.741978] [drm:intel_dp_init_connector [i915]] using AUX C for port C (VBT)
[   17.742022] [drm:intel_hdmi_init_connector [i915]] Adding HDMI connector on port C
[   17.742038] [drm:intel_hdmi_init_connector [i915]] Using DDC pin 0x4 for port C (VBT)
[   17.742055] [drm:intel_dp_init_connector [i915]] Adding DP connector on port D
[   17.742071] [drm:intel_dp_init_connector [i915]] using AUX D for port D (VBT)
[   17.742089] [drm:intel_hdmi_init_connector [i915]] Adding HDMI connector on port D
[   17.742104] [drm:intel_hdmi_init_connector [i915]] Using DDC pin 0x6 for port D (VBT)
[   17.742120] [drm:intel_dp_init_connector [i915]] Adding DP connector on port E
[   17.742135] [drm:intel_dp_init_connector [i915]] using AUX B for port E (VBT)
[   17.742157] [drm:intel_modeset_setup_hw_state [i915]] pipe A active planes 0x0
[   17.742175] [drm:intel_modeset_setup_hw_state [i915]] pipe A active planes 0x0
[   17.742193] [drm:intel_modeset_setup_hw_state [i915]] pipe A active planes 0x0
[   17.742210] [drm:intel_modeset_setup_hw_state [i915]] [CRTC:41:pipe A] hw state readout: disabled
[   17.742228] [drm:intel_modeset_setup_hw_state [i915]] pipe B active planes 0x0
[   17.742245] [drm:intel_modeset_setup_hw_state [i915]] pipe B active planes 0x0
[   17.742261] [drm:intel_modeset_setup_hw_state [i915]] pipe B active planes 0x0
[   17.742277] [drm:intel_modeset_setup_hw_state [i915]] [CRTC:55:pipe B] hw state readout: disabled
[   17.742293] [drm:intel_modeset_setup_hw_state [i915]] pipe C active planes 0x0
[   17.742309] [drm:intel_modeset_setup_hw_state [i915]] pipe C active planes 0x0
[   17.742324] [drm:intel_modeset_setup_hw_state [i915]] pipe C active planes 0x0
[   17.742339] [drm:intel_modeset_setup_hw_state [i915]] [CRTC:69:pipe C] hw state readout: disabled
[   17.742354] [drm:intel_modeset_setup_hw_state [i915]] DPLL 0 hw state readout: crtc_mask 0x00000000, on 1
[   17.742369] [drm:intel_modeset_setup_hw_state [i915]] DPLL 1 hw state readout: crtc_mask 0x00000000, on 0
[   17.742384] [drm:intel_modeset_setup_hw_state [i915]] DPLL 2 hw state readout: crtc_mask 0x00000000, on 0
[   17.742399] [drm:intel_modeset_setup_hw_state [i915]] DPLL 3 hw state readout: crtc_mask 0x00000000, on 0
[   17.742414] [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:70:DDI B] hw state readout: disabled, pipe A
[   17.742429] [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:77:DDI C] hw state readout: disabled, pipe A
[   17.742443] [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:79:DP-MST A] hw state readout: disabled, pipe A
[   17.742457] [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:80:DP-MST B] hw state readout: disabled, pipe B
[   17.742471] [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:81:DP-MST C] hw state readout: disabled, pipe C
[   17.742486] [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:85:DDI D] hw state readout: disabled, pipe A
[   17.742500] [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:87:DP-MST A] hw state readout: disabled, pipe A
[   17.742514] [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:88:DP-MST B] hw state readout: disabled, pipe B
[   17.742528] [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:89:DP-MST C] hw state readout: disabled, pipe C
[   17.742542] [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:93:DDI E] hw state readout: disabled, pipe A
[   17.742556] [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:71:HDMI-A-1] hw state readout: disabled
[   17.742571] [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:78:DP-1] hw state readout: disabled
[   17.742586] [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:83:HDMI-A-2] hw state readout: disabled
[   17.742600] [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:86:DP-2] hw state readout: disabled
[   17.742614] [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:91:HDMI-A-3] hw state readout: disabled
[   17.742629] [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:94:DP-3] hw state readout: disabled
[   17.742646] [drm:intel_dump_pipe_config [i915]] [CRTC:41:pipe A][setup_hw_state]
[   17.742661] [drm:intel_dump_pipe_config [i915]] output_types:  (0x0)
[   17.742677] [drm:intel_dump_pipe_config [i915]] cpu_transcoder: A, pipe bpp: 0, dithering: 0
[   17.742693] [drm:intel_dump_pipe_config [i915]] audio: 0, infoframes: 0
[   17.742708] [drm:intel_dump_pipe_config [i915]] requested mode:
[   17.742713] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[   17.742729] [drm:intel_dump_pipe_config [i915]] adjusted mode:
[   17.742733] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[   17.742750] [drm:intel_dump_pipe_config [i915]] crtc timings: 0 0 0 0 0 0 0 0 0, type: 0x0 flags: 0x0
[   17.742765] [drm:intel_dump_pipe_config [i915]] port clock: 0, pipe src size: 0x0, pixel rate 0
[   17.742780] [drm:intel_dump_pipe_config [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1
[   17.742794] [drm:intel_dump_pipe_config [i915]] pch pfit: pos: 0x00000000, size: 0x00000000, disabled
[   17.742808] [drm:intel_dump_pipe_config [i915]] ips: 0, double wide: 0
[   17.742823] [drm:intel_dump_pipe_config [i915]] dpll_hw_state: ctrl1: 0x0, cfgcr1: 0x0, cfgcr2: 0x0
[   17.742837] [drm:intel_dump_pipe_config [i915]] planes on this crtc
[   17.742851] [drm:intel_dump_pipe_config [i915]] [PLANE:28:plane 1A] disabled, scaler_id = -1
[   17.742866] [drm:intel_dump_pipe_config [i915]] [PLANE:33:plane 2A] disabled, scaler_id = -1
[   17.742880] [drm:intel_dump_pipe_config [i915]] [PLANE:38:cursor A] disabled, scaler_id = -1
[   17.742894] [drm:intel_dump_pipe_config [i915]] [CRTC:55:pipe B][setup_hw_state]
[   17.742909] [drm:intel_dump_pipe_config [i915]] output_types:  (0x0)
[   17.742924] [drm:intel_dump_pipe_config [i915]] cpu_transcoder: B, pipe bpp: 0, dithering: 0
[   17.742960] [drm:intel_dump_pipe_config [i915]] audio: 0, infoframes: 0
[   17.742987] [drm:intel_dump_pipe_config [i915]] requested mode:
[   17.742991] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[   17.743005] [drm:intel_dump_pipe_config [i915]] adjusted mode:
[   17.743010] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[   17.743025] [drm:intel_dump_pipe_config [i915]] crtc timings: 0 0 0 0 0 0 0 0 0, type: 0x0 flags: 0x0
[   17.743040] [drm:intel_dump_pipe_config [i915]] port clock: 0, pipe src size: 0x0, pixel rate 0
[   17.743054] [drm:intel_dump_pipe_config [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1
[   17.743068] [drm:intel_dump_pipe_config [i915]] pch pfit: pos: 0x00000000, size: 0x00000000, disabled
[   17.743082] [drm:intel_dump_pipe_config [i915]] ips: 0, double wide: 0
[   17.743096] [drm:intel_dump_pipe_config [i915]] dpll_hw_state: ctrl1: 0x0, cfgcr1: 0x0, cfgcr2: 0x0
[   17.743110] [drm:intel_dump_pipe_config [i915]] planes on this crtc
[   17.743124] [drm:intel_dump_pipe_config [i915]] [PLANE:42:plane 1B] disabled, scaler_id = -1
[   17.743138] [drm:intel_dump_pipe_config [i915]] [PLANE:47:plane 2B] disabled, scaler_id = -1
[   17.743152] [drm:intel_dump_pipe_config [i915]] [PLANE:52:cursor B] disabled, scaler_id = -1
[   17.743166] [drm:intel_dump_pipe_config [i915]] [CRTC:69:pipe C][setup_hw_state]
[   17.743179] [drm:intel_dump_pipe_config [i915]] output_types:  (0x0)
[   17.743193] [drm:intel_dump_pipe_config [i915]] cpu_transcoder: C, pipe bpp: 0, dithering: 0
[   17.743207] [drm:intel_dump_pipe_config [i915]] audio: 0, infoframes: 0
[   17.743220] [drm:intel_dump_pipe_config [i915]] requested mode:
[   17.743225] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[   17.743238] [drm:intel_dump_pipe_config [i915]] adjusted mode:
[   17.743243] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[   17.743258] [drm:intel_dump_pipe_config [i915]] crtc timings: 0 0 0 0 0 0 0 0 0, type: 0x0 flags: 0x0
[   17.743272] [drm:intel_dump_pipe_config [i915]] port clock: 0, pipe src size: 0x0, pixel rate 0
[   17.743286] [drm:intel_dump_pipe_config [i915]] num_scalers: 1, scaler_users: 0x0, scaler_id: -1
[   17.743300] [drm:intel_dump_pipe_config [i915]] pch pfit: pos: 0x00000000, size: 0x00000000, disabled
[   17.743314] [drm:intel_dump_pipe_config [i915]] ips: 0, double wide: 0
[   17.743328] [drm:intel_dump_pipe_config [i915]] dpll_hw_state: ctrl1: 0x0, cfgcr1: 0x0, cfgcr2: 0x0
[   17.743342] [drm:intel_dump_pipe_config [i915]] planes on this crtc
[   17.743355] [drm:intel_dump_pipe_config [i915]] [PLANE:56:plane 1C] disabled, scaler_id = -1
[   17.743370] [drm:intel_dump_pipe_config [i915]] [PLANE:61:plane 2C] disabled, scaler_id = -1
[   17.743383] [drm:intel_dump_pipe_config [i915]] [PLANE:66:cursor C] disabled, scaler_id = -1
[   17.743400] [drm:intel_modeset_setup_hw_state [i915]] DPLL 0 enabled but not in use, disabling
[   17.743423] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000aca0f6ea
[   17.743427] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000a4e7836b state to 00000000aca0f6ea
[   17.743431] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000ccf1c4bf state to 00000000aca0f6ea
[   17.743435] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:69:pipe C] 00000000006e4a3f state to 00000000aca0f6ea
[   17.743438] [drm:drm_atomic_check_only [drm]] checking 00000000aca0f6ea
[   17.743443] [drm:drm_atomic_commit [drm]] committing 00000000aca0f6ea
[   17.743712] [drm:i915_gem_init_ggtt [i915]] clearing unused GTT space: [1000, 100000000]
[   17.743729] [drm:intel_ctx_workarounds_init [i915]] Number of context specific w/a: 9
[   17.743737] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000aca0f6ea
[   17.743741] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000aca0f6ea
[   17.743773] [drm:i915_gem_contexts_init [i915]] logical context support initialized
[   17.745071] [drm:intel_fbdev_init [i915]] pipe A not active or no fb, skipping
[   17.745089] [drm:intel_fbdev_init [i915]] pipe B not active or no fb, skipping
[   17.745106] [drm:intel_fbdev_init [i915]] pipe C not active or no fb, skipping
[   17.745122] [drm:intel_fbdev_init [i915]] no active fbs found, not using BIOS config
[   17.745704] [drm:intel_dp_connector_register [i915]] registering DPDDC-C bus for card0-DP-1
[   17.745755] [drm:intel_dp_connector_register [i915]] registering DPDDC-D bus for card0-DP-2
[   17.745802] [drm:intel_dp_connector_register [i915]] registering DPDDC-E bus for card0-DP-3
[   17.745811] [drm] Initialized i915 1.6.0 20180906 for 0000:00:02.0 on minor 0
[   17.746294] [drm:intel_opregion_register [i915]] 6 outputs detected
[   17.747409] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   17.747980] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input11
[   17.748530] [drm:drm_setup_crtcs [drm_kms_helper]] 
[   17.748532] i915 device info: pciid=0x1912 rev=0x06 platform=SKYLAKE gen=9
[   17.748532] i915 device info: is_mobile: no
[   17.748535] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1]
[   17.748535] i915 device info: is_lp: no
[   17.748536] i915 device info: is_alpha_support: no
[   17.748571] [drm:intel_hdmi_detect [i915]] [CONNECTOR:71:HDMI-A-1]
[   17.748572] i915 device info: has_64bit_reloc: yes
[   17.748573] i915 device info: has_aliasing_ppgtt: yes
[   17.748573] i915 device info: has_csr: yes
[   17.748573] i915 device info: has_ddi: yes
[   17.748574] i915 device info: has_dp_mst: yes
[   17.748574] i915 device info: has_reset_engine: yes
[   17.748575] i915 device info: has_fbc: yes
[   17.748575] i915 device info: has_fpga_dbg: yes
[   17.748576] i915 device info: has_full_ppgtt: yes
[   17.748576] i915 device info: has_full_48bit_ppgtt: yes
[   17.748577] i915 device info: has_gmch_display: no
[   17.748577] i915 device info: has_guc: yes
[   17.748578] i915 device info: has_guc_ct: no
[   17.748578] i915 device info: has_hotplug: yes
[   17.748578] i915 device info: has_l3_dpf: no
[   17.748579] i915 device info: has_llc: yes
[   17.748579] i915 device info: has_logical_ring_contexts: yes
[   17.748580] i915 device info: has_logical_ring_elsq: no
[   17.748580] i915 device info: has_logical_ring_preemption: yes
[   17.748581] i915 device info: has_overlay: no
[   17.748581] i915 device info: has_pooled_eu: no
[   17.748582] i915 device info: has_psr: yes
[   17.748582] i915 device info: has_rc6: yes
[   17.748583] i915 device info: has_rc6p: no
[   17.748583] i915 device info: has_runtime_pm: yes
[   17.748583] i915 device info: has_snoop: no
[   17.748584] i915 device info: has_coherent_ggtt: yes
[   17.748584] i915 device info: unfenced_needs_alignment: no
[   17.748585] i915 device info: cursor_needs_physical: no
[   17.748585] i915 device info: hws_needs_physical: no
[   17.748586] i915 device info: overlay_needs_physical: no
[   17.748586] i915 device info: supports_tv: no
[   17.748587] i915 device info: has_ipc: yes
[   17.748587] i915 device info: slice total: 1, mask=0001
[   17.748588] i915 device info: subslice total: 3
[   17.748588] i915 device info: slice0: 3 subslices, mask=0007
[   17.748589] i915 device info: slice1: 0 subslices, mask=0000
[   17.748590] i915 device info: slice2: 0 subslices, mask=0000
[   17.748590] i915 device info: EU total: 24
[   17.748591] i915 device info: EU per subslice: 8
[   17.748591] i915 device info: has slice power gating: no
[   17.748591] i915 device info: has subslice power gating: no
[   17.748592] i915 device info: has EU power gating: yes
[   17.748592] i915 device info: CS timestamp frequency: 12000 kHz
[   17.748903] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   17.748921] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   17.749241] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   17.749260] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   17.749276] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   17.749292] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[   17.753154] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   17.753169] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[   17.753509] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   17.753523] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   17.753844] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   17.753877] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   17.753880] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1] status updated from unknown to disconnected
[   17.753883] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1] disconnected
[   17.753885] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1]
[   17.753927] [drm:intel_dp_detect [i915]] [CONNECTOR:78:DP-1]
[   17.753986] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1] status updated from unknown to disconnected
[   17.753989] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1] disconnected
[   17.753990] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2]
[   17.754007] [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-2]
[   17.754281] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   17.754295] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   17.754573] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   17.754591] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   17.754606] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   17.754620] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[   17.758516] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   17.758530] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[   17.758876] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   17.758889] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   17.759208] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   17.759241] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   17.759243] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2] status updated from unknown to disconnected
[   17.759245] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2] disconnected
[   17.759247] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2]
[   17.759261] [drm:intel_dp_detect [i915]] [CONNECTOR:86:DP-2]
[   17.759680] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 e4 01 01 01 01 81 00 00 00 00 00 00 00
[   17.760630] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[   17.760663] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000
[   17.760679] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000
[   17.761039] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-80-e1 dev-ID Dp1.2 HW-rev 0.0 SW-rev 0.21 quirks 0x0000
[   17.761326] [drm:intel_dp_detect [i915]] Sink is MST capable
[   17.762412] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2] status updated from unknown to disconnected
[   17.762414] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2] disconnected
[   17.762416] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3]
[   17.762434] [drm:intel_hdmi_detect [i915]] [CONNECTOR:91:HDMI-A-3]
[   17.762712] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   17.762729] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   17.762996] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   17.763015] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   17.763035] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   17.763053] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[   17.765583] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.765603] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.765622] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.766046] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.766818] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   17.766838] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[   17.767134] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   17.767152] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   17.767431] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   17.767465] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   17.767467] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3] status updated from unknown to disconnected
[   17.767469] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3] disconnected
[   17.767472] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3]
[   17.767490] [drm:intel_dp_detect [i915]] [CONNECTOR:94:DP-3]
[   17.767514] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3] status updated from unknown to disconnected
[   17.767515] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3] disconnected
[   17.767517] [drm:drm_setup_crtcs [drm_kms_helper]] No connectors reported connected with modes
[   17.767519] [drm:drm_setup_crtcs [drm_kms_helper]] connector 71 enabled? no
[   17.767521] [drm:drm_setup_crtcs [drm_kms_helper]] connector 78 enabled? no
[   17.767523] [drm:drm_setup_crtcs [drm_kms_helper]] connector 83 enabled? no
[   17.767525] [drm:drm_setup_crtcs [drm_kms_helper]] connector 86 enabled? no
[   17.767527] [drm:drm_setup_crtcs [drm_kms_helper]] connector 91 enabled? no
[   17.767529] [drm:drm_setup_crtcs [drm_kms_helper]] connector 94 enabled? no
[   17.767549] [drm:intel_fb_initial_config [i915]] Not using firmware configuration
[   17.767552] [drm:drm_setup_crtcs [drm_kms_helper]] picking CRTCs for 8192x8192 config
[   17.767553] [drm] Cannot find any crtc or sizes
[   17.767798] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000ae8de91b
[   17.767815] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.767848] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.767852] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000007b3b578f state to 00000000ae8de91b
[   17.767856] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:33:plane 2A] 0000000035535424 state to 00000000ae8de91b
[   17.767860] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:33:plane 2A] state 0000000035535424
[   17.767863] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:38:cursor A] 000000004c53e935 state to 00000000ae8de91b
[   17.767866] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:38:cursor A] state 000000004c53e935
[   17.767869] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000e259e82c state to 00000000ae8de91b
[   17.767872] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:47:plane 2B] 00000000abe0b366 state to 00000000ae8de91b
[   17.767876] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:47:plane 2B] state 00000000abe0b366
[   17.767879] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:52:cursor B] 000000009e431a23 state to 00000000ae8de91b
[   17.767882] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:52:cursor B] state 000000009e431a23
[   17.767884] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:56:plane 1C] 0000000095991c3d state to 00000000ae8de91b
[   17.767903] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:61:plane 2C] 00000000c745a7ff state to 00000000ae8de91b
[   17.767906] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:61:plane 2C] state 00000000c745a7ff
[   17.767909] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:66:cursor C] 0000000003c85851 state to 00000000ae8de91b
[   17.767913] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:66:cursor C] state 0000000003c85851
[   17.767919] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000023916254 state to 00000000ae8de91b
[   17.767922] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [NOMODE] for [CRTC:41:pipe A] state 0000000023916254
[   17.767925] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:28:plane 1A] state 000000007b3b578f
[   17.767928] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:41:pipe A] to 00000000ae8de91b
[   17.767932] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000cfed8171 state to 00000000ae8de91b
[   17.767935] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [NOMODE] for [CRTC:55:pipe B] state 00000000cfed8171
[   17.767938] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:42:plane 1B] state 00000000e259e82c
[   17.767940] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:55:pipe B] to 00000000ae8de91b
[   17.767944] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:69:pipe C] 00000000a78616fd state to 00000000ae8de91b
[   17.767947] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [NOMODE] for [CRTC:69:pipe C] state 00000000a78616fd
[   17.767950] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:56:plane 1C] state 0000000095991c3d
[   17.767952] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:69:pipe C] to 00000000ae8de91b
[   17.767955] [drm:drm_atomic_check_only [drm]] checking 00000000ae8de91b
[   17.767961] [drm:drm_atomic_commit [drm]] committing 00000000ae8de91b
[   17.767971] [drm:drm_setup_crtcs [drm_kms_helper]] 
[   17.767990] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000ae8de91b
[   17.767993] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1]
[   17.767996] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000ae8de91b
[   17.768010] [drm:intel_hdmi_detect [i915]] [CONNECTOR:71:HDMI-A-1]
[   17.768384] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   17.768395] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   17.768685] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   17.768721] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   17.768731] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   17.768741] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[   17.768971] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.768980] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.768993] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.769432] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.771025] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.771033] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.772374] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.772386] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.772397] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.772752] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   17.772761] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[   17.772861] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.773020] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   17.773029] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   17.773302] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   17.773321] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   17.773324] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1] disconnected
[   17.773326] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1]
[   17.773335] [drm:intel_dp_detect [i915]] [CONNECTOR:78:DP-1]
[   17.773344] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1] disconnected
[   17.773345] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2]
[   17.773354] [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-2]
[   17.773581] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   17.773589] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   17.773646] [drm:drm_dp_send_link_address [drm_kms_helper]] link address reply: 3
[   17.773649] [drm:drm_dp_send_link_address [drm_kms_helper]] port 0: input 1, pdt: 1, pn: 0, dpcd_rev: 00, mcs: 1, ddps: 1, ldps 0, sdp 0/0
[   17.773651] [drm:drm_dp_send_link_address [drm_kms_helper]] port 1: input 0, pdt: 3, pn: 8, dpcd_rev: 12, mcs: 0, ddps: 1, ldps 0, sdp 1/2
[   17.773654] [drm:drm_dp_send_link_address [drm_kms_helper]] port 2: input 0, pdt: 3, pn: 9, dpcd_rev: 12, mcs: 0, ddps: 1, ldps 0, sdp 0/0
[   17.773887] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   17.773911] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   17.773920] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   17.773928] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[   17.777786] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   17.777797] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[   17.778123] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   17.778131] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   17.778404] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   17.778468] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   17.778470] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2] disconnected
[   17.778473] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2]
[   17.778482] [drm:intel_dp_detect [i915]] [CONNECTOR:86:DP-2]
[   17.778892] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.778902] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.779271] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 e4 01 01 01 01 81 00 00 00 00 00 00 00
[   17.780181] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.780191] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.780203] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.780212] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[   17.780221] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000
[   17.780229] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000
[   17.780586] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.780940] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-80-e1 dev-ID Dp1.2 HW-rev 0.0 SW-rev 0.21 quirks 0x0000
[   17.781349] [drm:drm_dp_send_enum_path_resources.isra.16 [drm_kms_helper]] enum path resources 8: 2560 0
[   17.781642] [drm:intel_dp_detect [i915]] Sink is MST capable
[   17.781645] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2] disconnected
[   17.781647] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3]
[   17.781656] [drm:intel_hdmi_detect [i915]] [CONNECTOR:91:HDMI-A-3]
[   17.781872] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   17.781880] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   17.782147] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   17.782165] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   17.782174] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   17.782182] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[   17.785804] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   17.785813] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[   17.786116] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   17.786124] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   17.786389] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   17.786398] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.786423] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.786472] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   17.786474] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3] disconnected
[   17.786476] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3]
[   17.786484] [drm:intel_dp_detect [i915]] [CONNECTOR:94:DP-3]
[   17.786506] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3] disconnected
[   17.786508] [drm:drm_setup_crtcs [drm_kms_helper]] No connectors reported connected with modes
[   17.786510] [drm:drm_setup_crtcs [drm_kms_helper]] connector 71 enabled? no
[   17.786512] [drm:drm_setup_crtcs [drm_kms_helper]] connector 78 enabled? no
[   17.786513] [drm:drm_setup_crtcs [drm_kms_helper]] connector 83 enabled? no
[   17.786515] [drm:drm_setup_crtcs [drm_kms_helper]] connector 86 enabled? no
[   17.786517] [drm:drm_setup_crtcs [drm_kms_helper]] connector 91 enabled? no
[   17.786518] [drm:drm_setup_crtcs [drm_kms_helper]] connector 94 enabled? no
[   17.786528] [drm:intel_fb_initial_config [i915]] Not using firmware configuration
[   17.786530] [drm:drm_setup_crtcs [drm_kms_helper]] picking CRTCs for 8192x8192 config
[   17.786531] [drm] Cannot find any crtc or sizes
[   17.786777] [drm:drm_setup_crtcs [drm_kms_helper]] 
[   17.786780] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1]
[   17.786787] [drm:intel_hdmi_detect [i915]] [CONNECTOR:71:HDMI-A-1]
[   17.787147] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   17.787154] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   17.787457] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   17.787482] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   17.787490] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   17.787498] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[   17.791361] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.791371] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.791451] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.791875] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   17.791884] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[   17.791982] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.792169] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   17.792177] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   17.792442] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   17.792472] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   17.792474] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1] disconnected
[   17.792476] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1]
[   17.792485] [drm:intel_dp_detect [i915]] [CONNECTOR:78:DP-1]
[   17.792507] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1] disconnected
[   17.792509] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2]
[   17.792517] [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-2]
[   17.792794] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   17.792802] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   17.793108] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   17.793132] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   17.793140] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   17.793148] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[   17.796884] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   17.796892] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[   17.797176] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   17.797184] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   17.797449] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   17.797476] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   17.797478] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2] disconnected
[   17.797480] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2]
[   17.797488] [drm:intel_dp_detect [i915]] [CONNECTOR:86:DP-2]
[   17.797497] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.797505] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.797897] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 e4 01 01 01 01 81 00 00 00 00 00 00 00
[   17.798836] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[   17.798844] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000
[   17.798851] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000
[   17.799211] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-80-e1 dev-ID Dp1.2 HW-rev 0.0 SW-rev 0.21 quirks 0x0000
[   17.799489] [drm:intel_dp_detect [i915]] Sink is MST capable
[   17.799491] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2] disconnected
[   17.799493] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3]
[   17.799501] [drm:intel_hdmi_detect [i915]] [CONNECTOR:91:HDMI-A-3]
[   17.799745] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   17.799753] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   17.800019] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   17.800037] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   17.800060] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   17.800068] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[   17.802392] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.802400] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.802411] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.802836] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.803805] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   17.803814] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[   17.804089] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   17.804097] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   17.804363] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   17.804387] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   17.804389] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3] disconnected
[   17.804392] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3]
[   17.804400] [drm:intel_dp_detect [i915]] [CONNECTOR:94:DP-3]
[   17.804422] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3] disconnected
[   17.804423] [drm:drm_setup_crtcs [drm_kms_helper]] No connectors reported connected with modes
[   17.804425] [drm:drm_setup_crtcs [drm_kms_helper]] connector 71 enabled? no
[   17.804427] [drm:drm_setup_crtcs [drm_kms_helper]] connector 78 enabled? no
[   17.804429] [drm:drm_setup_crtcs [drm_kms_helper]] connector 83 enabled? no
[   17.804431] [drm:drm_setup_crtcs [drm_kms_helper]] connector 86 enabled? no
[   17.804433] [drm:drm_setup_crtcs [drm_kms_helper]] connector 91 enabled? no
[   17.804435] [drm:drm_setup_crtcs [drm_kms_helper]] connector 94 enabled? no
[   17.804444] [drm:intel_fb_initial_config [i915]] Not using firmware configuration
[   17.804446] [drm:drm_setup_crtcs [drm_kms_helper]] picking CRTCs for 8192x8192 config
[   17.804447] [drm] Cannot find any crtc or sizes
[   17.804751] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.804759] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.806697] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.806704] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.806714] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.807093] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.808742] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.808749] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.811039] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.811046] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.811055] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.811435] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.813085] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.813092] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.815504] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.815511] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.815521] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.815900] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.818897] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.818904] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.823537] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.823545] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.823606] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.823990] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.825664] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.825672] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.827845] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.827855] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.827864] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.828245] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.829892] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.829899] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.832287] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.832295] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.832304] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.832684] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.834331] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.834338] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.836721] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.836729] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.836738] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.837118] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.838243] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   17.838247] [drm:drm_get_edid [drm]] block id 0x12, rev 0, len 22
[   17.838250] [drm:drm_get_edid [drm]] tile cap 0x82
[   17.838253] [drm:drm_get_edid [drm]] tile_size 1920 x 2160
[   17.838256] [drm:drm_get_edid [drm]] topo num tiles 2x1, location 1x0
[   17.838259] [drm:drm_get_edid [drm]] vend DEL
[   17.840015] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.840022] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.841677] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.841684] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.841693] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.842073] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.842481] [drm:drm_dp_send_enum_path_resources.isra.16 [drm_kms_helper]] enum path resources 9: 1260 1260
[   17.844357] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.844365] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.849372] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.849381] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.849426] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.849808] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.852101] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.852108] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.857345] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.857353] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.857414] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.857797] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.859470] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.859477] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.859600] [drm:intel_power_well_disable [i915]] disabling DDI D IO power well
[   17.859607] [drm:intel_power_well_disable [i915]] disabling DDI C IO power well
[   17.859614] [drm:intel_power_well_disable [i915]] disabling DDI B IO power well
[   17.859620] [drm:intel_power_well_disable [i915]] disabling DDI A/E IO power well
[   17.859626] [drm:intel_power_well_disable [i915]] disabling power well 2
[   17.859635] [drm:intel_power_well_disable [i915]] disabling DC off
[   17.859641] [drm:gen9_dc_off_power_well_disable [i915]] Enabling DC6
[   17.859648] [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[   17.859655] [drm:intel_power_well_disable [i915]] disabling always-on
[   17.859656] [drm] Finished loading DMC firmware i915/skl_dmc_ver1_27.bin (v1.27)
[   17.861939] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.861949] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.861959] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.861965] [drm:intel_power_well_enable [i915]] enabling always-on
[   17.861971] [drm:intel_power_well_enable [i915]] enabling DC off
[   17.862362] [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[   17.862370] [drm:intel_power_well_enable [i915]] enabling power well 2
[   17.862757] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.864406] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.864417] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.864439] [drm:intel_power_well_disable [i915]] disabling power well 2
[   17.864474] [drm:intel_power_well_disable [i915]] disabling DC off
[   17.864481] [drm:gen9_dc_off_power_well_disable [i915]] Enabling DC6
[   17.864488] [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[   17.864494] [drm:intel_power_well_disable [i915]] disabling always-on
[   17.866339] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.866347] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.866356] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.866362] [drm:intel_power_well_enable [i915]] enabling always-on
[   17.866367] [drm:intel_power_well_enable [i915]] enabling DC off
[   17.866373] [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[   17.866381] [drm:intel_power_well_enable [i915]] enabling power well 2
[   17.866765] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.868412] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.868419] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.868426] [drm:intel_power_well_disable [i915]] disabling power well 2
[   17.868453] [drm:intel_power_well_disable [i915]] disabling DC off
[   17.868460] [drm:gen9_dc_off_power_well_disable [i915]] Enabling DC6
[   17.868466] [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[   17.868473] [drm:intel_power_well_disable [i915]] disabling always-on
[   17.870760] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.870767] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.870777] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.870783] [drm:intel_power_well_enable [i915]] enabling always-on
[   17.870788] [drm:intel_power_well_enable [i915]] enabling DC off
[   17.870794] [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[   17.871187] [drm:intel_power_well_enable [i915]] enabling power well 2
[   17.871571] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.874561] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.874569] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.874576] [drm:intel_power_well_disable [i915]] disabling power well 2
[   17.874584] [drm:intel_power_well_disable [i915]] disabling DC off
[   17.874591] [drm:gen9_dc_off_power_well_disable [i915]] Enabling DC6
[   17.874597] [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[   17.874604] [drm:intel_power_well_disable [i915]] disabling always-on
[   17.879813] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.879822] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.879867] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.879874] [drm:intel_power_well_enable [i915]] enabling always-on
[   17.879880] [drm:intel_power_well_enable [i915]] enabling DC off
[   17.880253] [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[   17.880281] [drm:intel_power_well_enable [i915]] enabling power well 2
[   17.880692] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.882363] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.882371] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.882378] [drm:intel_power_well_disable [i915]] disabling power well 2
[   17.882387] [drm:intel_power_well_disable [i915]] disabling DC off
[   17.882394] [drm:gen9_dc_off_power_well_disable [i915]] Enabling DC6
[   17.882400] [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[   17.882425] [drm:intel_power_well_disable [i915]] disabling always-on
[   17.884133] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.884142] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.884168] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.884174] [drm:intel_power_well_enable [i915]] enabling always-on
[   17.884180] [drm:intel_power_well_enable [i915]] enabling DC off
[   17.884572] [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[   17.884579] [drm:intel_power_well_enable [i915]] enabling power well 2
[   17.884964] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.886612] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.886620] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.886627] [drm:intel_power_well_disable [i915]] disabling power well 2
[   17.886636] [drm:intel_power_well_disable [i915]] disabling DC off
[   17.886642] [drm:gen9_dc_off_power_well_disable [i915]] Enabling DC6
[   17.886649] [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[   17.886655] [drm:intel_power_well_disable [i915]] disabling always-on
[   17.888462] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.888470] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.888480] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.888486] [drm:intel_power_well_enable [i915]] enabling always-on
[   17.888491] [drm:intel_power_well_enable [i915]] enabling DC off
[   17.888497] [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[   17.888504] [drm:intel_power_well_enable [i915]] enabling power well 2
[   17.888889] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.890536] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.890544] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.890550] [drm:intel_power_well_disable [i915]] disabling power well 2
[   17.890576] [drm:intel_power_well_disable [i915]] disabling DC off
[   17.890583] [drm:gen9_dc_off_power_well_disable [i915]] Enabling DC6
[   17.890589] [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[   17.890596] [drm:intel_power_well_disable [i915]] disabling always-on
[   17.892902] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.892909] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.892919] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.892926] [drm:intel_power_well_enable [i915]] enabling always-on
[   17.892931] [drm:intel_power_well_enable [i915]] enabling DC off
[   17.893324] [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[   17.893331] [drm:intel_power_well_enable [i915]] enabling power well 2
[   17.893716] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.894838] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   17.894842] [drm:drm_get_edid [drm]] block id 0x12, rev 0, len 22
[   17.894845] [drm:drm_get_edid [drm]] tile cap 0x82
[   17.894848] [drm:drm_get_edid [drm]] tile_size 1920 x 2160
[   17.894851] [drm:drm_get_edid [drm]] topo num tiles 2x1, location 0x0
[   17.894854] [drm:drm_get_edid [drm]] vend DEL
[   17.894881] [drm:drm_setup_crtcs [drm_kms_helper]] 
[   17.894883] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1]
[   17.894892] [drm:intel_hdmi_detect [i915]] [CONNECTOR:71:HDMI-A-1]
[   17.895186] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   17.895194] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   17.895462] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   17.895487] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.895494] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.895501] [drm:intel_power_well_disable [i915]] disabling power well 2
[   17.895525] [drm:intel_power_well_disable [i915]] disabling DC off
[   17.895532] [drm:gen9_dc_off_power_well_disable [i915]] Enabling DC6
[   17.895538] [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[   17.895543] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   17.895551] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   17.895560] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[   17.899395] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   17.899403] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[   17.900049] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   17.900406] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   17.901446] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   17.901500] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   17.901507] [drm:intel_power_well_disable [i915]] disabling always-on
[   17.901509] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1] disconnected
[   17.901511] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1]
[   17.901518] [drm:intel_dp_detect [i915]] [CONNECTOR:78:DP-1]
[   17.901524] [drm:intel_power_well_enable [i915]] enabling always-on
[   17.901530] [drm:intel_power_well_enable [i915]] enabling DC off
[   17.901862] [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[   17.901870] [drm:intel_power_well_enable [i915]] enabling power well 2
[   17.901901] [drm:intel_power_well_disable [i915]] disabling power well 2
[   17.901984] [drm:intel_power_well_disable [i915]] disabling DC off
[   17.902007] [drm:gen9_dc_off_power_well_disable [i915]] Enabling DC6
[   17.902013] [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[   17.902020] [drm:intel_power_well_disable [i915]] disabling always-on
[   17.902021] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1] disconnected
[   17.902040] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2]
[   17.902047] [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-2]
[   17.902052] [drm:intel_power_well_enable [i915]] enabling always-on
[   17.903037] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   17.903060] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   17.903592] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   17.903646] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   17.903653] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   17.903660] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[   17.907667] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   17.907674] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[   17.908698] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   17.908706] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   17.909734] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   17.909792] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   17.909798] [drm:intel_power_well_disable [i915]] disabling always-on
[   17.909800] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2] disconnected
[   17.909802] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2]
[   17.909809] [drm:intel_dp_detect [i915]] [CONNECTOR:86:DP-2]
[   17.909814] [drm:intel_power_well_enable [i915]] enabling always-on
[   17.909820] [drm:intel_power_well_enable [i915]] enabling DC off
[   17.910193] [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[   17.910217] [drm:intel_power_well_enable [i915]] enabling power well 2
[   17.910643] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 e4 01 01 01 01 81 00 00 00 00 00 00 00
[   17.911585] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[   17.911593] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000
[   17.911601] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000
[   17.911961] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-80-e1 dev-ID Dp1.2 HW-rev 0.0 SW-rev 0.21 quirks 0x0000
[   17.912240] [drm:intel_dp_detect [i915]] Sink is MST capable
[   17.912246] [drm:intel_power_well_disable [i915]] disabling power well 2
[   17.912255] [drm:intel_power_well_disable [i915]] disabling DC off
[   17.912262] [drm:gen9_dc_off_power_well_disable [i915]] Enabling DC6
[   17.912268] [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[   17.912275] [drm:intel_power_well_disable [i915]] disabling always-on
[   17.912277] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2] disconnected
[   17.912279] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3]
[   17.912287] [drm:intel_hdmi_detect [i915]] [CONNECTOR:91:HDMI-A-3]
[   17.912293] [drm:intel_power_well_enable [i915]] enabling always-on
[   17.912891] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   17.912899] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   17.913454] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   17.913507] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   17.913515] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   17.913523] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[   17.917321] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   17.917329] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[   17.917982] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   17.917989] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   17.918594] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   17.919042] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   17.919048] [drm:intel_power_well_disable [i915]] disabling always-on
[   17.919066] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3] disconnected
[   17.919068] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3]
[   17.919091] [drm:intel_dp_detect [i915]] [CONNECTOR:94:DP-3]
[   17.919097] [drm:intel_power_well_enable [i915]] enabling always-on
[   17.919102] [drm:intel_power_well_enable [i915]] enabling DC off
[   17.919459] [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[   17.919466] [drm:intel_power_well_enable [i915]] enabling power well 2
[   17.919496] [drm:intel_power_well_disable [i915]] disabling power well 2
[   17.919504] [drm:intel_power_well_disable [i915]] disabling DC off
[   17.919527] [drm:gen9_dc_off_power_well_disable [i915]] Enabling DC6
[   17.919557] [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[   17.919992] [drm:intel_power_well_disable [i915]] disabling always-on
[   17.919994] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3] disconnected
[   17.919996] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4]
[   17.920014] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4] status updated from unknown to connected
[   17.920018] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   17.920038] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   17.920041] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   17.920049] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   17.920072] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4] probed modes :
[   17.920076] [drm:drm_mode_debug_printmodeline [drm]] Modeline 102:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   17.920078] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5]
[   17.920079] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5] status updated from unknown to connected
[   17.920082] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   17.920085] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   17.920087] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   17.920098] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   17.920142] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5] probed modes :
[   17.920146] [drm:drm_mode_debug_printmodeline [drm]] Modeline 104:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   17.920149] [drm:drm_mode_debug_printmodeline [drm]] Modeline 107:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[   17.920152] [drm:drm_mode_debug_printmodeline [drm]] Modeline 111:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0xa
[   17.920155] [drm:drm_mode_debug_printmodeline [drm]] Modeline 109:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[   17.920158] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   17.920160] [drm:drm_mode_debug_printmodeline [drm]] Modeline 116:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   17.920163] [drm:drm_mode_debug_printmodeline [drm]] Modeline 110:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   17.920166] [drm:drm_mode_debug_printmodeline [drm]] Modeline 105:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   17.920169] [drm:drm_mode_debug_printmodeline [drm]] Modeline 108:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   17.920172] [drm:drm_mode_debug_printmodeline [drm]] Modeline 117:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   17.920174] [drm:drm_mode_debug_printmodeline [drm]] Modeline 118:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   17.920177] [drm:drm_mode_debug_printmodeline [drm]] Modeline 119:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   17.920180] [drm:drm_mode_debug_printmodeline [drm]] Modeline 112:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   17.920183] [drm:drm_mode_debug_printmodeline [drm]] Modeline 113:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   17.920185] [drm:drm_mode_debug_printmodeline [drm]] Modeline 114:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   17.920188] [drm:drm_mode_debug_printmodeline [drm]] Modeline 115:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   17.920190] [drm:drm_setup_crtcs [drm_kms_helper]] connector 71 enabled? no
[   17.920191] [drm:drm_setup_crtcs [drm_kms_helper]] connector 78 enabled? no
[   17.920193] [drm:drm_setup_crtcs [drm_kms_helper]] connector 83 enabled? no
[   17.920195] [drm:drm_setup_crtcs [drm_kms_helper]] connector 86 enabled? no
[   17.920196] [drm:drm_setup_crtcs [drm_kms_helper]] connector 91 enabled? no
[   17.920198] [drm:drm_setup_crtcs [drm_kms_helper]] connector 94 enabled? no
[   17.920199] [drm:drm_setup_crtcs [drm_kms_helper]] connector 95 enabled? yes
[   17.920201] [drm:drm_setup_crtcs [drm_kms_helper]] connector 98 enabled? yes
[   17.920209] [drm:intel_fb_initial_config [i915]] connector DP-4 has no encoder or crtc, skipping
[   17.920216] [drm:intel_fb_initial_config [i915]] connector DP-5 has no encoder or crtc, skipping
[   17.920223] [drm:intel_fb_initial_config [i915]] connector HDMI-A-1 not enabled, skipping
[   17.920230] [drm:intel_fb_initial_config [i915]] connector DP-1 not enabled, skipping
[   17.920236] [drm:intel_fb_initial_config [i915]] connector HDMI-A-2 not enabled, skipping
[   17.920243] [drm:intel_fb_initial_config [i915]] connector DP-2 not enabled, skipping
[   17.920249] [drm:intel_fb_initial_config [i915]] connector HDMI-A-3 not enabled, skipping
[   17.920256] [drm:intel_fb_initial_config [i915]] connector DP-3 not enabled, skipping
[   17.920262] [drm:intel_fb_initial_config [i915]] fallback: Not all outputs enabled
[   17.920269] [drm:intel_fb_initial_config [i915]] Enabled: 0, detected: 2
[   17.920275] [drm:intel_fb_initial_config [i915]] Not using firmware configuration
[   17.920277] [drm:drm_setup_crtcs [drm_kms_helper]] looking for cmdline mode on connector 98
[   17.920279] [drm:drm_setup_crtcs [drm_kms_helper]] looking for preferred mode on connector 98 1
[   17.920281] [drm:drm_setup_crtcs [drm_kms_helper]] found mode 1920x2160
[   17.920282] [drm:drm_setup_crtcs [drm_kms_helper]] no modes for connector tiled 6 95
[   17.920284] [drm:drm_setup_crtcs [drm_kms_helper]] returned 1920 0 for 1 0
[   17.920285] [drm:drm_setup_crtcs [drm_kms_helper]] looking for cmdline mode on connector 95
[   17.920287] [drm:drm_setup_crtcs [drm_kms_helper]] looking for preferred mode on connector 95 1
[   17.920289] [drm:drm_setup_crtcs [drm_kms_helper]] found mode 1920x2160
[   17.920290] [drm:drm_setup_crtcs [drm_kms_helper]] picking CRTCs for 8192x8192 config
[   17.920293] [drm:drm_setup_crtcs [drm_kms_helper]] desired mode 1920x2160 set on crtc 41 (1920,0)
[   17.920295] [drm:drm_setup_crtcs [drm_kms_helper]] desired mode 1920x2160 set on crtc 55 (0,0)
[   17.920303] [drm:intelfb_create [i915]] no BIOS fb, allocating a new one
[   17.923906] [drm:intelfb_create [i915]] allocated 3840x2160 fb: 0x00040000
[   17.924035] [drm:drm_fb_helper_hotplug_event.part.28 [drm_kms_helper]] 
[   17.924036] [drm:drm_setup_crtcs [drm_kms_helper]] 
[   17.924039] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1]
[   17.924065] [drm:intel_hdmi_detect [i915]] [CONNECTOR:71:HDMI-A-1]
[   17.924088] [drm:intel_power_well_enable [i915]] enabling always-on
[   17.924192] fbcon: inteldrmfb (fb0) is primary device
[   17.924692] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   17.924699] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   17.926170] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   17.926205] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   17.926212] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   17.926220] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[   17.930264] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   17.930272] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[   17.930899] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   17.930906] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   17.931504] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   17.931529] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   17.931536] [drm:intel_power_well_disable [i915]] disabling always-on
[   17.931538] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1] disconnected
[   17.931541] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1]
[   17.931548] [drm:intel_dp_detect [i915]] [CONNECTOR:78:DP-1]
[   17.931554] [drm:intel_power_well_enable [i915]] enabling always-on
[   17.931560] [drm:intel_power_well_enable [i915]] enabling DC off
[   17.931813] [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[   17.931820] [drm:intel_power_well_enable [i915]] enabling power well 2
[   17.931855] [drm:intel_power_well_disable [i915]] disabling power well 2
[   17.931863] [drm:intel_power_well_disable [i915]] disabling DC off
[   17.931887] [drm:gen9_dc_off_power_well_disable [i915]] Enabling DC6
[   17.931902] [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[   17.931908] [drm:intel_power_well_disable [i915]] disabling always-on
[   17.931910] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1] disconnected
[   17.931912] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2]
[   17.931921] [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-2]
[   17.931927] [drm:intel_power_well_enable [i915]] enabling always-on
[   17.932579] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   17.932586] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   17.933183] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   17.933210] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   17.933217] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   17.933225] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[   17.937257] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   17.937265] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[   17.937869] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   17.937893] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   17.938511] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   17.938922] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   17.938947] [drm:intel_power_well_disable [i915]] disabling always-on
[   17.938949] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2] disconnected
[   17.938951] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2]
[   17.938976] [drm:intel_dp_detect [i915]] [CONNECTOR:86:DP-2]
[   17.938982] [drm:intel_power_well_enable [i915]] enabling always-on
[   17.939003] [drm:intel_power_well_enable [i915]] enabling DC off
[   17.939383] [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[   17.939390] [drm:intel_power_well_enable [i915]] enabling power well 2
[   17.939806] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 e4 01 01 01 01 81 00 00 00 00 00 00 00
[   17.940746] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[   17.940754] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000
[   17.940761] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000
[   17.941121] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-80-e1 dev-ID Dp1.2 HW-rev 0.0 SW-rev 0.21 quirks 0x0000
[   17.941400] [drm:intel_dp_detect [i915]] Sink is MST capable
[   17.941406] [drm:intel_power_well_disable [i915]] disabling power well 2
[   17.941415] [drm:intel_power_well_disable [i915]] disabling DC off
[   17.941422] [drm:gen9_dc_off_power_well_disable [i915]] Enabling DC6
[   17.941428] [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[   17.941435] [drm:intel_power_well_disable [i915]] disabling always-on
[   17.941437] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2] disconnected
[   17.941439] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3]
[   17.941463] [drm:intel_hdmi_detect [i915]] [CONNECTOR:91:HDMI-A-3]
[   17.941469] [drm:intel_power_well_enable [i915]] enabling always-on
[   17.942043] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   17.942051] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   17.942602] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   17.942642] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   17.942650] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   17.942657] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[   17.946464] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   17.946471] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[   17.947501] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   17.947524] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   17.948533] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   17.948585] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   17.948591] [drm:intel_power_well_disable [i915]] disabling always-on
[   17.948593] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3] disconnected
[   17.948594] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3]
[   17.948602] [drm:intel_dp_detect [i915]] [CONNECTOR:94:DP-3]
[   17.948608] [drm:intel_power_well_enable [i915]] enabling always-on
[   17.948613] [drm:intel_power_well_enable [i915]] enabling DC off
[   17.948987] [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[   17.949011] [drm:intel_power_well_enable [i915]] enabling power well 2
[   17.949053] [drm:intel_power_well_disable [i915]] disabling power well 2
[   17.949070] [drm:intel_power_well_disable [i915]] disabling DC off
[   17.949077] [drm:gen9_dc_off_power_well_disable [i915]] Enabling DC6
[   17.949083] [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[   17.949089] [drm:intel_power_well_disable [i915]] disabling always-on
[   17.949091] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3] disconnected
[   17.949093] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4]
[   17.949098] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   17.949102] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   17.949105] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   17.949113] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   17.949119] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4] probed modes :
[   17.949124] [drm:drm_mode_debug_printmodeline [drm]] Modeline 102:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   17.949125] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5]
[   17.949129] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   17.949132] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   17.949134] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   17.949146] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   17.949192] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5] probed modes :
[   17.949196] [drm:drm_mode_debug_printmodeline [drm]] Modeline 104:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   17.949200] [drm:drm_mode_debug_printmodeline [drm]] Modeline 107:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[   17.949203] [drm:drm_mode_debug_printmodeline [drm]] Modeline 111:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0xa
[   17.949206] [drm:drm_mode_debug_printmodeline [drm]] Modeline 109:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[   17.949209] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   17.949212] [drm:drm_mode_debug_printmodeline [drm]] Modeline 116:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   17.949215] [drm:drm_mode_debug_printmodeline [drm]] Modeline 110:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   17.949218] [drm:drm_mode_debug_printmodeline [drm]] Modeline 105:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   17.949220] [drm:drm_mode_debug_printmodeline [drm]] Modeline 108:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   17.949223] [drm:drm_mode_debug_printmodeline [drm]] Modeline 117:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   17.949226] [drm:drm_mode_debug_printmodeline [drm]] Modeline 118:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   17.949229] [drm:drm_mode_debug_printmodeline [drm]] Modeline 119:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   17.949232] [drm:drm_mode_debug_printmodeline [drm]] Modeline 112:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   17.949234] [drm:drm_mode_debug_printmodeline [drm]] Modeline 113:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   17.949237] [drm:drm_mode_debug_printmodeline [drm]] Modeline 114:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   17.949240] [drm:drm_mode_debug_printmodeline [drm]] Modeline 115:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   17.949242] [drm:drm_setup_crtcs [drm_kms_helper]] connector 71 enabled? no
[   17.949243] [drm:drm_setup_crtcs [drm_kms_helper]] connector 78 enabled? no
[   17.949245] [drm:drm_setup_crtcs [drm_kms_helper]] connector 83 enabled? no
[   17.949246] [drm:drm_setup_crtcs [drm_kms_helper]] connector 86 enabled? no
[   17.949248] [drm:drm_setup_crtcs [drm_kms_helper]] connector 91 enabled? no
[   17.949250] [drm:drm_setup_crtcs [drm_kms_helper]] connector 94 enabled? no
[   17.949251] [drm:drm_setup_crtcs [drm_kms_helper]] connector 95 enabled? yes
[   17.949253] [drm:drm_setup_crtcs [drm_kms_helper]] connector 98 enabled? yes
[   17.949262] [drm:intel_fb_initial_config [i915]] connector DP-4 has no encoder or crtc, skipping
[   17.949269] [drm:intel_fb_initial_config [i915]] connector DP-5 has no encoder or crtc, skipping
[   17.949276] [drm:intel_fb_initial_config [i915]] connector HDMI-A-1 not enabled, skipping
[   17.949283] [drm:intel_fb_initial_config [i915]] connector DP-1 not enabled, skipping
[   17.949289] [drm:intel_fb_initial_config [i915]] connector HDMI-A-2 not enabled, skipping
[   17.949296] [drm:intel_fb_initial_config [i915]] connector DP-2 not enabled, skipping
[   17.949303] [drm:intel_fb_initial_config [i915]] connector HDMI-A-3 not enabled, skipping
[   17.949309] [drm:intel_fb_initial_config [i915]] connector DP-3 not enabled, skipping
[   17.949316] [drm:intel_fb_initial_config [i915]] fallback: Not all outputs enabled
[   17.949323] [drm:intel_fb_initial_config [i915]] Enabled: 0, detected: 2
[   17.949329] [drm:intel_fb_initial_config [i915]] Not using firmware configuration
[   17.949331] [drm:drm_setup_crtcs [drm_kms_helper]] looking for cmdline mode on connector 98
[   17.949333] [drm:drm_setup_crtcs [drm_kms_helper]] looking for preferred mode on connector 98 1
[   17.949335] [drm:drm_setup_crtcs [drm_kms_helper]] found mode 1920x2160
[   17.949336] [drm:drm_setup_crtcs [drm_kms_helper]] no modes for connector tiled 6 95
[   17.949338] [drm:drm_setup_crtcs [drm_kms_helper]] returned 1920 0 for 1 0
[   17.949339] [drm:drm_setup_crtcs [drm_kms_helper]] looking for cmdline mode on connector 95
[   17.949341] [drm:drm_setup_crtcs [drm_kms_helper]] looking for preferred mode on connector 95 1
[   17.949342] [drm:drm_setup_crtcs [drm_kms_helper]] found mode 1920x2160
[   17.949344] [drm:drm_setup_crtcs [drm_kms_helper]] picking CRTCs for 3840x2160 config
[   17.949348] [drm:drm_setup_crtcs [drm_kms_helper]] desired mode 1920x2160 set on crtc 41 (1920,0)
[   17.949350] [drm:drm_setup_crtcs [drm_kms_helper]] desired mode 1920x2160 set on crtc 55 (0,0)
[   17.949357] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000d432046a
[   17.949361] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000663097b7 state to 00000000d432046a
[   17.949365] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:33:plane 2A] 000000009d2fc896 state to 00000000d432046a
[   17.949368] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:33:plane 2A] state 000000009d2fc896
[   17.949371] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:38:cursor A] 000000005522d1fb state to 00000000d432046a
[   17.949374] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:38:cursor A] state 000000005522d1fb
[   17.949377] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 0000000058f58f5c state to 00000000d432046a
[   17.949380] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:47:plane 2B] 000000004f4e195c state to 00000000d432046a
[   17.949383] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:47:plane 2B] state 000000004f4e195c
[   17.949385] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:52:cursor B] 0000000046e08a61 state to 00000000d432046a
[   17.949388] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:52:cursor B] state 0000000046e08a61
[   17.949391] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:56:plane 1C] 000000008d7c1140 state to 00000000d432046a
[   17.949393] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:61:plane 2C] 000000003e7c78e0 state to 00000000d432046a
[   17.949396] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:61:plane 2C] state 000000003e7c78e0
[   17.949399] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:66:cursor C] 00000000bbaab71c state to 00000000d432046a
[   17.949402] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:66:cursor C] state 00000000bbaab71c
[   17.949405] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000009190ab2d state to 00000000d432046a
[   17.949408] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:1920x2160] for [CRTC:41:pipe A] state 000000009190ab2d
[   17.949411] [drm:drm_atomic_set_crtc_for_plane [drm]] Link [PLANE:28:plane 1A] state 00000000663097b7 to [CRTC:41:pipe A]
[   17.949414] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:122] for [PLANE:28:plane 1A] state 00000000663097b7
[   17.949417] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:41:pipe A] to 00000000d432046a
[   17.949420] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:95:DP-4] 000000003f36c895 state to 00000000d432046a
[   17.949423] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:DP-4] state 000000003f36c895 to [CRTC:41:pipe A]
[   17.949426] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000976e4b30 state to 00000000d432046a
[   17.949429] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:1920x2160] for [CRTC:55:pipe B] state 00000000976e4b30
[   17.949432] [drm:drm_atomic_set_crtc_for_plane [drm]] Link [PLANE:42:plane 1B] state 0000000058f58f5c to [CRTC:55:pipe B]
[   17.949435] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:122] for [PLANE:42:plane 1B] state 0000000058f58f5c
[   17.949437] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:55:pipe B] to 00000000d432046a
[   17.949440] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:98:DP-5] 000000004375b0a0 state to 00000000d432046a
[   17.949443] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:98:DP-5] state 000000004375b0a0 to [CRTC:55:pipe B]
[   17.949446] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:69:pipe C] 000000004c6c31a8 state to 00000000d432046a
[   17.949449] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [NOMODE] for [CRTC:69:pipe C] state 000000004c6c31a8
[   17.949452] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:56:plane 1C] state 000000008d7c1140
[   17.949454] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:69:pipe C] to 00000000d432046a
[   17.949457] [drm:drm_atomic_check_only [drm]] checking 00000000d432046a
[   17.949460] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CRTC:41:pipe A] mode changed
[   17.949462] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CRTC:41:pipe A] enable changed
[   17.949463] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CRTC:41:pipe A] active changed
[   17.949465] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CRTC:55:pipe B] mode changed
[   17.949466] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CRTC:55:pipe B] enable changed
[   17.949467] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CRTC:55:pipe B] active changed
[   17.949470] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:95:DP-4]
[   17.949472] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:95:DP-4] using [ENCODER:87:DP-MST A] on [CRTC:41:pipe A]
[   17.949473] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:98:DP-5]
[   17.949475] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:98:DP-5] using [ENCODER:88:DP-MST B] on [CRTC:55:pipe B]
[   17.949476] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CRTC:41:pipe A] needs all connectors, enable: y, active: y
[   17.949479] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:41:pipe A] to 00000000d432046a
[   17.949482] [drm:drm_atomic_add_affected_planes [drm]] Adding all current planes for [CRTC:41:pipe A] to 00000000d432046a
[   17.949483] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CRTC:55:pipe B] needs all connectors, enable: y, active: y
[   17.949486] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:55:pipe B] to 00000000d432046a
[   17.949488] [drm:drm_atomic_add_affected_planes [drm]] Adding all current planes for [CRTC:55:pipe B] to 00000000d432046a
[   17.949498] [drm:intel_atomic_check [i915]] [CONNECTOR:95:DP-4] checking for sink bpp constrains
[   17.949506] [drm:intel_atomic_check [i915]] clamping display bpp (was 36) to EDID reported max of 30
[   17.949510] [drm:drm_atomic_get_private_obj_state [drm]] Added new private object 000000006f6321f8 state 000000007c2425a6 to 00000000d432046a
[   17.949512] [drm:drm_dp_atomic_find_vcpi_slots [drm_kms_helper]] vcpi slots req=25, avail=63
[   17.949514] [drm:drm_dp_atomic_find_vcpi_slots [drm_kms_helper]] vcpi slots avail=38
[   17.949522] [drm:intel_atomic_check [i915]] hw max bpp: 36, pipe bpp: 24, dithering: 0
[   17.949531] [drm:intel_dump_pipe_config [i915]] [CRTC:41:pipe A][modeset]
[   17.949539] [drm:intel_dump_pipe_config [i915]] output_types: DP_MST (0x800)
[   17.949546] [drm:intel_dump_pipe_config [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   17.949553] [drm:intel_dump_pipe_config [i915]] dp m_n: lanes: 4; gmch_m: 3230196, gmch_n: 8388608, link_m: 538366, link_n: 1048576, tu: 25
[   17.949560] [drm:intel_dump_pipe_config [i915]] audio: 0, infoframes: 0
[   17.949566] [drm:intel_dump_pipe_config [i915]] requested mode:
[   17.949571] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   17.949577] [drm:intel_dump_pipe_config [i915]] adjusted mode:
[   17.949582] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   17.949589] [drm:intel_dump_pipe_config [i915]] crtc timings: 277250 1920 1968 2000 2080 2160 2163 2173 2222, type: 0x48 flags: 0x9
[   17.949596] [drm:intel_dump_pipe_config [i915]] port clock: 540000, pipe src size: 1920x2160, pixel rate 277250
[   17.949602] [drm:intel_dump_pipe_config [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1
[   17.949608] [drm:intel_dump_pipe_config [i915]] pch pfit: pos: 0x00000000, size: 0x00000000, disabled
[   17.949615] [drm:intel_dump_pipe_config [i915]] ips: 0, double wide: 0
[   17.949621] [drm:intel_dump_pipe_config [i915]] dpll_hw_state: ctrl1: 0x0, cfgcr1: 0x0, cfgcr2: 0x0
[   17.949627] [drm:intel_dump_pipe_config [i915]] planes on this crtc
[   17.949633] [drm:intel_dump_pipe_config [i915]] [PLANE:28:plane 1A] disabled, scaler_id = -1
[   17.949640] [drm:intel_dump_pipe_config [i915]] [PLANE:33:plane 2A] disabled, scaler_id = -1
[   17.949646] [drm:intel_dump_pipe_config [i915]] [PLANE:38:cursor A] disabled, scaler_id = -1
[   17.949654] [drm:intel_atomic_check [i915]] [CONNECTOR:98:DP-5] checking for sink bpp constrains
[   17.949661] [drm:intel_atomic_check [i915]] clamping display bpp (was 36) to EDID reported max of 30
[   17.949663] [drm:drm_dp_atomic_find_vcpi_slots [drm_kms_helper]] vcpi slots req=25, avail=38
[   17.949665] [drm:drm_dp_atomic_find_vcpi_slots [drm_kms_helper]] vcpi slots avail=13
[   17.949672] [drm:intel_atomic_check [i915]] hw max bpp: 36, pipe bpp: 24, dithering: 0
[   17.949678] [drm:intel_dump_pipe_config [i915]] [CRTC:55:pipe B][modeset]
[   17.949685] [drm:intel_dump_pipe_config [i915]] output_types: DP_MST (0x800)
[   17.949691] [drm:intel_dump_pipe_config [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   17.949697] [drm:intel_dump_pipe_config [i915]] dp m_n: lanes: 4; gmch_m: 3230196, gmch_n: 8388608, link_m: 538366, link_n: 1048576, tu: 25
[   17.949704] [drm:intel_dump_pipe_config [i915]] audio: 0, infoframes: 0
[   17.949716] [drm:intel_dump_pipe_config [i915]] requested mode:
[   17.949721] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   17.949727] [drm:intel_dump_pipe_config [i915]] adjusted mode:
[   17.949731] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   17.949738] [drm:intel_dump_pipe_config [i915]] crtc timings: 277250 1920 1968 2000 2080 2160 2163 2173 2222, type: 0x48 flags: 0x9
[   17.949744] [drm:intel_dump_pipe_config [i915]] port clock: 540000, pipe src size: 1920x2160, pixel rate 277250
[   17.949750] [drm:intel_dump_pipe_config [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1
[   17.949756] [drm:intel_dump_pipe_config [i915]] pch pfit: pos: 0x00000000, size: 0x00000000, disabled
[   17.949762] [drm:intel_dump_pipe_config [i915]] ips: 0, double wide: 0
[   17.949769] [drm:intel_dump_pipe_config [i915]] dpll_hw_state: ctrl1: 0x0, cfgcr1: 0x0, cfgcr2: 0x0
[   17.949774] [drm:intel_dump_pipe_config [i915]] planes on this crtc
[   17.949781] [drm:intel_dump_pipe_config [i915]] [PLANE:42:plane 1B] disabled, scaler_id = -1
[   17.949787] [drm:intel_dump_pipe_config [i915]] [PLANE:47:plane 2B] disabled, scaler_id = -1
[   17.949793] [drm:intel_dump_pipe_config [i915]] [PLANE:52:cursor B] disabled, scaler_id = -1
[   17.949801] [drm:intel_atomic_check [i915]] New cdclk calculated to be logical 337500 kHz, actual 337500 kHz
[   17.949808] [drm:intel_atomic_check [i915]] New voltage level calculated to be logical 0, actual 0
[   17.949817] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 122
[   17.949824] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 0 -> 1, off 0, on 1, ms 1
[   17.949831] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 122
[   17.949838] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 0 -> 1, off 0, on 1, ms 1
[   17.949847] [drm:intel_find_shared_dpll [i915]] [CRTC:41:pipe A] allocated DPLL 1
[   17.949854] [drm:intel_reference_shared_dpll [i915]] using DPLL 1 for pipe A
[   17.949863] [drm:intel_find_shared_dpll [i915]] [CRTC:55:pipe B] sharing existing DPLL 1 (crtc mask 0x00000001, active 0)
[   17.949869] [drm:intel_reference_shared_dpll [i915]] using DPLL 1 for pipe B
[   17.949881] [drm:skl_compute_wm [i915]] [PLANE:28:plane 1A] ddb (0 - 0) -> (0 - 438)
[   17.949887] [drm:skl_compute_wm [i915]] [PLANE:38:cursor A] ddb (0 - 0) -> (438 - 446)
[   17.949893] [drm:skl_compute_wm [i915]] [PLANE:42:plane 1B] ddb (0 - 0) -> (446 - 884)
[   17.949898] [drm:skl_compute_wm [i915]] [PLANE:52:cursor B] ddb (0 - 0) -> (884 - 892)
[   17.949902] [drm:drm_atomic_commit [drm]] committing 00000000d432046a
[   17.949915] [drm:intel_power_well_enable [i915]] enabling always-on
[   17.949924] [drm:intel_power_well_enable [i915]] enabling DC off
[   17.950197] [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[   17.950222] [drm:intel_power_well_enable [i915]] enabling power well 2
[   17.950250] [drm:intel_disable_sagv [i915]] Disabling the SAGV
[   17.950276] [drm:intel_atomic_commit_tail [i915]] [ENCODER:70:DDI B]
[   17.950283] [drm:intel_atomic_commit_tail [i915]] [ENCODER:77:DDI C]
[   17.950307] [drm:intel_atomic_commit_tail [i915]] [ENCODER:79:DP-MST A]
[   17.950313] [drm:intel_atomic_commit_tail [i915]] [ENCODER:80:DP-MST B]
[   17.950319] [drm:intel_atomic_commit_tail [i915]] [ENCODER:81:DP-MST C]
[   17.950325] [drm:intel_atomic_commit_tail [i915]] [ENCODER:85:DDI D]
[   17.950347] [drm:intel_atomic_commit_tail [i915]] [ENCODER:87:DP-MST A]
[   17.950353] [drm:intel_atomic_commit_tail [i915]] [ENCODER:88:DP-MST B]
[   17.950359] [drm:intel_atomic_commit_tail [i915]] [ENCODER:89:DP-MST C]
[   17.950365] [drm:intel_atomic_commit_tail [i915]] [ENCODER:93:DDI E]
[   17.950372] [drm:verify_single_dpll_state.isra.87 [i915]] DPLL 0
[   17.950380] [drm:verify_single_dpll_state.isra.87 [i915]] DPLL 1
[   17.950386] [drm:verify_single_dpll_state.isra.87 [i915]] DPLL 2
[   17.950392] [drm:verify_single_dpll_state.isra.87 [i915]] DPLL 3
[   17.950401] [drm:intel_enable_shared_dpll [i915]] enable DPLL 1 (active 1, on? 0) for crtc 41
[   17.950409] [drm:intel_enable_shared_dpll [i915]] enabling DPLL 1
[   17.950519] [drm:intel_mst_pre_enable_dp [i915]] active links 0
[   17.954105] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   17.954114] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   17.954126] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   17.954510] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   17.954927] [drm:intel_power_well_enable [i915]] enabling DDI D IO power well
[   17.955461] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   17.955468] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   17.955554] [drm:intel_dp_start_link_train [i915]] Using LINK_BW_SET value 14
[   17.955851] [drm:intel_dp_set_signal_levels [i915]] Using signal levels 00000000
[   17.955859] [drm:intel_dp_set_signal_levels [i915]] Using vswing level 0
[   17.955866] [drm:intel_dp_set_signal_levels [i915]] Using pre-emphasis level 0
[   17.955874] [drm:intel_dp_program_link_training_pattern [i915]] Using DP training pattern TPS1
[   17.957515] [drm:intel_dp_set_signal_levels [i915]] Using signal levels 01000000
[   17.957523] [drm:intel_dp_set_signal_levels [i915]] Using vswing level 0
[   17.957530] [drm:intel_dp_set_signal_levels [i915]] Using pre-emphasis level 1
[   17.959168] [drm:intel_dp_start_link_train [i915]] clock recovery OK
[   17.959175] [drm:intel_dp_program_link_training_pattern [i915]] Using DP training pattern TPS3
[   17.960313] [drm:intel_dp_start_link_train [i915]] Channel EQ done. DP Training successful
[   17.960969] [drm:intel_dp_start_link_train [i915]] [CONNECTOR:86:DP-2] Link Training Passed at Link Rate = 540000, Lane count = 4
[   17.961109] [drm:drm_dp_mst_allocate_vcpi [drm_kms_helper]] initing vcpi for pbn=992 slots=25
[   18.341194] [drm:drm_dp_dpcd_write_payload.isra.10 [drm_kms_helper]] status not set after read payload table status 0
[   18.341408] [drm:intel_enable_pipe [i915]] enabling pipe A
[   18.341647] [drm:intel_mst_enable_dp [i915]] active links 1
[   18.341922] [drm:drm_dp_update_payload_part2 [drm_kms_helper]] payload 0 0
[   18.341933] [drm:intel_fbc_enable [i915]] reserved 33177600 bytes of contiguous stolen space for FBC, threshold: 1
[   18.341940] [drm:intel_fbc_enable [i915]] Enabling FBC on pipe A
[   18.341961] [drm:intel_enable_shared_dpll [i915]] enable DPLL 1 (active 3, on? 1) for crtc 55
[   18.341970] [drm:intel_mst_pre_enable_dp [i915]] active links 1
[   18.345972] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   18.345981] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   18.345993] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   18.346376] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   18.346785] [drm:drm_dp_mst_allocate_vcpi [drm_kms_helper]] initing vcpi for pbn=992 slots=25
[   18.347608] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   18.347616] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   18.727293] [drm:drm_dp_dpcd_write_payload.isra.10 [drm_kms_helper]] status not set after read payload table status 0
[   18.727517] [drm:intel_enable_pipe [i915]] enabling pipe B
[   18.727582] [drm:intel_mst_enable_dp [i915]] active links 2
[   18.727857] [drm:drm_dp_update_payload_part2 [drm_kms_helper]] payload 0 0
[   18.727858] [drm:drm_dp_update_payload_part2 [drm_kms_helper]] payload 1 0
[   18.744397] [drm:verify_connector_state.isra.86 [i915]] [CONNECTOR:95:DP-4]
[   18.744407] [drm:intel_atomic_commit_tail [i915]] [CRTC:41:pipe A]
[   18.744422] [drm:verify_single_dpll_state.isra.87 [i915]] DPLL 1
[   18.744438] [drm:verify_connector_state.isra.86 [i915]] [CONNECTOR:98:DP-5]
[   18.744446] [drm:intel_atomic_commit_tail [i915]] [CRTC:55:pipe B]
[   18.744459] [drm:verify_single_dpll_state.isra.87 [i915]] DPLL 1
[   18.744479] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000d432046a
[   18.744485] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000d432046a
[   18.744489] Console: switching to colour frame buffer device 480x135
[   18.744497] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000d432046a
[   18.744500] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000508486a4 state to 00000000d432046a
[   18.744503] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000a78616fd state to 00000000d432046a
[   18.744506] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:33:plane 2A] 0000000003c85851 state to 00000000d432046a
[   18.744509] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:33:plane 2A] state 0000000003c85851
[   18.744512] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:38:cursor A] 00000000c745a7ff state to 00000000d432046a
[   18.744515] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:38:cursor A] state 00000000c745a7ff
[   18.744517] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 0000000095991c3d state to 00000000d432046a
[   18.744520] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000cfed8171 state to 00000000d432046a
[   18.744523] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:47:plane 2B] 000000009e431a23 state to 00000000d432046a
[   18.744526] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:47:plane 2B] state 000000009e431a23
[   18.744528] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:52:cursor B] 00000000abe0b366 state to 00000000d432046a
[   18.744531] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:52:cursor B] state 00000000abe0b366
[   18.744533] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:56:plane 1C] 00000000e259e82c state to 00000000d432046a
[   18.744536] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:61:plane 2C] 000000004c53e935 state to 00000000d432046a
[   18.744539] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:61:plane 2C] state 000000004c53e935
[   18.744541] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:66:cursor C] 0000000035535424 state to 00000000d432046a
[   18.744544] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:66:cursor C] state 0000000035535424
[   18.744548] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:1920x2160] for [CRTC:41:pipe A] state 00000000a78616fd
[   18.744551] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:122] for [PLANE:28:plane 1A] state 00000000508486a4
[   18.744553] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:41:pipe A] to 00000000d432046a
[   18.744556] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:95:DP-4] 0000000021d8483b state to 00000000d432046a
[   18.744559] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:DP-4] state 0000000021d8483b to [NOCRTC]
[   18.744562] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:DP-4] state 0000000021d8483b to [CRTC:41:pipe A]
[   18.744565] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:1920x2160] for [CRTC:55:pipe B] state 00000000cfed8171
[   18.744568] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:122] for [PLANE:42:plane 1B] state 0000000095991c3d
[   18.744571] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:55:pipe B] to 00000000d432046a
[   18.744574] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:98:DP-5] 00000000e129c0ba state to 00000000d432046a
[   18.744576] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:98:DP-5] state 00000000e129c0ba to [NOCRTC]
[   18.744579] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:98:DP-5] state 00000000e129c0ba to [CRTC:55:pipe B]
[   18.744582] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:69:pipe C] 0000000023916254 state to 00000000d432046a
[   18.744585] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [NOMODE] for [CRTC:69:pipe C] state 0000000023916254
[   18.744588] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:56:plane 1C] state 00000000e259e82c
[   18.744590] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:69:pipe C] to 00000000d432046a
[   18.744593] [drm:drm_atomic_check_only [drm]] checking 00000000d432046a
[   18.744596] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:95:DP-4]
[   18.744598] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:95:DP-4] keeps [ENCODER:87:DP-MST A], now on [CRTC:41:pipe A]
[   18.744600] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:98:DP-5]
[   18.744602] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:98:DP-5] keeps [ENCODER:88:DP-MST B], now on [CRTC:55:pipe B]
[   18.744612] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 122
[   18.744620] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   18.744627] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 122
[   18.744634] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   18.744641] [drm:drm_atomic_commit [drm]] committing 00000000d432046a
[   18.761095] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000d432046a
[   18.761101] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000d432046a
[   18.761106] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000d432046a
[   18.761110] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000007b3b578f state to 00000000d432046a
[   18.761113] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000004c6c31a8 state to 00000000d432046a
[   18.761115] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:33:plane 2A] 00000000bbaab71c state to 00000000d432046a
[   18.761118] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:33:plane 2A] state 00000000bbaab71c
[   18.761121] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:38:cursor A] 000000003e7c78e0 state to 00000000d432046a
[   18.761124] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:38:cursor A] state 000000003e7c78e0
[   18.761126] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000008d7c1140 state to 00000000d432046a
[   18.761129] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000976e4b30 state to 00000000d432046a
[   18.761131] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:47:plane 2B] 0000000046e08a61 state to 00000000d432046a
[   18.761134] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:47:plane 2B] state 0000000046e08a61
[   18.761137] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:52:cursor B] 000000004f4e195c state to 00000000d432046a
[   18.761139] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:52:cursor B] state 000000004f4e195c
[   18.761142] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:56:plane 1C] 0000000058f58f5c state to 00000000d432046a
[   18.761144] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:61:plane 2C] 000000005522d1fb state to 00000000d432046a
[   18.761147] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:61:plane 2C] state 000000005522d1fb
[   18.761149] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:66:cursor C] 000000009d2fc896 state to 00000000d432046a
[   18.761152] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:66:cursor C] state 000000009d2fc896
[   18.761156] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:1920x2160] for [CRTC:41:pipe A] state 000000004c6c31a8
[   18.761159] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:122] for [PLANE:28:plane 1A] state 000000007b3b578f
[   18.761161] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:41:pipe A] to 00000000d432046a
[   18.761164] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:95:DP-4] 000000004375b0a0 state to 00000000d432046a
[   18.761167] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:DP-4] state 000000004375b0a0 to [NOCRTC]
[   18.761170] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:DP-4] state 000000004375b0a0 to [CRTC:41:pipe A]
[   18.761174] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:1920x2160] for [CRTC:55:pipe B] state 00000000976e4b30
[   18.761176] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:122] for [PLANE:42:plane 1B] state 000000008d7c1140
[   18.761179] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:55:pipe B] to 00000000d432046a
[   18.761182] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:98:DP-5] 000000003f36c895 state to 00000000d432046a
[   18.761184] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:98:DP-5] state 000000003f36c895 to [NOCRTC]
[   18.761187] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:98:DP-5] state 000000003f36c895 to [CRTC:55:pipe B]
[   18.761190] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:69:pipe C] 000000009190ab2d state to 00000000d432046a
[   18.761193] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [NOMODE] for [CRTC:69:pipe C] state 000000009190ab2d
[   18.761196] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:56:plane 1C] state 0000000058f58f5c
[   18.761198] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:69:pipe C] to 00000000d432046a
[   18.761201] [drm:drm_atomic_check_only [drm]] checking 00000000d432046a
[   18.761204] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:95:DP-4]
[   18.761206] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:95:DP-4] keeps [ENCODER:87:DP-MST A], now on [CRTC:41:pipe A]
[   18.761208] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:98:DP-5]
[   18.761210] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:98:DP-5] keeps [ENCODER:88:DP-MST B], now on [CRTC:55:pipe B]
[   18.761220] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 122
[   18.761228] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   18.761236] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 122
[   18.761244] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   18.761250] [drm:drm_atomic_commit [drm]] committing 00000000d432046a
[   18.777732] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000d432046a
[   18.777737] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000d432046a
[   18.788636] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[   18.797462] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   18.797471] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   18.797484] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   18.797866] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   18.798277] [drm:drm_dp_send_enum_path_resources.isra.16 [drm_kms_helper]] enum path resources 8: 2560 0
[   18.798805] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   18.798813] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   19.199149] e1000e 0000:00:1f.6 net00: renamed from eth0
[   22.987826] e1000e: net00 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[   26.512783] 8021q: 802.1Q VLAN Support v1.8
[   29.684703] XFS (sda2): Mounting V4 Filesystem
[   31.197450] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000a26f4ff1
[   31.197455] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000aa049bf4 state to 00000000a26f4ff1
[   31.197459] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000fa1eb438 state to 00000000a26f4ff1
[   31.197462] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:33:plane 2A] 000000009e431a23 state to 00000000a26f4ff1
[   31.197466] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:33:plane 2A] state 000000009e431a23
[   31.197469] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:38:cursor A] 000000007884e644 state to 00000000a26f4ff1
[   31.197472] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:38:cursor A] state 000000007884e644
[   31.197475] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000009a191322 state to 00000000a26f4ff1
[   31.197478] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000001447b6b1 state to 00000000a26f4ff1
[   31.197481] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:47:plane 2B] 000000007caad536 state to 00000000a26f4ff1
[   31.197484] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:47:plane 2B] state 000000007caad536
[   31.197486] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:52:cursor B] 00000000e7553c8c state to 00000000a26f4ff1
[   31.197489] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:52:cursor B] state 00000000e7553c8c
[   31.197492] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:56:plane 1C] 00000000e652df98 state to 00000000a26f4ff1
[   31.197511] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:61:plane 2C] 0000000094054864 state to 00000000a26f4ff1
[   31.197513] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:61:plane 2C] state 0000000094054864
[   31.197516] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:66:cursor C] 000000001fe8c9d8 state to 00000000a26f4ff1
[   31.197519] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:66:cursor C] state 000000001fe8c9d8
[   31.197523] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:1920x2160] for [CRTC:41:pipe A] state 00000000fa1eb438
[   31.197526] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:122] for [PLANE:28:plane 1A] state 00000000aa049bf4
[   31.197529] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:41:pipe A] to 00000000a26f4ff1
[   31.197533] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:95:DP-4] 00000000053a25e5 state to 00000000a26f4ff1
[   31.197536] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:DP-4] state 00000000053a25e5 to [NOCRTC]
[   31.197539] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:DP-4] state 00000000053a25e5 to [CRTC:41:pipe A]
[   31.197542] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:1920x2160] for [CRTC:55:pipe B] state 000000001447b6b1
[   31.197545] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:122] for [PLANE:42:plane 1B] state 000000009a191322
[   31.197548] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:55:pipe B] to 00000000a26f4ff1
[   31.197551] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:98:DP-5] 000000007d49f131 state to 00000000a26f4ff1
[   31.197554] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:98:DP-5] state 000000007d49f131 to [NOCRTC]
[   31.197557] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:98:DP-5] state 000000007d49f131 to [CRTC:55:pipe B]
[   31.197560] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:69:pipe C] 00000000da6953eb state to 00000000a26f4ff1
[   31.197563] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [NOMODE] for [CRTC:69:pipe C] state 00000000da6953eb
[   31.197565] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:56:plane 1C] state 00000000e652df98
[   31.197568] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:69:pipe C] to 00000000a26f4ff1
[   31.197571] [drm:drm_atomic_check_only [drm]] checking 00000000a26f4ff1
[   31.197577] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:95:DP-4]
[   31.197579] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:95:DP-4] keeps [ENCODER:87:DP-MST A], now on [CRTC:41:pipe A]
[   31.197580] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:98:DP-5]
[   31.197582] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:98:DP-5] keeps [ENCODER:88:DP-MST B], now on [CRTC:55:pipe B]
[   31.197599] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 122
[   31.197607] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   31.197615] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 122
[   31.197622] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   31.197630] [drm:drm_atomic_commit [drm]] committing 00000000a26f4ff1
[   31.213502] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000a26f4ff1
[   31.213509] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000a26f4ff1
[   31.463685] XFS (sda2): Ending clean mount
[   32.039694] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000089992027
[   32.039699] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000e6769c4e state to 0000000089992027
[   32.039704] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000872a2fc3 state to 0000000089992027
[   32.039709] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:33:plane 2A] 0000000061292ff8 state to 0000000089992027
[   32.039717] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:33:plane 2A] state 0000000061292ff8
[   32.039723] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:38:cursor A] 00000000ffb72b54 state to 0000000089992027
[   32.039726] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:38:cursor A] state 00000000ffb72b54
[   32.039731] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 0000000063191348 state to 0000000089992027
[   32.039755] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000007cf0555c state to 0000000089992027
[   32.039758] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:47:plane 2B] 000000001a64dfdd state to 0000000089992027
[   32.039761] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:47:plane 2B] state 000000001a64dfdd
[   32.039763] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:52:cursor B] 00000000ccc4d9b0 state to 0000000089992027
[   32.039766] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:52:cursor B] state 00000000ccc4d9b0
[   32.039769] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:56:plane 1C] 00000000b2c829c8 state to 0000000089992027
[   32.039772] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:61:plane 2C] 00000000815070b1 state to 0000000089992027
[   32.039774] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:61:plane 2C] state 00000000815070b1
[   32.039777] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:66:cursor C] 0000000048551ef4 state to 0000000089992027
[   32.039780] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:66:cursor C] state 0000000048551ef4
[   32.039785] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:1920x2160] for [CRTC:41:pipe A] state 00000000872a2fc3
[   32.039788] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:122] for [PLANE:28:plane 1A] state 00000000e6769c4e
[   32.039791] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:41:pipe A] to 0000000089992027
[   32.039795] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:95:DP-4] 00000000895a48f7 state to 0000000089992027
[   32.039799] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:DP-4] state 00000000895a48f7 to [NOCRTC]
[   32.039802] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:DP-4] state 00000000895a48f7 to [CRTC:41:pipe A]
[   32.039805] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:1920x2160] for [CRTC:55:pipe B] state 000000007cf0555c
[   32.039808] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:122] for [PLANE:42:plane 1B] state 0000000063191348
[   32.039811] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:55:pipe B] to 0000000089992027
[   32.039814] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:98:DP-5] 00000000e6ad3cd8 state to 0000000089992027
[   32.039817] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:98:DP-5] state 00000000e6ad3cd8 to [NOCRTC]
[   32.039820] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:98:DP-5] state 00000000e6ad3cd8 to [CRTC:55:pipe B]
[   32.039823] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:69:pipe C] 000000008d8974ee state to 0000000089992027
[   32.039826] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [NOMODE] for [CRTC:69:pipe C] state 000000008d8974ee
[   32.039829] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:56:plane 1C] state 00000000b2c829c8
[   32.039831] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:69:pipe C] to 0000000089992027
[   32.039834] [drm:drm_atomic_check_only [drm]] checking 0000000089992027
[   32.039841] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:95:DP-4]
[   32.039843] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:95:DP-4] keeps [ENCODER:87:DP-MST A], now on [CRTC:41:pipe A]
[   32.039845] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:98:DP-5]
[   32.039847] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:98:DP-5] keeps [ENCODER:88:DP-MST B], now on [CRTC:55:pipe B]
[   32.039867] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 122
[   32.039875] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   32.039883] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 122
[   32.039891] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   32.039899] [drm:drm_atomic_commit [drm]] committing 0000000089992027
[   32.047058] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000089992027
[   32.047065] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000089992027
[   32.110843] svc: failed to register lockdv1 RPC service (errno 97).
[   32.895458] NFSD: starting 45-second grace period (net f0000098)
[   33.623643] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000f5a1410a
[   33.623648] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000de677e21 state to 00000000f5a1410a
[   33.623653] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000007a7bae51 state to 00000000f5a1410a
[   33.623657] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:33:plane 2A] 000000002294caf4 state to 00000000f5a1410a
[   33.623660] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:33:plane 2A] state 000000002294caf4
[   33.623663] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:38:cursor A] 0000000086a48a66 state to 00000000f5a1410a
[   33.623666] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:38:cursor A] state 0000000086a48a66
[   33.623669] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000d831ae7f state to 00000000f5a1410a
[   33.623672] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000005f955907 state to 00000000f5a1410a
[   33.623675] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:47:plane 2B] 00000000539371bb state to 00000000f5a1410a
[   33.623678] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:47:plane 2B] state 00000000539371bb
[   33.623680] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:52:cursor B] 000000007a5efa9e state to 00000000f5a1410a
[   33.623683] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:52:cursor B] state 000000007a5efa9e
[   33.623686] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:56:plane 1C] 000000007f779665 state to 00000000f5a1410a
[   33.623688] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:61:plane 2C] 0000000063d47879 state to 00000000f5a1410a
[   33.623691] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:61:plane 2C] state 0000000063d47879
[   33.623694] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:66:cursor C] 00000000cc98420b state to 00000000f5a1410a
[   33.623697] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:66:cursor C] state 00000000cc98420b
[   33.623701] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:1920x2160] for [CRTC:41:pipe A] state 000000007a7bae51
[   33.623704] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:122] for [PLANE:28:plane 1A] state 00000000de677e21
[   33.623707] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:41:pipe A] to 00000000f5a1410a
[   33.623711] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:95:DP-4] 000000000a881a43 state to 00000000f5a1410a
[   33.623714] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:DP-4] state 000000000a881a43 to [NOCRTC]
[   33.623717] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:DP-4] state 000000000a881a43 to [CRTC:41:pipe A]
[   33.623721] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:1920x2160] for [CRTC:55:pipe B] state 000000005f955907
[   33.623724] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:122] for [PLANE:42:plane 1B] state 00000000d831ae7f
[   33.623726] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:55:pipe B] to 00000000f5a1410a
[   33.623729] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:98:DP-5] 00000000fb546798 state to 00000000f5a1410a
[   33.623732] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:98:DP-5] state 00000000fb546798 to [NOCRTC]
[   33.623735] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:98:DP-5] state 00000000fb546798 to [CRTC:55:pipe B]
[   33.623738] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:69:pipe C] 00000000f3b97dbf state to 00000000f5a1410a
[   33.623741] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [NOMODE] for [CRTC:69:pipe C] state 00000000f3b97dbf
[   33.623744] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:56:plane 1C] state 000000007f779665
[   33.623746] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:69:pipe C] to 00000000f5a1410a
[   33.623749] [drm:drm_atomic_check_only [drm]] checking 00000000f5a1410a
[   33.623756] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:95:DP-4]
[   33.623758] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:95:DP-4] keeps [ENCODER:87:DP-MST A], now on [CRTC:41:pipe A]
[   33.623759] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:98:DP-5]
[   33.623761] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:98:DP-5] keeps [ENCODER:88:DP-MST B], now on [CRTC:55:pipe B]
[   33.623780] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 122
[   33.623788] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   33.623795] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 122
[   33.623802] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   33.623811] [drm:drm_atomic_commit [drm]] committing 00000000f5a1410a
[   33.630653] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000f5a1410a
[   33.630659] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000f5a1410a
[   34.153846] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000020e8b95d
[   34.153851] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000815070b1 state to 0000000020e8b95d
[   34.153855] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000002d083360 state to 0000000020e8b95d
[   34.153858] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:33:plane 2A] 00000000b2c829c8 state to 0000000020e8b95d
[   34.153862] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:33:plane 2A] state 00000000b2c829c8
[   34.153865] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:38:cursor A] 00000000ccc4d9b0 state to 0000000020e8b95d
[   34.153868] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:38:cursor A] state 00000000ccc4d9b0
[   34.153871] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000001a64dfdd state to 0000000020e8b95d
[   34.153874] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000061abc2e3 state to 0000000020e8b95d
[   34.153877] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:47:plane 2B] 0000000063191348 state to 0000000020e8b95d
[   34.153880] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:47:plane 2B] state 0000000063191348
[   34.153883] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:52:cursor B] 00000000ffb72b54 state to 0000000020e8b95d
[   34.153886] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:52:cursor B] state 00000000ffb72b54
[   34.153889] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:56:plane 1C] 0000000061292ff8 state to 0000000020e8b95d
[   34.153891] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:61:plane 2C] 00000000e6769c4e state to 0000000020e8b95d
[   34.153894] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:61:plane 2C] state 00000000e6769c4e
[   34.153897] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:66:cursor C] 0000000060b72ea3 state to 0000000020e8b95d
[   34.153900] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:66:cursor C] state 0000000060b72ea3
[   34.153911] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:1920x2160] for [CRTC:41:pipe A] state 000000002d083360
[   34.153914] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:122] for [PLANE:28:plane 1A] state 00000000815070b1
[   34.153937] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:41:pipe A] to 0000000020e8b95d
[   34.153941] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:95:DP-4] 000000001c6ae53b state to 0000000020e8b95d
[   34.153944] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:DP-4] state 000000001c6ae53b to [NOCRTC]
[   34.153949] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:DP-4] state 000000001c6ae53b to [CRTC:41:pipe A]
[   34.153953] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:1920x2160] for [CRTC:55:pipe B] state 0000000061abc2e3
[   34.153957] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:122] for [PLANE:42:plane 1B] state 000000001a64dfdd
[   34.153960] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:55:pipe B] to 0000000020e8b95d
[   34.153964] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:98:DP-5] 00000000e54fa82c state to 0000000020e8b95d
[   34.153983] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:98:DP-5] state 00000000e54fa82c to [NOCRTC]
[   34.153987] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:98:DP-5] state 00000000e54fa82c to [CRTC:55:pipe B]
[   34.153990] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:69:pipe C] 000000004c6c31a8 state to 0000000020e8b95d
[   34.153994] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [NOMODE] for [CRTC:69:pipe C] state 000000004c6c31a8
[   34.153997] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:56:plane 1C] state 0000000061292ff8
[   34.154000] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:69:pipe C] to 0000000020e8b95d
[   34.154003] [drm:drm_atomic_check_only [drm]] checking 0000000020e8b95d
[   34.154010] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:95:DP-4]
[   34.154013] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:95:DP-4] keeps [ENCODER:87:DP-MST A], now on [CRTC:41:pipe A]
[   34.154015] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:98:DP-5]
[   34.154018] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:98:DP-5] keeps [ENCODER:88:DP-MST B], now on [CRTC:55:pipe B]
[   34.154071] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 122
[   34.154079] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   34.154087] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 122
[   34.154095] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   34.154104] [drm:drm_atomic_commit [drm]] committing 0000000020e8b95d
[   34.164038] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000020e8b95d
[   34.164044] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000020e8b95d
[   34.174477] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.174499] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000008e2106a2 state to 0000000016fd1bbc
[   34.174503] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000005e7324d8 state to 0000000016fd1bbc
[   34.174506] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:33:plane 2A] 0000000009bbf022 state to 0000000016fd1bbc
[   34.174509] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:33:plane 2A] state 0000000009bbf022
[   34.174512] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:38:cursor A] 00000000c5838c8a state to 0000000016fd1bbc
[   34.174515] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:38:cursor A] state 00000000c5838c8a
[   34.174518] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000aa5fee8a state to 0000000016fd1bbc
[   34.174521] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000a3cf9813 state to 0000000016fd1bbc
[   34.174524] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:47:plane 2B] 00000000d24cf190 state to 0000000016fd1bbc
[   34.174527] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:47:plane 2B] state 00000000d24cf190
[   34.174529] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:52:cursor B] 0000000057aebee3 state to 0000000016fd1bbc
[   34.174532] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:52:cursor B] state 0000000057aebee3
[   34.174535] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:56:plane 1C] 0000000017d81c15 state to 0000000016fd1bbc
[   34.174537] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:61:plane 2C] 0000000058c21607 state to 0000000016fd1bbc
[   34.174540] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:61:plane 2C] state 0000000058c21607
[   34.174543] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:66:cursor C] 00000000b03d3dca state to 0000000016fd1bbc
[   34.174561] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:66:cursor C] state 00000000b03d3dca
[   34.174565] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:1920x2160] for [CRTC:41:pipe A] state 000000005e7324d8
[   34.174568] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:122] for [PLANE:28:plane 1A] state 000000008e2106a2
[   34.174571] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:41:pipe A] to 0000000016fd1bbc
[   34.174574] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:95:DP-4] 000000001047c4da state to 0000000016fd1bbc
[   34.174577] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:DP-4] state 000000001047c4da to [NOCRTC]
[   34.174580] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:DP-4] state 000000001047c4da to [CRTC:41:pipe A]
[   34.174584] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:1920x2160] for [CRTC:55:pipe B] state 00000000a3cf9813
[   34.174586] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:122] for [PLANE:42:plane 1B] state 00000000aa5fee8a
[   34.174589] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:55:pipe B] to 0000000016fd1bbc
[   34.174592] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:98:DP-5] 000000002e41390e state to 0000000016fd1bbc
[   34.174595] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:98:DP-5] state 000000002e41390e to [NOCRTC]
[   34.174598] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:98:DP-5] state 000000002e41390e to [CRTC:55:pipe B]
[   34.174601] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:69:pipe C] 0000000099941b5b state to 0000000016fd1bbc
[   34.174603] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [NOMODE] for [CRTC:69:pipe C] state 0000000099941b5b
[   34.174606] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:56:plane 1C] state 0000000017d81c15
[   34.174609] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:69:pipe C] to 0000000016fd1bbc
[   34.174611] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.174615] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:95:DP-4]
[   34.174617] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:95:DP-4] keeps [ENCODER:87:DP-MST A], now on [CRTC:41:pipe A]
[   34.174619] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:98:DP-5]
[   34.174620] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:98:DP-5] keeps [ENCODER:88:DP-MST B], now on [CRTC:55:pipe B]
[   34.174632] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 122
[   34.174640] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   34.174648] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 122
[   34.174655] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   34.174662] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.180761] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.180786] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.180860] [drm:drm_mode_addfb2 [drm]] [FB:121]
[   34.703209] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1]
[   34.703223] [drm:intel_hdmi_detect [i915]] [CONNECTOR:71:HDMI-A-1]
[   34.703623] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   34.703630] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   34.704088] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   34.704192] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   34.704202] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   34.704212] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[   34.708400] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   34.708407] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[   34.708800] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   34.708807] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   34.709221] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   34.709255] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   34.709259] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1] disconnected
[   34.709315] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1]
[   34.709325] [drm:intel_dp_detect [i915]] [CONNECTOR:78:DP-1]
[   34.709349] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1] disconnected
[   34.709378] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2]
[   34.709388] [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-2]
[   34.709719] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   34.709727] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   34.710088] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   34.710168] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   34.710178] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   34.710187] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[   34.714300] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   34.714308] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[   34.714699] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   34.714706] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   34.715156] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   34.715231] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   34.715234] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2] disconnected
[   34.715293] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2]
[   34.715302] [drm:intel_dp_detect [i915]] [CONNECTOR:86:DP-2]
[   34.715715] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 e4 01 01 01 01 81 00 00 00 00 00 00 00
[   34.716657] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[   34.716665] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000
[   34.716673] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000
[   34.717035] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-80-e1 dev-ID Dp1.2 HW-rev 0.0 SW-rev 0.21 quirks 0x0000
[   34.717315] [drm:intel_dp_detect [i915]] Sink is MST capable
[   34.717317] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2] disconnected
[   34.717346] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3]
[   34.717372] [drm:intel_hdmi_detect [i915]] [CONNECTOR:91:HDMI-A-3]
[   34.717743] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   34.717751] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   34.718016] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   34.718046] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   34.718056] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   34.718066] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[   34.721847] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   34.721855] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[   34.722173] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   34.722183] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   34.722560] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   34.722601] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   34.722603] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3] disconnected
[   34.722633] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3]
[   34.722641] [drm:intel_dp_detect [i915]] [CONNECTOR:94:DP-3]
[   34.722663] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3] disconnected
[   34.722683] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4]
[   34.722689] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   34.722693] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   34.722696] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   34.722704] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   34.722710] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4] probed modes :
[   34.722715] [drm:drm_mode_debug_printmodeline [drm]] Modeline 102:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   34.722740] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5]
[   34.722744] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   34.722747] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   34.722749] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   34.722760] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   34.722805] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5] probed modes :
[   34.722809] [drm:drm_mode_debug_printmodeline [drm]] Modeline 104:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   34.722812] [drm:drm_mode_debug_printmodeline [drm]] Modeline 107:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[   34.722815] [drm:drm_mode_debug_printmodeline [drm]] Modeline 111:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0xa
[   34.722818] [drm:drm_mode_debug_printmodeline [drm]] Modeline 109:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[   34.722821] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   34.722824] [drm:drm_mode_debug_printmodeline [drm]] Modeline 116:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   34.722827] [drm:drm_mode_debug_printmodeline [drm]] Modeline 110:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   34.722830] [drm:drm_mode_debug_printmodeline [drm]] Modeline 105:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   34.722833] [drm:drm_mode_debug_printmodeline [drm]] Modeline 108:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   34.722835] [drm:drm_mode_debug_printmodeline [drm]] Modeline 117:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   34.722838] [drm:drm_mode_debug_printmodeline [drm]] Modeline 118:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   34.722841] [drm:drm_mode_debug_printmodeline [drm]] Modeline 119:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   34.722844] [drm:drm_mode_debug_printmodeline [drm]] Modeline 112:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   34.722846] [drm:drm_mode_debug_printmodeline [drm]] Modeline 113:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   34.722849] [drm:drm_mode_debug_printmodeline [drm]] Modeline 114:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   34.722852] [drm:drm_mode_debug_printmodeline [drm]] Modeline 115:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   34.722911] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.722940] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:38:cursor A] 00000000e6769c4e state to 0000000016fd1bbc
[   34.722944] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:38:cursor A] state 00000000e6769c4e
[   34.722949] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.722973] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.723021] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.723026] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.723055] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.723059] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:52:cursor B] 00000000c5838c8a state to 0000000016fd1bbc
[   34.723064] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:52:cursor B] state 00000000c5838c8a
[   34.723068] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.723072] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.723080] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.723084] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.723095] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.723099] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:66:cursor C] 0000000057aebee3 state to 0000000016fd1bbc
[   34.723122] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:66:cursor C] state 0000000057aebee3
[   34.723125] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.723129] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.723137] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.723142] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.723212] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1]
[   34.723222] [drm:intel_hdmi_detect [i915]] [CONNECTOR:71:HDMI-A-1]
[   34.723576] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   34.723586] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   34.723914] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   34.723998] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   34.724025] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   34.724050] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[   34.728206] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   34.728216] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[   34.728582] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   34.728589] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   34.729063] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   34.729135] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   34.729138] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1] disconnected
[   34.729189] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1]
[   34.729198] [drm:intel_dp_detect [i915]] [CONNECTOR:78:DP-1]
[   34.729222] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1] disconnected
[   34.729237] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2]
[   34.729246] [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-2]
[   34.729586] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   34.729596] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   34.729896] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   34.729945] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   34.729970] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   34.729998] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[   34.733768] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   34.733775] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[   34.734182] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   34.734190] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   34.734545] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   34.734586] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   34.734588] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2] disconnected
[   34.734602] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2]
[   34.734609] [drm:intel_dp_detect [i915]] [CONNECTOR:86:DP-2]
[   34.735025] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 e4 01 01 01 01 81 00 00 00 00 00 00 00
[   34.735967] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[   34.735975] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000
[   34.735983] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000
[   34.736343] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-80-e1 dev-ID Dp1.2 HW-rev 0.0 SW-rev 0.21 quirks 0x0000
[   34.736622] [drm:intel_dp_detect [i915]] Sink is MST capable
[   34.736624] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2] disconnected
[   34.736655] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3]
[   34.736663] [drm:intel_hdmi_detect [i915]] [CONNECTOR:91:HDMI-A-3]
[   34.736984] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   34.736994] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   34.737326] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   34.737361] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   34.737369] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   34.737380] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[   34.741296] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   34.741304] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[   34.741698] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   34.741705] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   34.742155] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   34.742215] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   34.742218] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3] disconnected
[   34.742234] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3]
[   34.742244] [drm:intel_dp_detect [i915]] [CONNECTOR:94:DP-3]
[   34.742267] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3] disconnected
[   34.742277] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4]
[   34.742283] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   34.742288] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   34.742292] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   34.742302] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   34.742309] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4] probed modes :
[   34.742315] [drm:drm_mode_debug_printmodeline [drm]] Modeline 102:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   34.742589] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5]
[   34.742594] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   34.742598] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   34.742602] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   34.742615] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   34.742678] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5] probed modes :
[   34.742684] [drm:drm_mode_debug_printmodeline [drm]] Modeline 104:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   34.742688] [drm:drm_mode_debug_printmodeline [drm]] Modeline 107:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[   34.742692] [drm:drm_mode_debug_printmodeline [drm]] Modeline 111:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0xa
[   34.742696] [drm:drm_mode_debug_printmodeline [drm]] Modeline 109:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[   34.742701] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   34.742705] [drm:drm_mode_debug_printmodeline [drm]] Modeline 116:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   34.742710] [drm:drm_mode_debug_printmodeline [drm]] Modeline 110:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   34.742714] [drm:drm_mode_debug_printmodeline [drm]] Modeline 105:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   34.742718] [drm:drm_mode_debug_printmodeline [drm]] Modeline 108:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   34.742722] [drm:drm_mode_debug_printmodeline [drm]] Modeline 117:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   34.742726] [drm:drm_mode_debug_printmodeline [drm]] Modeline 118:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   34.742731] [drm:drm_mode_debug_printmodeline [drm]] Modeline 119:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   34.742735] [drm:drm_mode_debug_printmodeline [drm]] Modeline 112:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   34.742739] [drm:drm_mode_debug_printmodeline [drm]] Modeline 113:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   34.742744] [drm:drm_mode_debug_printmodeline [drm]] Modeline 114:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   34.742748] [drm:drm_mode_debug_printmodeline [drm]] Modeline 115:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   34.957011] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957017] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:71:HDMI-A-1] 00000000e54fa82c state to 0000000016fd1bbc
[   34.957020] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957024] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:71:HDMI-A-1]
[   34.957026] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:71:HDMI-A-1]
[   34.957030] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957040] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957043] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957049] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957051] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957053] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957058] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957060] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:71:HDMI-A-1] 00000000d89ce1fa state to 0000000016fd1bbc
[   34.957063] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957065] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:71:HDMI-A-1]
[   34.957066] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:71:HDMI-A-1]
[   34.957068] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957074] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957076] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957081] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957084] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:71:HDMI-A-1] 00000000e54fa82c state to 0000000016fd1bbc
[   34.957086] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957087] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:71:HDMI-A-1]
[   34.957089] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:71:HDMI-A-1]
[   34.957091] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957096] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957098] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957102] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957105] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:71:HDMI-A-1] 00000000d89ce1fa state to 0000000016fd1bbc
[   34.957107] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957109] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:71:HDMI-A-1]
[   34.957110] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:71:HDMI-A-1]
[   34.957112] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957117] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957119] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957124] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957126] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:71:HDMI-A-1] 00000000e54fa82c state to 0000000016fd1bbc
[   34.957129] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957130] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:71:HDMI-A-1]
[   34.957131] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:71:HDMI-A-1]
[   34.957134] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957138] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957140] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957145] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957147] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:71:HDMI-A-1] 00000000d89ce1fa state to 0000000016fd1bbc
[   34.957149] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957151] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:71:HDMI-A-1]
[   34.957152] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:71:HDMI-A-1]
[   34.957154] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957159] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957161] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957174] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957179] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:78:DP-1] 00000000e54fa82c state to 0000000016fd1bbc
[   34.957181] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957183] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:78:DP-1]
[   34.957184] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:78:DP-1]
[   34.957187] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957191] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957193] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957198] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957200] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957203] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957207] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957209] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:78:DP-1] 0000000085562170 state to 0000000016fd1bbc
[   34.957211] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957213] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:78:DP-1]
[   34.957214] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:78:DP-1]
[   34.957217] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957221] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957223] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957228] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957230] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:78:DP-1] 00000000e54fa82c state to 0000000016fd1bbc
[   34.957232] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957234] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:78:DP-1]
[   34.957235] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:78:DP-1]
[   34.957237] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957242] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957244] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957248] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957251] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:78:DP-1] 0000000085562170 state to 0000000016fd1bbc
[   34.957253] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957254] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:78:DP-1]
[   34.957256] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:78:DP-1]
[   34.957258] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957262] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957265] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957280] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957282] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:83:HDMI-A-2] 00000000e54fa82c state to 0000000016fd1bbc
[   34.957284] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957286] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:83:HDMI-A-2]
[   34.957287] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:83:HDMI-A-2]
[   34.957290] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957294] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957296] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957300] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957302] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957304] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957308] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957310] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:83:HDMI-A-2] 00000000ccb97b79 state to 0000000016fd1bbc
[   34.957312] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957314] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:83:HDMI-A-2]
[   34.957315] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:83:HDMI-A-2]
[   34.957317] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957322] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957324] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957328] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957331] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:83:HDMI-A-2] 00000000e54fa82c state to 0000000016fd1bbc
[   34.957333] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957335] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:83:HDMI-A-2]
[   34.957336] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:83:HDMI-A-2]
[   34.957338] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957343] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957345] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957349] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957351] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:83:HDMI-A-2] 00000000ccb97b79 state to 0000000016fd1bbc
[   34.957353] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957355] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:83:HDMI-A-2]
[   34.957356] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:83:HDMI-A-2]
[   34.957358] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957363] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957365] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957369] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957371] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:83:HDMI-A-2] 00000000e54fa82c state to 0000000016fd1bbc
[   34.957374] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957375] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:83:HDMI-A-2]
[   34.957377] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:83:HDMI-A-2]
[   34.957379] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957383] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957385] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957389] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957392] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:83:HDMI-A-2] 00000000ccb97b79 state to 0000000016fd1bbc
[   34.957394] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957395] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:83:HDMI-A-2]
[   34.957397] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:83:HDMI-A-2]
[   34.957399] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957403] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957405] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957423] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957427] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:86:DP-2] 00000000e54fa82c state to 0000000016fd1bbc
[   34.957429] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957430] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:86:DP-2]
[   34.957432] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:86:DP-2]
[   34.957434] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957438] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957441] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957444] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957446] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957449] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957452] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957454] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:86:DP-2] 000000006a4c9892 state to 0000000016fd1bbc
[   34.957457] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957458] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:86:DP-2]
[   34.957459] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:86:DP-2]
[   34.957462] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957466] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957468] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957473] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957475] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:86:DP-2] 00000000e54fa82c state to 0000000016fd1bbc
[   34.957477] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957479] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:86:DP-2]
[   34.957480] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:86:DP-2]
[   34.957482] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957487] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957489] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957493] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957495] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:86:DP-2] 000000006a4c9892 state to 0000000016fd1bbc
[   34.957497] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957499] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:86:DP-2]
[   34.957500] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:86:DP-2]
[   34.957502] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957507] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957509] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957524] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957526] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:91:HDMI-A-3] 00000000e54fa82c state to 0000000016fd1bbc
[   34.957529] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957530] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:91:HDMI-A-3]
[   34.957532] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:91:HDMI-A-3]
[   34.957534] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957538] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957540] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957544] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957546] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957548] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957551] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957554] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:91:HDMI-A-3] 000000004b2058b3 state to 0000000016fd1bbc
[   34.957556] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957557] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:91:HDMI-A-3]
[   34.957559] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:91:HDMI-A-3]
[   34.957561] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957566] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957568] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957572] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957574] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:91:HDMI-A-3] 00000000e54fa82c state to 0000000016fd1bbc
[   34.957576] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957578] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:91:HDMI-A-3]
[   34.957579] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:91:HDMI-A-3]
[   34.957581] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957586] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957588] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957592] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957594] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:91:HDMI-A-3] 000000004b2058b3 state to 0000000016fd1bbc
[   34.957596] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957598] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:91:HDMI-A-3]
[   34.957599] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:91:HDMI-A-3]
[   34.957601] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957606] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957608] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957612] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957614] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:91:HDMI-A-3] 00000000e54fa82c state to 0000000016fd1bbc
[   34.957616] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957618] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:91:HDMI-A-3]
[   34.957619] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:91:HDMI-A-3]
[   34.957622] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957626] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957628] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957632] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957636] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:91:HDMI-A-3] 000000004b2058b3 state to 0000000016fd1bbc
[   34.957638] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957639] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:91:HDMI-A-3]
[   34.957641] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:91:HDMI-A-3]
[   34.957643] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957647] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957649] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957664] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957667] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:94:DP-3] 00000000e54fa82c state to 0000000016fd1bbc
[   34.957669] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957670] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:94:DP-3]
[   34.957672] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:94:DP-3]
[   34.957674] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957678] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957680] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957684] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957686] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957688] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957692] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957694] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:94:DP-3] 00000000162f0b98 state to 0000000016fd1bbc
[   34.957696] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957698] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:94:DP-3]
[   34.957699] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:94:DP-3]
[   34.957701] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957706] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957708] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957712] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957715] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:94:DP-3] 00000000e54fa82c state to 0000000016fd1bbc
[   34.957717] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957718] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:94:DP-3]
[   34.957719] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:94:DP-3]
[   34.957722] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.957726] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.957728] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.957739] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.957742] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:95:DP-4] 00000000162f0b98 state to 0000000016fd1bbc
[   34.957745] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000004c6c31a8 state to 0000000016fd1bbc
[   34.957747] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.957750] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:95:DP-4]
[   34.957752] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:95:DP-4] keeps [ENCODER:87:DP-MST A], now on [CRTC:41:pipe A]
[   34.957760] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.961791] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.961796] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.961804] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.961807] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.961809] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.961823] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.961826] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:98:DP-5] 000000001047c4da state to 0000000016fd1bbc
[   34.961830] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000005e7324d8 state to 0000000016fd1bbc
[   34.961832] [drm:drm_atomic_check_only [drm]] checking 0000000016fd1bbc
[   34.961836] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:98:DP-5]
[   34.961838] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:98:DP-5] keeps [ENCODER:88:DP-MST B], now on [CRTC:55:pipe B]
[   34.961844] [drm:drm_atomic_commit [drm]] committing 0000000016fd1bbc
[   34.964312] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.964317] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   34.964326] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016fd1bbc
[   34.964328] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016fd1bbc
[   34.964331] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016fd1bbc
[   35.617856] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008221ce82
[   35.617863] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000ce9146b8 state to 000000008221ce82
[   35.617866] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:41:pipe A] to 000000008221ce82
[   35.617870] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:95:DP-4] 000000002e41390e state to 000000008221ce82
[   35.617873] [drm:drm_atomic_check_only [drm]] checking 000000008221ce82
[   35.617879] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:95:DP-4]
[   35.617882] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:95:DP-4] keeps [ENCODER:87:DP-MST A], now on [CRTC:41:pipe A]
[   35.617890] [drm:drm_atomic_commit [drm]] committing 000000008221ce82
[   35.628593] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008221ce82
[   35.628598] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008221ce82
[   35.628605] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008221ce82
[   35.628609] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000004c6c31a8 state to 000000008221ce82
[   35.628612] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:55:pipe B] to 000000008221ce82
[   35.628615] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:98:DP-5] 00000000162f0b98 state to 000000008221ce82
[   35.628618] [drm:drm_atomic_check_only [drm]] checking 000000008221ce82
[   35.628622] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:98:DP-5]
[   35.628624] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:98:DP-5] keeps [ENCODER:88:DP-MST B], now on [CRTC:55:pipe B]
[   35.628629] [drm:drm_atomic_commit [drm]] committing 000000008221ce82
[   35.631091] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008221ce82
[   35.631095] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008221ce82
[   35.631328] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008221ce82
[   35.631332] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000005e7324d8 state to 000000008221ce82
[   35.631335] [drm:drm_atomic_check_only [drm]] checking 000000008221ce82
[   35.631341] [drm:drm_atomic_commit [drm]] committing 000000008221ce82
[   35.645270] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008221ce82
[   35.645276] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008221ce82
[   35.645314] [drm:drm_mode_addfb2 [drm]] [FB:124]
[   35.645321] [drm:drm_mode_setcrtc [drm]] [CRTC:41:pipe A]
[   35.645327] [drm:drm_mode_setcrtc [drm]] [CONNECTOR:95:DP-4]
[   35.645332] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008221ce82
[   35.645336] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000ce9146b8 state to 000000008221ce82
[   35.645339] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000ffb72b54 state to 000000008221ce82
[   35.645343] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:] for [CRTC:41:pipe A] state 00000000ce9146b8
[   35.645346] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:124] for [PLANE:28:plane 1A] state 00000000ffb72b54
[   35.645350] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:41:pipe A] to 000000008221ce82
[   35.645354] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:95:DP-4] 00000000eb946f01 state to 000000008221ce82
[   35.645357] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:DP-4] state 00000000eb946f01 to [NOCRTC]
[   35.645360] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:DP-4] state 00000000eb946f01 to [CRTC:41:pipe A]
[   35.645378] [drm:drm_atomic_check_only [drm]] checking 000000008221ce82
[   35.645383] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:95:DP-4]
[   35.645385] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:95:DP-4] keeps [ENCODER:87:DP-MST A], now on [CRTC:41:pipe A]
[   35.645407] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 124
[   35.645416] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   35.645423] [drm:drm_atomic_commit [drm]] committing 000000008221ce82
[   35.661868] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008221ce82
[   35.661873] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008221ce82
[   35.661885] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008221ce82
[   35.661889] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000005e7324d8 state to 000000008221ce82
[   35.661892] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:41:pipe A] to 000000008221ce82
[   35.661895] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:95:DP-4] 000000002e41390e state to 000000008221ce82
[   35.661898] [drm:drm_atomic_check_only [drm]] checking 000000008221ce82
[   35.661902] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:95:DP-4]
[   35.661907] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:95:DP-4] keeps [ENCODER:87:DP-MST A], now on [CRTC:41:pipe A]
[   35.661912] [drm:drm_atomic_commit [drm]] committing 000000008221ce82
[   35.678534] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008221ce82
[   35.678538] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008221ce82
[   35.678551] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008221ce82
[   35.678556] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000ce9146b8 state to 000000008221ce82
[   35.678559] [drm:drm_atomic_check_only [drm]] checking 000000008221ce82
[   35.678564] [drm:drm_atomic_commit [drm]] committing 000000008221ce82
[   35.681011] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008221ce82
[   35.681015] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008221ce82
[   35.681023] [drm:drm_mode_setcrtc [drm]] [CRTC:55:pipe B]
[   35.681028] [drm:drm_mode_setcrtc [drm]] [CONNECTOR:98:DP-5]
[   35.681032] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008221ce82
[   35.681036] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000004c6c31a8 state to 000000008221ce82
[   35.681039] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 0000000063191348 state to 000000008221ce82
[   35.681061] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:] for [CRTC:55:pipe B] state 000000004c6c31a8
[   35.681064] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:124] for [PLANE:42:plane 1B] state 0000000063191348
[   35.681067] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:55:pipe B] to 000000008221ce82
[   35.681070] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:98:DP-5] 00000000eb946f01 state to 000000008221ce82
[   35.681073] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:98:DP-5] state 00000000eb946f01 to [NOCRTC]
[   35.681076] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:98:DP-5] state 00000000eb946f01 to [CRTC:55:pipe B]
[   35.681080] [drm:drm_atomic_check_only [drm]] checking 000000008221ce82
[   35.681083] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:98:DP-5]
[   35.681085] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:98:DP-5] keeps [ENCODER:88:DP-MST B], now on [CRTC:55:pipe B]
[   35.681096] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 124
[   35.681104] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   35.681109] [drm:drm_atomic_commit [drm]] committing 000000008221ce82
[   35.697730] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008221ce82
[   35.697736] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008221ce82
[   35.697743] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008221ce82
[   35.697747] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000ce9146b8 state to 000000008221ce82
[   35.697750] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:55:pipe B] to 000000008221ce82
[   35.697753] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:98:DP-5] 00000000162f0b98 state to 000000008221ce82
[   35.697756] [drm:drm_atomic_check_only [drm]] checking 000000008221ce82
[   35.697759] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:98:DP-5]
[   35.697761] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:98:DP-5] keeps [ENCODER:88:DP-MST B], now on [CRTC:55:pipe B]
[   35.697766] [drm:drm_atomic_commit [drm]] committing 000000008221ce82
[   35.714399] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008221ce82
[   35.714403] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008221ce82
[   35.714411] [drm:drm_mode_setcrtc [drm]] [CRTC:69:pipe C]
[   35.714415] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008221ce82
[   35.714419] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:69:pipe C] 000000004c6c31a8 state to 000000008221ce82
[   35.714422] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:56:plane 1C] 000000008e2106a2 state to 000000008221ce82
[   35.714425] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [NOMODE] for [CRTC:69:pipe C] state 000000004c6c31a8
[   35.714428] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:56:plane 1C] state 000000008e2106a2
[   35.714431] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:69:pipe C] to 000000008221ce82
[   35.714434] [drm:drm_atomic_check_only [drm]] checking 000000008221ce82
[   35.714438] [drm:drm_atomic_commit [drm]] committing 000000008221ce82
[   35.714445] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008221ce82
[   35.714448] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008221ce82
[   35.731602] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1]
[   35.731611] [drm:intel_hdmi_detect [i915]] [CONNECTOR:71:HDMI-A-1]
[   35.731965] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   35.731991] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   35.732292] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   35.732336] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   35.732343] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   35.732350] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[   35.736449] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   35.736456] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[   35.736780] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   35.736787] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   35.737194] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   35.737226] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   35.737229] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1] disconnected
[   35.737240] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1]
[   35.737248] [drm:intel_dp_detect [i915]] [CONNECTOR:78:DP-1]
[   35.737270] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1] disconnected
[   35.737275] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2]
[   35.737283] [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-2]
[   35.737606] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   35.737613] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   35.737942] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   35.738042] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   35.738068] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   35.738078] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[   35.742213] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   35.742221] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[   35.742546] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   35.742553] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   35.742862] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   35.742888] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   35.742890] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2] disconnected
[   35.742906] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2]
[   35.742913] [drm:intel_dp_detect [i915]] [CONNECTOR:86:DP-2]
[   35.743347] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 e4 01 01 01 01 81 00 00 00 00 00 00 00
[   35.744288] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[   35.744296] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000
[   35.744321] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000
[   35.744681] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-80-e1 dev-ID Dp1.2 HW-rev 0.0 SW-rev 0.21 quirks 0x0000
[   35.744960] [drm:intel_dp_detect [i915]] Sink is MST capable
[   35.744963] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2] disconnected
[   35.744970] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3]
[   35.744994] [drm:intel_hdmi_detect [i915]] [CONNECTOR:91:HDMI-A-3]
[   35.745283] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   35.745290] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   35.745555] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   35.745582] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   35.745589] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   35.745597] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[   35.749405] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   35.749412] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[   35.749738] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   35.749745] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   35.750161] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   35.750186] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   35.750188] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3] disconnected
[   35.750195] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3]
[   35.750202] [drm:intel_dp_detect [i915]] [CONNECTOR:94:DP-3]
[   35.750221] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3] disconnected
[   35.750229] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4]
[   35.750242] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   35.750247] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   35.750249] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   35.750258] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   35.750264] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4] probed modes :
[   35.750268] [drm:drm_mode_debug_printmodeline [drm]] Modeline 102:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   35.750338] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5]
[   35.750343] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   35.750346] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   35.750349] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   35.750360] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   35.750406] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5] probed modes :
[   35.750411] [drm:drm_mode_debug_printmodeline [drm]] Modeline 104:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   35.750414] [drm:drm_mode_debug_printmodeline [drm]] Modeline 107:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[   35.750417] [drm:drm_mode_debug_printmodeline [drm]] Modeline 111:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0xa
[   35.750420] [drm:drm_mode_debug_printmodeline [drm]] Modeline 109:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[   35.750423] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   35.750427] [drm:drm_mode_debug_printmodeline [drm]] Modeline 116:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   35.750430] [drm:drm_mode_debug_printmodeline [drm]] Modeline 110:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   35.750433] [drm:drm_mode_debug_printmodeline [drm]] Modeline 105:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   35.750436] [drm:drm_mode_debug_printmodeline [drm]] Modeline 108:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   35.750439] [drm:drm_mode_debug_printmodeline [drm]] Modeline 117:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   35.750442] [drm:drm_mode_debug_printmodeline [drm]] Modeline 118:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   35.750445] [drm:drm_mode_debug_printmodeline [drm]] Modeline 119:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   35.750448] [drm:drm_mode_debug_printmodeline [drm]] Modeline 112:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   35.750451] [drm:drm_mode_debug_printmodeline [drm]] Modeline 113:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   35.750454] [drm:drm_mode_debug_printmodeline [drm]] Modeline 114:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   35.750457] [drm:drm_mode_debug_printmodeline [drm]] Modeline 115:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   35.802475] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008221ce82
[   35.802480] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:38:cursor A] 00000000aa5fee8a state to 000000008221ce82
[   35.802483] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000099941b5b state to 000000008221ce82
[   35.802486] [drm:drm_atomic_set_crtc_for_plane [drm]] Link [PLANE:38:cursor A] state 00000000aa5fee8a to [CRTC:41:pipe A]
[   35.802489] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:121] for [PLANE:38:cursor A] state 00000000aa5fee8a
[   35.802492] [drm:drm_atomic_check_only [drm]] checking 000000008221ce82
[   35.802503] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 121
[   35.802511] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 0 -> 1, off 0, on 1, ms 0
[   35.802517] [drm:drm_atomic_commit [drm]] committing 000000008221ce82
[   35.802552] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008221ce82
[   35.802555] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008221ce82
[   35.802561] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008221ce82
[   35.802563] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:38:cursor A] 00000000e6769c4e state to 000000008221ce82
[   35.802566] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000005e7324d8 state to 000000008221ce82
[   35.802569] [drm:drm_atomic_set_crtc_for_plane [drm]] Link [PLANE:38:cursor A] state 00000000e6769c4e to [NOCRTC]
[   35.802572] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:38:cursor A] state 00000000e6769c4e
[   35.802575] [drm:drm_atomic_check_only [drm]] checking 000000008221ce82
[   35.802585] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb -1
[   35.802593] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 0, off 1, on 0, ms 0
[   35.802597] [drm:drm_atomic_commit [drm]] committing 000000008221ce82
[   35.802613] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008221ce82
[   35.802616] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008221ce82
[   35.803261] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008221ce82
[   35.803264] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:52:cursor B] 0000000061292ff8 state to 000000008221ce82
[   35.803267] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000099941b5b state to 000000008221ce82
[   35.803270] [drm:drm_atomic_set_crtc_for_plane [drm]] Link [PLANE:52:cursor B] state 0000000061292ff8 to [CRTC:55:pipe B]
[   35.803273] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:121] for [PLANE:52:cursor B] state 0000000061292ff8
[   35.803275] [drm:drm_atomic_check_only [drm]] checking 000000008221ce82
[   35.803284] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:52:cursor B] with fb 121
[   35.803291] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:52:cursor B] visible 0 -> 1, off 0, on 1, ms 0
[   35.803297] [drm:drm_atomic_commit [drm]] committing 000000008221ce82
[   35.803323] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008221ce82
[   35.803326] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008221ce82
[   35.803330] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008221ce82
[   35.803333] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:52:cursor B] 00000000c5838c8a state to 000000008221ce82
[   35.803336] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000ce9146b8 state to 000000008221ce82
[   35.803339] [drm:drm_atomic_set_crtc_for_plane [drm]] Link [PLANE:52:cursor B] state 00000000c5838c8a to [NOCRTC]
[   35.803342] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:52:cursor B] state 00000000c5838c8a
[   35.803344] [drm:drm_atomic_check_only [drm]] checking 000000008221ce82
[   35.803353] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:52:cursor B] with fb -1
[   35.803360] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:52:cursor B] visible 1 -> 0, off 1, on 0, ms 0
[   35.803364] [drm:drm_atomic_commit [drm]] committing 000000008221ce82
[   35.803379] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008221ce82
[   35.803383] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008221ce82
[   35.804490] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008221ce82
[   35.804493] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:52:cursor B] 0000000061292ff8 state to 000000008221ce82
[   35.804496] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:52:cursor B] state 0000000061292ff8
[   35.804498] [drm:drm_atomic_check_only [drm]] checking 000000008221ce82
[   35.804501] [drm:drm_atomic_commit [drm]] committing 000000008221ce82
[   35.804506] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008221ce82
[   35.804509] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008221ce82
[   35.804514] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008221ce82
[   35.804516] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:52:cursor B] 0000000017d81c15 state to 000000008221ce82
[   35.804519] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000099941b5b state to 000000008221ce82
[   35.804522] [drm:drm_atomic_set_crtc_for_plane [drm]] Link [PLANE:52:cursor B] state 0000000017d81c15 to [CRTC:55:pipe B]
[   35.804525] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:121] for [PLANE:52:cursor B] state 0000000017d81c15
[   35.804527] [drm:drm_atomic_check_only [drm]] checking 000000008221ce82
[   35.804536] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:52:cursor B] with fb 121
[   35.804543] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:52:cursor B] visible 0 -> 1, off 0, on 1, ms 0
[   35.804547] [drm:drm_atomic_commit [drm]] committing 000000008221ce82
[   35.804563] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008221ce82
[   35.804566] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008221ce82
[   42.416735] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1]
[   42.416749] [drm:intel_hdmi_detect [i915]] [CONNECTOR:71:HDMI-A-1]
[   42.417202] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   42.417210] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   42.417560] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   42.417623] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   42.417631] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   42.417639] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[   42.421735] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   42.421761] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[   42.422195] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   42.422202] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   42.422594] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   42.422626] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   42.422629] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1] disconnected
[   42.422642] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1]
[   42.422650] [drm:intel_dp_detect [i915]] [CONNECTOR:78:DP-1]
[   42.422672] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1] disconnected
[   42.422676] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2]
[   42.422684] [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-2]
[   42.423073] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   42.423081] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   42.423433] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   42.423466] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   42.423474] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   42.423481] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[   42.427587] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   42.427595] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[   42.428049] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   42.428056] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   42.428457] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   42.428489] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   42.428491] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2] disconnected
[   42.428498] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2]
[   42.428505] [drm:intel_dp_detect [i915]] [CONNECTOR:86:DP-2]
[   42.428918] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 e4 01 01 01 01 81 00 00 00 00 00 00 00
[   42.429859] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[   42.429867] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000
[   42.429893] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000
[   42.430256] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-80-e1 dev-ID Dp1.2 HW-rev 0.0 SW-rev 0.21 quirks 0x0000
[   42.430535] [drm:intel_dp_detect [i915]] Sink is MST capable
[   42.430538] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2] disconnected
[   42.430543] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3]
[   42.430568] [drm:intel_hdmi_detect [i915]] [CONNECTOR:91:HDMI-A-3]
[   42.430895] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   42.430907] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   42.431158] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   42.431202] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   42.431210] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   42.431218] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[   42.435073] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   42.435080] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[   42.435422] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   42.435458] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   42.435784] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   42.435810] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   42.435811] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3] disconnected
[   42.435835] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3]
[   42.435842] [drm:intel_dp_detect [i915]] [CONNECTOR:94:DP-3]
[   42.435864] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3] disconnected
[   42.435868] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4]
[   42.435874] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   42.435879] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   42.435881] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   42.435889] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   42.435899] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4] probed modes :
[   42.435904] [drm:drm_mode_debug_printmodeline [drm]] Modeline 102:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   42.436102] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5]
[   42.436106] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   42.436125] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   42.436128] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   42.436139] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   42.436185] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5] probed modes :
[   42.436189] [drm:drm_mode_debug_printmodeline [drm]] Modeline 104:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   42.436192] [drm:drm_mode_debug_printmodeline [drm]] Modeline 107:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[   42.436195] [drm:drm_mode_debug_printmodeline [drm]] Modeline 111:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0xa
[   42.436198] [drm:drm_mode_debug_printmodeline [drm]] Modeline 109:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[   42.436201] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   42.436204] [drm:drm_mode_debug_printmodeline [drm]] Modeline 116:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   42.436207] [drm:drm_mode_debug_printmodeline [drm]] Modeline 110:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   42.436209] [drm:drm_mode_debug_printmodeline [drm]] Modeline 105:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   42.436212] [drm:drm_mode_debug_printmodeline [drm]] Modeline 108:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   42.436215] [drm:drm_mode_debug_printmodeline [drm]] Modeline 117:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   42.436218] [drm:drm_mode_debug_printmodeline [drm]] Modeline 118:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   42.436221] [drm:drm_mode_debug_printmodeline [drm]] Modeline 119:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   42.436223] [drm:drm_mode_debug_printmodeline [drm]] Modeline 112:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   42.436226] [drm:drm_mode_debug_printmodeline [drm]] Modeline 113:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   42.436229] [drm:drm_mode_debug_printmodeline [drm]] Modeline 114:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   42.436232] [drm:drm_mode_debug_printmodeline [drm]] Modeline 115:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   45.204626] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:101] for [PLANE:52:cursor B] state 00000000978bd793
[   45.204641] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:52:cursor B] with fb 101
[   45.204649] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:52:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[   45.205796] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:121] for [PLANE:52:cursor B] state 00000000aa5fee8a
[   45.205805] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:52:cursor B] with fb 121
[   45.205812] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:52:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[   45.205819] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:121] for [PLANE:52:cursor B] state 00000000978bd793
[   45.205826] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:52:cursor B] with fb 121
[   45.205833] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:52:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[   55.851287] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10121010, pins 0x00000080, long 0x00000080
[   55.851297] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - long
[   55.851304] [drm:intel_hpd_irq_handler [i915]] Received HPD interrupt on PIN 7 - cnt: 0
[   55.851349] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - long
[   55.851376] [drm:i915_hotplug_work_func [i915]] running encoder hotplug functions
[   55.851396] [drm:i915_hotplug_work_func [i915]] Connector DP-2 (pin 7) received hotplug event.
[   55.851405] [drm:intel_dp_detect [i915]] [CONNECTOR:86:DP-2]
[   55.851430] [drm:intel_dp_detect [i915]] MST device may have disappeared 1 vs 1
[   55.851578] [drm:i915_hotplug_work_func [i915]] Connector HDMI-A-3 (pin 7) received hotplug event.
[   55.851587] [drm:intel_hdmi_detect [i915]] [CONNECTOR:91:HDMI-A-3]
[   55.851719] [drm:intel_dp_destroy_mst_connector [i915]] [CONNECTOR:95:DP-4]
[   55.851906] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   55.851919] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   55.852239] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   55.852276] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   55.852287] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   55.852297] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[   55.856288] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   55.856296] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[   55.856643] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   55.856651] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   55.857039] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   55.857066] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   55.857089] [drm:drm_dp_mst_put_payload_id.part.7 [drm_kms_helper]] putting payload 1
[   55.857097] [drm:intel_dp_destroy_mst_connector [i915]] [CONNECTOR:98:DP-5]
[   55.857135] [drm:drm_dp_mst_put_payload_id.part.7 [drm_kms_helper]] putting payload 2
[   55.858885] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1]
[   55.858896] [drm:intel_hdmi_detect [i915]] [CONNECTOR:71:HDMI-A-1]
[   55.859204] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   55.859211] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   55.859532] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   55.859561] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   55.859568] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   55.859576] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[   55.863704] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   55.863712] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[   55.864148] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   55.864155] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   55.864518] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   55.864545] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   55.864563] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1] disconnected
[   55.864573] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1]
[   55.864580] [drm:intel_dp_detect [i915]] [CONNECTOR:78:DP-1]
[   55.864603] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1] disconnected
[   55.864607] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2]
[   55.864615] [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-2]
[   55.865072] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   55.865081] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   55.865387] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   55.865415] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   55.865423] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   55.865430] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[   55.869644] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   55.869651] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[   55.870080] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   55.870106] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   55.870457] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   55.870508] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   55.870510] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2] disconnected
[   55.870520] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2]
[   55.870527] [drm:intel_dp_detect [i915]] [CONNECTOR:86:DP-2]
[   55.870549] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2] disconnected
[   55.870553] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3]
[   55.870561] [drm:intel_hdmi_detect [i915]] [CONNECTOR:91:HDMI-A-3]
[   55.871037] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   55.871045] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   55.871344] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   55.871387] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   55.871394] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   55.871401] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[   55.875430] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   55.875437] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[   55.875773] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   55.875780] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   55.876140] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   55.876165] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   55.876167] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3] disconnected
[   55.876173] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3]
[   55.876180] [drm:intel_dp_detect [i915]] [CONNECTOR:94:DP-3]
[   55.876202] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3] disconnected
[   55.876206] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4]
[   55.876208] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4] status updated from connected to disconnected
[   55.876211] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4] disconnected
[   55.876387] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5]
[   55.876405] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5] status updated from connected to disconnected
[   55.876407] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5] disconnected
[   55.877890] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1]
[   55.877902] [drm:intel_hdmi_detect [i915]] [CONNECTOR:71:HDMI-A-1]
[   55.878277] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   55.878284] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   55.878619] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   55.878653] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   55.878661] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   55.878668] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[   55.882742] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   55.882750] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[   55.883104] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   55.883111] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   55.883429] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   55.883455] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   55.883457] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1] disconnected
[   55.883471] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1]
[   55.883478] [drm:intel_dp_detect [i915]] [CONNECTOR:78:DP-1]
[   55.883497] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1] disconnected
[   55.883501] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2]
[   55.883508] [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-2]
[   55.883847] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   55.883854] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   55.884180] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   55.884204] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   55.884211] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   55.884219] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[   55.888286] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   55.888293] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[   55.888625] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   55.888632] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   55.889023] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   55.889080] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   55.889082] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2] disconnected
[   55.889106] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2]
[   55.889114] [drm:intel_dp_detect [i915]] [CONNECTOR:86:DP-2]
[   55.889135] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2] disconnected
[   55.889139] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3]
[   55.889147] [drm:intel_hdmi_detect [i915]] [CONNECTOR:91:HDMI-A-3]
[   55.889435] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   55.889442] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   55.889712] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   55.889738] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   55.889745] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   55.889753] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[   55.893802] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   55.893809] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[   55.894046] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   55.894054] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   55.894364] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   55.894390] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   55.894392] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3] disconnected
[   55.894403] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3]
[   55.894410] [drm:intel_dp_detect [i915]] [CONNECTOR:94:DP-3]
[   55.894433] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3] disconnected
[   55.894437] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4]
[   55.894439] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4] disconnected
[   55.894443] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5]
[   55.894444] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5] disconnected
[   60.054067] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10121010, pins 0x00000080, long 0x00000080
[   60.054076] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - long
[   60.054083] [drm:intel_hpd_irq_handler [i915]] Received HPD interrupt on PIN 7 - cnt: 0
[   60.054095] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - long
[   60.054104] [drm:i915_hotplug_work_func [i915]] running encoder hotplug functions
[   60.054111] [drm:i915_hotplug_work_func [i915]] Connector DP-2 (pin 7) received hotplug event.
[   60.054119] [drm:intel_dp_detect [i915]] [CONNECTOR:86:DP-2]
[   60.054530] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 e4 01 01 01 01 81 00 00 00 00 00 00 00
[   60.055473] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[   60.055481] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000
[   60.055489] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000
[   60.055849] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-80-e1 dev-ID Dp1.2 HW-rev 0.0 SW-rev 0.21 quirks 0x0000
[   60.056130] [drm:intel_dp_detect [i915]] Sink is MST capable
[   60.057214] [drm:i915_hotplug_work_func [i915]] Connector HDMI-A-3 (pin 7) received hotplug event.
[   60.057239] [drm:intel_hdmi_detect [i915]] [CONNECTOR:91:HDMI-A-3]
[   60.057546] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   60.057554] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   60.057820] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   60.057848] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   60.057856] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   60.057864] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[   60.060136] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.060144] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.060156] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.060687] [drm:intel_dp_check_mst_status [i915]] channel EQ not ok, retraining
[   60.061391] [drm:intel_dp_start_link_train [i915]] Using LINK_BW_SET value 14
[   60.061781] [drm:intel_dp_set_signal_levels [i915]] Using signal levels 00000000
[   60.061789] [drm:intel_dp_set_signal_levels [i915]] Using vswing level 0
[   60.061797] [drm:intel_dp_set_signal_levels [i915]] Using pre-emphasis level 0
[   60.061819] [drm:intel_dp_program_link_training_pattern [i915]] Using DP training pattern TPS1
[   60.061896] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   60.061907] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[   60.062215] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   60.062226] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   60.062526] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   60.062560] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   60.063469] [drm:intel_dp_set_signal_levels [i915]] Using signal levels 01000000
[   60.063476] [drm:intel_dp_set_signal_levels [i915]] Using vswing level 0
[   60.063501] [drm:intel_dp_set_signal_levels [i915]] Using pre-emphasis level 1
[   60.065137] [drm:intel_dp_start_link_train [i915]] clock recovery OK
[   60.065144] [drm:intel_dp_program_link_training_pattern [i915]] Using DP training pattern TPS3
[   60.066256] [drm:intel_dp_start_link_train [i915]] Channel EQ done. DP Training successful
[   60.066927] [drm:intel_dp_start_link_train [i915]] [CONNECTOR:86:DP-2] Link Training Passed at Link Rate = 540000, Lane count = 4
[   60.067072] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.068349] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.068357] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.152675] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.152684] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.152735] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.153119] [drm:intel_dp_check_mst_status [i915]] channel EQ not ok, retraining
[   60.153731] [drm:intel_dp_start_link_train [i915]] Using LINK_BW_SET value 14
[   60.154029] [drm:intel_dp_set_signal_levels [i915]] Using signal levels 00000000
[   60.154037] [drm:intel_dp_set_signal_levels [i915]] Using vswing level 0
[   60.154044] [drm:intel_dp_set_signal_levels [i915]] Using pre-emphasis level 0
[   60.154052] [drm:intel_dp_program_link_training_pattern [i915]] Using DP training pattern TPS1
[   60.155698] [drm:intel_dp_set_signal_levels [i915]] Using signal levels 01000000
[   60.155706] [drm:intel_dp_set_signal_levels [i915]] Using vswing level 0
[   60.155713] [drm:intel_dp_set_signal_levels [i915]] Using pre-emphasis level 1
[   60.157350] [drm:intel_dp_start_link_train [i915]] clock recovery OK
[   60.157358] [drm:intel_dp_program_link_training_pattern [i915]] Using DP training pattern TPS3
[   60.158482] [drm:intel_dp_start_link_train [i915]] Channel EQ done. DP Training successful
[   60.159119] [drm:intel_dp_start_link_train [i915]] [CONNECTOR:86:DP-2] Link Training Passed at Link Rate = 540000, Lane count = 4
[   60.159264] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.160542] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.160550] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.328247] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.328256] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.328319] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.328722] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.329477] [drm:drm_dp_send_link_address [drm_kms_helper]] link address reply: 3
[   60.329480] [drm:drm_dp_send_link_address [drm_kms_helper]] port 0: input 1, pdt: 1, pn: 0, dpcd_rev: 00, mcs: 1, ddps: 1, ldps 0, sdp 0/0
[   60.329482] [drm:drm_dp_send_link_address [drm_kms_helper]] port 1: input 0, pdt: 3, pn: 8, dpcd_rev: 12, mcs: 0, ddps: 1, ldps 0, sdp 1/2
[   60.329485] [drm:drm_dp_send_link_address [drm_kms_helper]] port 2: input 0, pdt: 3, pn: 9, dpcd_rev: 12, mcs: 0, ddps: 1, ldps 0, sdp 0/0
[   60.331267] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.331274] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.333097] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.333106] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.333116] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.333496] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.333905] [drm:drm_dp_send_enum_path_resources.isra.16 [drm_kms_helper]] enum path resources 8: 2560 2560
[   60.335789] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.335797] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.341052] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.341060] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.341120] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.341504] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.343796] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.343803] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.349274] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.349282] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.349328] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.349711] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.351384] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.351392] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.353749] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.353758] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.353768] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.354148] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.355796] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.355804] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.358176] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.358184] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.358209] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.358591] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.360240] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.360248] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.362800] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.362809] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.362819] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.363199] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.366200] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.366207] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.371101] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.371110] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.371171] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.371555] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.373230] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.373237] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.375553] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.375562] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.375573] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.375953] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.377602] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.377610] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.380005] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.380013] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.380023] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.380403] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.382052] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.382059] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.384512] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.384519] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.384529] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.384909] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.386036] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   60.386040] [drm:drm_get_edid [drm]] block id 0x12, rev 0, len 22
[   60.386043] [drm:drm_get_edid [drm]] tile cap 0x82
[   60.386046] [drm:drm_get_edid [drm]] tile_size 1920 x 2160
[   60.386049] [drm:drm_get_edid [drm]] topo num tiles 2x1, location 1x0
[   60.386052] [drm:drm_get_edid [drm]] vend DEL
[   60.387439] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:101:DP-6]
[   60.387443] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:101:DP-6] status updated from unknown to connected
[   60.387463] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   60.387469] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   60.387473] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   60.387484] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   60.387492] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:101:DP-6] probed modes :
[   60.387497] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   60.387551] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1]
[   60.387567] [drm:intel_hdmi_detect [i915]] [CONNECTOR:71:HDMI-A-1]
[   60.387856] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   60.387864] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   60.387907] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.387919] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.388178] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   60.388205] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   60.388213] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   60.388221] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[   60.389564] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.389573] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.389584] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.389996] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.390471] [drm:drm_dp_send_enum_path_resources.isra.16 [drm_kms_helper]] enum path resources 9: 1260 1260
[   60.392196] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   60.392205] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[   60.392488] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   60.392496] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.392521] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   60.392529] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.392807] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   60.392832] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   60.392835] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1] disconnected
[   60.392844] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1]
[   60.392852] [drm:intel_dp_detect [i915]] [CONNECTOR:78:DP-1]
[   60.392877] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1] disconnected
[   60.392883] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2]
[   60.392891] [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-2]
[   60.393164] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   60.393171] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   60.393478] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   60.393512] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   60.393520] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   60.393528] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[   60.397534] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   60.397541] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[   60.397985] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   60.398009] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.398017] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   60.398026] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.398086] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.398305] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   60.398332] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   60.398334] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2] disconnected
[   60.398342] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2]
[   60.398350] [drm:intel_dp_detect [i915]] [CONNECTOR:86:DP-2]
[   60.398547] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.398932] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 e4 01 01 01 01 81 00 00 00 00 00 00 00
[   60.401871] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.401881] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.402144] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[   60.402152] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000
[   60.402159] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000
[   60.402521] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-80-e1 dev-ID Dp1.2 HW-rev 0.0 SW-rev 0.21 quirks 0x0000
[   60.402801] [drm:intel_dp_detect [i915]] Sink is MST capable
[   60.402803] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2] disconnected
[   60.402808] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3]
[   60.402816] [drm:intel_hdmi_detect [i915]] [CONNECTOR:91:HDMI-A-3]
[   60.403077] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   60.403085] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   60.403395] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   60.403429] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   60.403437] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   60.403445] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[   60.406162] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.406171] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.406240] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.406809] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.407453] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   60.407462] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[   60.407746] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   60.407754] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   60.408023] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   60.408049] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   60.408051] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3] disconnected
[   60.408057] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3]
[   60.408066] [drm:intel_dp_detect [i915]] [CONNECTOR:94:DP-3]
[   60.408088] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3] disconnected
[   60.408093] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:101:DP-6]
[   60.408098] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   60.408102] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   60.408105] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   60.408113] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   60.408120] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:101:DP-6] probed modes :
[   60.408125] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   60.408219] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5]
[   60.408221] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5] disconnected
[   60.408631] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.408639] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.410076] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e367ebfa
[   60.410081] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e367ebfa
[   60.410085] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e367ebfa
[   60.410089] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e367ebfa
[   60.410092] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e367ebfa
[   60.410095] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e367ebfa
[   60.410098] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e367ebfa
[   60.410100] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e367ebfa
[   60.410103] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e367ebfa
[   60.410106] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e367ebfa
[   60.410109] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e367ebfa
[   60.410111] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e367ebfa
[   60.410114] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e367ebfa
[   60.410116] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e367ebfa
[   60.410119] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e367ebfa
[   60.410122] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e367ebfa
[   60.410124] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e367ebfa
[   60.410126] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e367ebfa
[   60.410129] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e367ebfa
[   60.410132] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e367ebfa
[   60.410134] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e367ebfa
[   60.410653] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.410662] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.410672] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.410743] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:52:cursor B] state 000000001fe8c9d8
[   60.410755] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:52:cursor B] with fb 105
[   60.410764] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:52:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[   60.411057] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.411444] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:52:cursor B] state 0000000017d81c15
[   60.411453] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:52:cursor B] with fb 110
[   60.411461] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:52:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[   60.411469] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:52:cursor B] state 000000001fe8c9d8
[   60.411477] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:52:cursor B] with fb 110
[   60.411485] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:52:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[   60.411536] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e367ebfa
[   60.411539] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e367ebfa
[   60.411543] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e367ebfa
[   60.411547] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e367ebfa
[   60.411550] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e367ebfa
[   60.411553] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e367ebfa
[   60.411557] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e367ebfa
[   60.411560] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e367ebfa
[   60.411563] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e367ebfa
[   60.411567] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e367ebfa
[   60.411570] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e367ebfa
[   60.411572] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e367ebfa
[   60.411576] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e367ebfa
[   60.411579] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e367ebfa
[   60.411582] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e367ebfa
[   60.411586] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e367ebfa
[   60.411588] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e367ebfa
[   60.411591] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e367ebfa
[   60.411595] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e367ebfa
[   60.411597] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e367ebfa
[   60.411600] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e367ebfa
[   60.411604] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e367ebfa
[   60.411608] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000008605221c state to 00000000e367ebfa
[   60.411611] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:55:pipe B] to 00000000e367ebfa
[   60.411615] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:98:DP-5] 0000000095fd2bf6 state to 00000000e367ebfa
[   60.411619] [drm:drm_atomic_check_only [drm]] checking 00000000e367ebfa
[   60.411623] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CRTC:55:pipe B] active changed
[   60.411625] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:98:DP-5]
[   60.411627] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] No suitable encoder found for [CONNECTOR:98:DP-5]
[   60.411630] [drm:drm_atomic_check_only [drm]] atomic driver check for 00000000e367ebfa failed: -22
[   60.411633] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e367ebfa
[   60.411636] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e367ebfa
[   60.412739] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.412765] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.414098] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e367ebfa
[   60.414105] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000005a38eeb8 state to 00000000e367ebfa
[   60.414109] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000008605221c state to 00000000e367ebfa
[   60.414112] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:28:plane 1A] state 000000005a38eeb8
[   60.414116] [drm:drm_atomic_set_crtc_for_plane [drm]] Link [PLANE:28:plane 1A] state 000000005a38eeb8 to [NOCRTC]
[   60.414119] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000911d4a2d state to 00000000e367ebfa
[   60.414123] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000008e69edb8 state to 00000000e367ebfa
[   60.414126] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:42:plane 1B] state 00000000911d4a2d
[   60.414129] [drm:drm_atomic_set_crtc_for_plane [drm]] Link [PLANE:42:plane 1B] state 00000000911d4a2d to [NOCRTC]
[   60.414132] [drm:drm_atomic_check_only [drm]] checking 00000000e367ebfa
[   60.414154] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb -1
[   60.414162] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 0, off 1, on 0, ms 0
[   60.414171] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb -1
[   60.414178] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 0, off 1, on 0, ms 0
[   60.414189] [drm:skl_compute_wm [i915]] [PLANE:28:plane 1A] ddb (0 - 438) -> (0 - 0)
[   60.414195] [drm:skl_compute_wm [i915]] [PLANE:42:plane 1B] ddb (446 - 884) -> (0 - 0)
[   60.414199] [drm:drm_atomic_commit [drm]] committing 00000000e367ebfa
[   60.415131] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.415143] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.415155] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.415543] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.417191] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.417198] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.419328] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e367ebfa
[   60.419333] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e367ebfa
[   60.419665] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.419673] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.419686] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.419691] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008fcadd17
[   60.419698] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000a209f3b3 state to 000000008fcadd17
[   60.419702] [drm:drm_atomic_check_only [drm]] checking 000000008fcadd17
[   60.419707] [drm:drm_atomic_commit [drm]] committing 000000008fcadd17
[   60.420077] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.423149] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.423157] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.427905] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.427915] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.428016] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.428419] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.430092] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.430099] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.432389] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.432397] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.432408] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.432787] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.433435] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008fcadd17
[   60.433441] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008fcadd17
[   60.433465] [drm:drm_mode_addfb2 [drm]] [FB:111]
[   60.433471] [drm:drm_mode_setcrtc [drm]] [CRTC:41:pipe A]
[   60.433478] [drm:drm_mode_setcrtc [drm]] [CONNECTOR:101:DP-6]
[   60.433482] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008fcadd17
[   60.433487] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000008605221c state to 000000008fcadd17
[   60.433490] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 0000000072ad623f state to 000000008fcadd17
[   60.433495] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:] for [CRTC:41:pipe A] state 000000008605221c
[   60.433499] [drm:drm_atomic_set_crtc_for_plane [drm]] Link [PLANE:28:plane 1A] state 0000000072ad623f to [CRTC:41:pipe A]
[   60.433502] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:111] for [PLANE:28:plane 1A] state 0000000072ad623f
[   60.433505] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:41:pipe A] to 000000008fcadd17
[   60.433510] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:95:DP-4] 000000008a89ab71 state to 000000008fcadd17
[   60.433514] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:DP-4] state 000000008a89ab71 to [NOCRTC]
[   60.433517] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:101:DP-6] 000000001517154e state to 000000008fcadd17
[   60.433521] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:101:DP-6] state 000000001517154e to [CRTC:41:pipe A]
[   60.433525] [drm:drm_atomic_check_only [drm]] checking 000000008fcadd17
[   60.433531] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:95:DP-4]
[   60.433533] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:95:DP-4]
[   60.433537] [drm:drm_atomic_get_private_obj_state [drm]] Added new private object 000000006f6321f8 state 00000000c0cc57a2 to 000000008fcadd17
[   60.433539] [drm:drm_dp_atomic_release_vcpi_slots [drm_kms_helper]] vcpi slots released=25, avail=38
[   60.433541] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:101:DP-6]
[   60.433544] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:101:DP-6] using [ENCODER:87:DP-MST A] on [CRTC:41:pipe A]
[   60.433546] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CRTC:41:pipe A] needs all connectors, enable: y, active: y
[   60.433549] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:41:pipe A] to 000000008fcadd17
[   60.433552] [drm:drm_atomic_add_affected_planes [drm]] Adding all current planes for [CRTC:41:pipe A] to 000000008fcadd17
[   60.433563] [drm:intel_atomic_check [i915]] [CONNECTOR:101:DP-6] checking for sink bpp constrains
[   60.433572] [drm:intel_atomic_check [i915]] clamping display bpp (was 36) to EDID reported max of 30
[   60.433576] [drm:drm_dp_atomic_find_vcpi_slots [drm_kms_helper]] vcpi slots req=25, avail=38
[   60.433578] [drm:drm_dp_atomic_find_vcpi_slots [drm_kms_helper]] vcpi slots avail=13
[   60.433588] [drm:intel_atomic_check [i915]] hw max bpp: 36, pipe bpp: 24, dithering: 0
[   60.433598] [drm:intel_dump_pipe_config [i915]] [CRTC:41:pipe A][modeset]
[   60.433607] [drm:intel_dump_pipe_config [i915]] output_types: DP_MST (0x800)
[   60.433615] [drm:intel_dump_pipe_config [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   60.433624] [drm:intel_dump_pipe_config [i915]] dp m_n: lanes: 4; gmch_m: 3230196, gmch_n: 8388608, link_m: 538366, link_n: 1048576, tu: 25
[   60.433631] [drm:intel_dump_pipe_config [i915]] audio: 0, infoframes: 0
[   60.433639] [drm:intel_dump_pipe_config [i915]] requested mode:
[   60.433644] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x0 0x9
[   60.433651] [drm:intel_dump_pipe_config [i915]] adjusted mode:
[   60.433656] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x0 0x9
[   60.433665] [drm:intel_dump_pipe_config [i915]] crtc timings: 277250 1920 1968 2000 2080 2160 2163 2173 2222, type: 0x0 flags: 0x9
[   60.433672] [drm:intel_dump_pipe_config [i915]] port clock: 540000, pipe src size: 1920x2160, pixel rate 277250
[   60.433680] [drm:intel_dump_pipe_config [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1
[   60.433687] [drm:intel_dump_pipe_config [i915]] pch pfit: pos: 0x00000000, size: 0x00000000, disabled
[   60.433694] [drm:intel_dump_pipe_config [i915]] ips: 0, double wide: 0
[   60.433702] [drm:intel_dump_pipe_config [i915]] dpll_hw_state: ctrl1: 0x1, cfgcr1: 0x0, cfgcr2: 0x0
[   60.433709] [drm:intel_dump_pipe_config [i915]] planes on this crtc
[   60.433716] [drm:intel_dump_pipe_config [i915]] [PLANE:28:plane 1A] disabled, scaler_id = -1
[   60.433723] [drm:intel_dump_pipe_config [i915]] [PLANE:33:plane 2A] disabled, scaler_id = -1
[   60.433731] [drm:intel_dump_pipe_config [i915]] [PLANE:38:cursor A] disabled, scaler_id = -1
[   60.433741] [drm:intel_atomic_check [i915]] New cdclk calculated to be logical 337500 kHz, actual 337500 kHz
[   60.433749] [drm:intel_atomic_check [i915]] New voltage level calculated to be logical 0, actual 0
[   60.433761] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 111
[   60.433769] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 0 -> 1, off 0, on 1, ms 1
[   60.433779] [drm:intel_find_shared_dpll [i915]] [CRTC:41:pipe A] sharing existing DPLL 1 (crtc mask 0x00000002, active 3)
[   60.433787] [drm:intel_reference_shared_dpll [i915]] using DPLL 1 for pipe A
[   60.433794] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000037005537 state to 000000008fcadd17
[   60.433799] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:69:pipe C] 000000001a76fc8b state to 000000008fcadd17
[   60.433810] [drm:skl_compute_wm [i915]] [PLANE:28:plane 1A] ddb (0 - 0) -> (0 - 438)
[   60.433814] [drm:drm_atomic_commit [drm]] committing 000000008fcadd17
[   60.434437] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.434445] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.434461] [drm:intel_mst_disable_dp [i915]] active links 2
[   60.434473] [drm:intel_disable_pipe [i915]] disabling pipe A
[   60.436795] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.436803] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.436813] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.437194] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.438843] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.438851] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.441345] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.441353] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.441378] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.441759] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.442885] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   60.442889] [drm:drm_get_edid [drm]] block id 0x12, rev 0, len 22
[   60.442892] [drm:drm_get_edid [drm]] tile cap 0x82
[   60.442895] [drm:drm_get_edid [drm]] tile_size 1920 x 2160
[   60.442898] [drm:drm_get_edid [drm]] topo num tiles 2x1, location 0x0
[   60.442901] [drm:drm_get_edid [drm]] vend DEL
[   60.443413] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.443421] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.451250] [drm:intel_encoders_post_disable.isra.71 [i915]] active links 1
[   60.451259] [drm:__intel_fbc_disable [i915]] Disabling FBC on pipe A
[   60.451268] [drm:intel_disable_shared_dpll [i915]] disable DPLL 1 (active 3, on? 1) for crtc 41
[   60.451279] [drm:intel_atomic_commit_tail [i915]] [ENCODER:70:DDI B]
[   60.451287] [drm:intel_atomic_commit_tail [i915]] [ENCODER:77:DDI C]
[   60.451311] [drm:intel_atomic_commit_tail [i915]] [ENCODER:79:DP-MST A]
[   60.451318] [drm:intel_atomic_commit_tail [i915]] [ENCODER:80:DP-MST B]
[   60.451324] [drm:intel_atomic_commit_tail [i915]] [ENCODER:81:DP-MST C]
[   60.451331] [drm:intel_atomic_commit_tail [i915]] [ENCODER:85:DDI D]
[   60.451337] [drm:intel_atomic_commit_tail [i915]] [ENCODER:87:DP-MST A]
[   60.451344] [drm:intel_atomic_commit_tail [i915]] [ENCODER:88:DP-MST B]
[   60.451350] [drm:intel_atomic_commit_tail [i915]] [ENCODER:89:DP-MST C]
[   60.451357] [drm:intel_atomic_commit_tail [i915]] [ENCODER:93:DDI E]
[   60.451365] [drm:verify_connector_state.isra.86 [i915]] [CONNECTOR:95:DP-4]
[   60.451372] [drm:verify_single_dpll_state.isra.87 [i915]] DPLL 0
[   60.451380] [drm:verify_single_dpll_state.isra.87 [i915]] DPLL 1
[   60.451387] [drm:verify_single_dpll_state.isra.87 [i915]] DPLL 2
[   60.451394] [drm:verify_single_dpll_state.isra.87 [i915]] DPLL 3
[   60.451404] [drm:intel_enable_shared_dpll [i915]] enable DPLL 1 (active 3, on? 1) for crtc 41
[   60.451412] [drm:intel_mst_pre_enable_dp [i915]] active links 1
[   60.454788] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.454797] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.454808] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.455190] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.455600] [drm:drm_dp_mst_allocate_vcpi [drm_kms_helper]] initing vcpi for pbn=992 slots=25
[   60.456424] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.456432] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.456766] [drm:intel_enable_pipe [i915]] enabling pipe A
[   60.456778] [drm:intel_mst_enable_dp [i915]] active links 2
[   60.457079] [drm:drm_dp_update_payload_part2 [drm_kms_helper]] payload 0 1
[   60.460504] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.460512] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.460522] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.460903] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.462685] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.462692] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.462702] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.463083] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.463500] [drm:intel_fbc_enable [i915]] reserved 33177600 bytes of contiguous stolen space for FBC, threshold: 1
[   60.463508] [drm:intel_fbc_enable [i915]] Enabling FBC on pipe A
[   60.464021] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.464028] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.473623] [drm:verify_connector_state.isra.86 [i915]] [CONNECTOR:101:DP-6]
[   60.473633] [drm:intel_atomic_commit_tail [i915]] [CRTC:41:pipe A]
[   60.473649] [drm:verify_single_dpll_state.isra.87 [i915]] DPLL 1
[   60.473659] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008fcadd17
[   60.473664] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008fcadd17
[   60.473676] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008fcadd17
[   60.473679] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000004c6c31a8 state to 000000008fcadd17
[   60.473682] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:41:pipe A] to 000000008fcadd17
[   60.473685] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:101:DP-6] 00000000f1f1cc07 state to 000000008fcadd17
[   60.473688] [drm:drm_atomic_check_only [drm]] checking 000000008fcadd17
[   60.473692] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:101:DP-6]
[   60.473694] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:101:DP-6] keeps [ENCODER:87:DP-MST A], now on [CRTC:41:pipe A]
[   60.473699] [drm:drm_atomic_commit [drm]] committing 000000008fcadd17
[   60.490283] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008fcadd17
[   60.490288] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008fcadd17
[   60.490300] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008fcadd17
[   60.490303] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008fcadd17
[   60.490305] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008fcadd17
[   60.490309] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008fcadd17
[   60.490311] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008fcadd17
[   60.490314] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008fcadd17
[   60.490317] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008fcadd17
[   60.490319] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008fcadd17
[   60.490321] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008fcadd17
[   60.490324] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008fcadd17
[   60.490327] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008fcadd17
[   60.490329] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008fcadd17
[   60.490332] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008fcadd17
[   60.490334] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008fcadd17
[   60.490337] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008fcadd17
[   60.490340] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008fcadd17
[   60.490342] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008fcadd17
[   60.490344] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008fcadd17
[   60.490347] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008fcadd17
[   60.490350] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000008605221c state to 000000008fcadd17
[   60.490353] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:55:pipe B] to 000000008fcadd17
[   60.490356] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:98:DP-5] 000000001517154e state to 000000008fcadd17
[   60.490358] [drm:drm_atomic_check_only [drm]] checking 000000008fcadd17
[   60.490361] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CRTC:55:pipe B] active changed
[   60.490363] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:98:DP-5]
[   60.490365] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] No suitable encoder found for [CONNECTOR:98:DP-5]
[   60.490367] [drm:drm_atomic_check_only [drm]] atomic driver check for 000000008fcadd17 failed: -22
[   60.490370] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008fcadd17
[   60.490372] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008fcadd17
[   60.491489] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008fcadd17
[   60.491492] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:38:cursor A] 000000007673ba09 state to 000000008fcadd17
[   60.491496] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:38:cursor A] state 000000007673ba09
[   60.491498] [drm:drm_atomic_check_only [drm]] checking 000000008fcadd17
[   60.491501] [drm:drm_atomic_commit [drm]] committing 000000008fcadd17
[   60.491509] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008fcadd17
[   60.491512] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008fcadd17
[   60.491518] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008fcadd17
[   60.491521] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:38:cursor A] 000000005a38eeb8 state to 000000008fcadd17
[   60.491523] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000008605221c state to 000000008fcadd17
[   60.491526] [drm:drm_atomic_set_crtc_for_plane [drm]] Link [PLANE:38:cursor A] state 000000005a38eeb8 to [CRTC:41:pipe A]
[   60.491529] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:112] for [PLANE:38:cursor A] state 000000005a38eeb8
[   60.491532] [drm:drm_atomic_check_only [drm]] checking 000000008fcadd17
[   60.491543] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 112
[   60.491551] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 0 -> 1, off 0, on 1, ms 0
[   60.491556] [drm:drm_atomic_commit [drm]] committing 000000008fcadd17
[   60.491574] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008fcadd17
[   60.491576] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008fcadd17
[   60.491943] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4]
[   60.491946] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4] disconnected
[   60.491958] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:101:DP-6]
[   60.491963] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   60.491968] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   60.491971] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   60.491980] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   60.491986] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:101:DP-6] probed modes :
[   60.491991] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   60.492020] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:107:DP-7]
[   60.492022] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:107:DP-7] status updated from unknown to connected
[   60.492025] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   60.492028] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   60.492031] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   60.492042] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   60.492087] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:107:DP-7] probed modes :
[   60.492092] [drm:drm_mode_debug_printmodeline [drm]] Modeline 116:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   60.492096] [drm:drm_mode_debug_printmodeline [drm]] Modeline 119:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[   60.492099] [drm:drm_mode_debug_printmodeline [drm]] Modeline 126:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0xa
[   60.492102] [drm:drm_mode_debug_printmodeline [drm]] Modeline 123:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[   60.492105] [drm:drm_mode_debug_printmodeline [drm]] Modeline 118:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   60.492108] [drm:drm_mode_debug_printmodeline [drm]] Modeline 132:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   60.492111] [drm:drm_mode_debug_printmodeline [drm]] Modeline 124:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   60.492114] [drm:drm_mode_debug_printmodeline [drm]] Modeline 117:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   60.492117] [drm:drm_mode_debug_printmodeline [drm]] Modeline 121:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   60.492120] [drm:drm_mode_debug_printmodeline [drm]] Modeline 133:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   60.492123] [drm:drm_mode_debug_printmodeline [drm]] Modeline 134:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   60.492126] [drm:drm_mode_debug_printmodeline [drm]] Modeline 135:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   60.492129] [drm:drm_mode_debug_printmodeline [drm]] Modeline 127:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   60.492132] [drm:drm_mode_debug_printmodeline [drm]] Modeline 128:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   60.492135] [drm:drm_mode_debug_printmodeline [drm]] Modeline 130:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   60.492138] [drm:drm_mode_debug_printmodeline [drm]] Modeline 131:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   60.492181] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1]
[   60.492190] [drm:intel_hdmi_detect [i915]] [CONNECTOR:71:HDMI-A-1]
[   60.492532] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   60.492540] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   60.492830] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   60.492857] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   60.492865] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   60.492875] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[   60.497045] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   60.497052] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[   60.497450] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   60.497458] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   60.497825] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   60.497868] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   60.497870] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1] disconnected
[   60.497901] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1]
[   60.497909] [drm:intel_dp_detect [i915]] [CONNECTOR:78:DP-1]
[   60.497951] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1] disconnected
[   60.497972] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2]
[   60.497997] [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-2]
[   60.498331] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   60.498338] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   60.498690] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   60.498723] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   60.498730] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   60.498738] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[   60.502588] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   60.502596] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[   60.503006] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   60.503031] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   60.503370] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   60.503396] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   60.503397] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2] disconnected
[   60.503405] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2]
[   60.503412] [drm:intel_dp_detect [i915]] [CONNECTOR:86:DP-2]
[   60.503823] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 e4 01 01 01 01 81 00 00 00 00 00 00 00
[   60.504767] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[   60.504775] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000
[   60.504783] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000
[   60.505145] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-80-e1 dev-ID Dp1.2 HW-rev 0.0 SW-rev 0.21 quirks 0x0000
[   60.505424] [drm:intel_dp_detect [i915]] Sink is MST capable
[   60.505427] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2] disconnected
[   60.505432] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3]
[   60.505440] [drm:intel_hdmi_detect [i915]] [CONNECTOR:91:HDMI-A-3]
[   60.505739] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   60.505747] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   60.506013] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   60.506040] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   60.506048] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   60.506055] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[   60.509809] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   60.509817] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[   60.510141] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   60.510148] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   60.510461] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   60.510486] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   60.510488] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3] disconnected
[   60.510495] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3]
[   60.510502] [drm:intel_dp_detect [i915]] [CONNECTOR:94:DP-3]
[   60.510521] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3] disconnected
[   60.510525] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:101:DP-6]
[   60.510530] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   60.510534] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   60.510536] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   60.510543] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   60.510549] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:101:DP-6] probed modes :
[   60.510553] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   60.510621] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:107:DP-7]
[   60.510625] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   60.510628] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   60.510631] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   60.510640] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   60.510687] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:107:DP-7] probed modes :
[   60.510691] [drm:drm_mode_debug_printmodeline [drm]] Modeline 116:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   60.510695] [drm:drm_mode_debug_printmodeline [drm]] Modeline 119:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[   60.510698] [drm:drm_mode_debug_printmodeline [drm]] Modeline 126:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0xa
[   60.510701] [drm:drm_mode_debug_printmodeline [drm]] Modeline 123:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[   60.510704] [drm:drm_mode_debug_printmodeline [drm]] Modeline 118:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   60.510707] [drm:drm_mode_debug_printmodeline [drm]] Modeline 132:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   60.510709] [drm:drm_mode_debug_printmodeline [drm]] Modeline 124:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   60.510712] [drm:drm_mode_debug_printmodeline [drm]] Modeline 117:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   60.510715] [drm:drm_mode_debug_printmodeline [drm]] Modeline 121:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   60.510718] [drm:drm_mode_debug_printmodeline [drm]] Modeline 133:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   60.510721] [drm:drm_mode_debug_printmodeline [drm]] Modeline 134:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   60.510724] [drm:drm_mode_debug_printmodeline [drm]] Modeline 135:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   60.510727] [drm:drm_mode_debug_printmodeline [drm]] Modeline 127:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   60.510729] [drm:drm_mode_debug_printmodeline [drm]] Modeline 128:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   60.510732] [drm:drm_mode_debug_printmodeline [drm]] Modeline 130:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   60.510735] [drm:drm_mode_debug_printmodeline [drm]] Modeline 131:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   60.518392] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004c6c31a8
[   60.518399] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:38:cursor A] 00000000c8a61261 state to 000000004c6c31a8
[   60.518404] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000008e69edb8 state to 000000004c6c31a8
[   60.518408] [drm:drm_atomic_set_crtc_for_plane [drm]] Link [PLANE:38:cursor A] state 00000000c8a61261 to [NOCRTC]
[   60.518411] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:38:cursor A] state 00000000c8a61261
[   60.518414] [drm:drm_atomic_check_only [drm]] checking 000000004c6c31a8
[   60.518474] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb -1
[   60.518482] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 0, off 1, on 0, ms 0
[   60.518490] [drm:drm_atomic_commit [drm]] committing 000000004c6c31a8
[   60.518515] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004c6c31a8
[   60.518519] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004c6c31a8
[   60.527075] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004c6c31a8
[   60.527080] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000008605221c state to 000000004c6c31a8
[   60.527083] [drm:drm_atomic_check_only [drm]] checking 000000004c6c31a8
[   60.527088] [drm:drm_atomic_commit [drm]] committing 000000004c6c31a8
[   60.540297] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004c6c31a8
[   60.540302] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004c6c31a8
[   60.540315] [drm:drm_mode_addfb2 [drm]] [FB:105]
[   60.540320] [drm:drm_mode_setcrtc [drm]] [CRTC:41:pipe A]
[   60.540325] [drm:drm_mode_setcrtc [drm]] [CONNECTOR:101:DP-6]
[   60.540330] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004c6c31a8
[   60.540333] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000008e69edb8 state to 000000004c6c31a8
[   60.540337] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000dba9534d state to 000000004c6c31a8
[   60.540341] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:] for [CRTC:41:pipe A] state 000000008e69edb8
[   60.540344] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:28:plane 1A] state 00000000dba9534d
[   60.540347] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:41:pipe A] to 000000004c6c31a8
[   60.540352] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:101:DP-6] 000000009811a447 state to 000000004c6c31a8
[   60.540355] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:101:DP-6] state 000000009811a447 to [NOCRTC]
[   60.540358] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:101:DP-6] state 000000009811a447 to [CRTC:41:pipe A]
[   60.540363] [drm:drm_atomic_check_only [drm]] checking 000000004c6c31a8
[   60.540367] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:101:DP-6]
[   60.540369] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:101:DP-6] keeps [ENCODER:87:DP-MST A], now on [CRTC:41:pipe A]
[   60.540382] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 105
[   60.540390] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   60.540396] [drm:drm_atomic_commit [drm]] committing 000000004c6c31a8
[   60.556976] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004c6c31a8
[   60.556981] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004c6c31a8
[   60.556992] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004c6c31a8
[   60.556995] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000008605221c state to 000000004c6c31a8
[   60.556998] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:41:pipe A] to 000000004c6c31a8
[   60.557002] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:101:DP-6] 00000000f1f1cc07 state to 000000004c6c31a8
[   60.557004] [drm:drm_atomic_check_only [drm]] checking 000000004c6c31a8
[   60.557008] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:101:DP-6]
[   60.557010] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:101:DP-6] keeps [ENCODER:87:DP-MST A], now on [CRTC:41:pipe A]
[   60.557015] [drm:drm_atomic_commit [drm]] committing 000000004c6c31a8
[   60.573633] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004c6c31a8
[   60.573638] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004c6c31a8
[   60.574905] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004c6c31a8
[   60.574909] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:38:cursor A] 000000005a38eeb8 state to 000000004c6c31a8
[   60.574912] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:38:cursor A] state 000000005a38eeb8
[   60.574915] [drm:drm_atomic_check_only [drm]] checking 000000004c6c31a8
[   60.574935] [drm:drm_atomic_commit [drm]] committing 000000004c6c31a8
[   60.574959] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004c6c31a8
[   60.574962] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004c6c31a8
[   60.574984] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004c6c31a8
[   60.574987] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:38:cursor A] 0000000034bdbcc3 state to 000000004c6c31a8
[   60.574990] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000008e69edb8 state to 000000004c6c31a8
[   60.574993] [drm:drm_atomic_set_crtc_for_plane [drm]] Link [PLANE:38:cursor A] state 0000000034bdbcc3 to [CRTC:41:pipe A]
[   60.574996] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:111] for [PLANE:38:cursor A] state 0000000034bdbcc3
[   60.574998] [drm:drm_atomic_check_only [drm]] checking 000000004c6c31a8
[   60.575023] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 111
[   60.575031] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 0 -> 1, off 0, on 1, ms 0
[   60.575037] [drm:drm_atomic_commit [drm]] committing 000000004c6c31a8
[   60.575054] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004c6c31a8
[   60.575056] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004c6c31a8
[   60.575297] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004c6c31a8
[   60.575302] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000008605221c state to 000000004c6c31a8
[   60.575306] [drm:drm_atomic_check_only [drm]] checking 000000004c6c31a8
[   60.575311] [drm:drm_atomic_commit [drm]] committing 000000004c6c31a8
[   60.586107] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004c6c31a8
[   60.586112] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004c6c31a8
[   60.586121] [drm:drm_mode_setcrtc [drm]] [CRTC:55:pipe B]
[   60.586126] [drm:drm_mode_setcrtc [drm]] [CONNECTOR:107:DP-7]
[   60.586130] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004c6c31a8
[   60.586134] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000037005537 state to 000000004c6c31a8
[   60.586137] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000005a38eeb8 state to 000000004c6c31a8
[   60.586141] [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:] for [CRTC:55:pipe B] state 0000000037005537
[   60.586144] [drm:drm_atomic_set_crtc_for_plane [drm]] Link [PLANE:42:plane 1B] state 000000005a38eeb8 to [CRTC:55:pipe B]
[   60.586147] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:42:plane 1B] state 000000005a38eeb8
[   60.586150] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:55:pipe B] to 000000004c6c31a8
[   60.586154] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:98:DP-5] 00000000754c8e02 state to 000000004c6c31a8
[   60.586157] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:98:DP-5] state 00000000754c8e02 to [NOCRTC]
[   60.586160] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:107:DP-7] 00000000bc43ce40 state to 000000004c6c31a8
[   60.586163] [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:107:DP-7] state 00000000bc43ce40 to [CRTC:55:pipe B]
[   60.586167] [drm:drm_atomic_check_only [drm]] checking 000000004c6c31a8
[   60.586170] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:98:DP-5]
[   60.586172] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Disabling [CONNECTOR:98:DP-5]
[   60.586175] [drm:drm_atomic_get_private_obj_state [drm]] Added new private object 000000006f6321f8 state 000000009e98ff9b to 000000004c6c31a8
[   60.586177] [drm:drm_dp_atomic_release_vcpi_slots [drm_kms_helper]] vcpi slots released=25, avail=38
[   60.586179] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:107:DP-7]
[   60.586181] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:107:DP-7] using [ENCODER:88:DP-MST B] on [CRTC:55:pipe B]
[   60.586183] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CRTC:55:pipe B] needs all connectors, enable: y, active: y
[   60.586185] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:55:pipe B] to 000000004c6c31a8
[   60.586188] [drm:drm_atomic_add_affected_planes [drm]] Adding all current planes for [CRTC:55:pipe B] to 000000004c6c31a8
[   60.586191] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:52:cursor B] 00000000274b8b4a state to 000000004c6c31a8
[   60.586202] [drm:intel_atomic_check [i915]] [CONNECTOR:107:DP-7] checking for sink bpp constrains
[   60.586210] [drm:intel_atomic_check [i915]] clamping display bpp (was 36) to EDID reported max of 30
[   60.586214] [drm:drm_dp_atomic_find_vcpi_slots [drm_kms_helper]] vcpi slots req=25, avail=38
[   60.586215] [drm:drm_dp_atomic_find_vcpi_slots [drm_kms_helper]] vcpi slots avail=13
[   60.586224] [drm:intel_atomic_check [i915]] hw max bpp: 36, pipe bpp: 24, dithering: 0
[   60.586233] [drm:intel_dump_pipe_config [i915]] [CRTC:55:pipe B][modeset]
[   60.586241] [drm:intel_dump_pipe_config [i915]] output_types: DP_MST (0x800)
[   60.586249] [drm:intel_dump_pipe_config [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   60.586256] [drm:intel_dump_pipe_config [i915]] dp m_n: lanes: 4; gmch_m: 3230196, gmch_n: 8388608, link_m: 538366, link_n: 1048576, tu: 25
[   60.586263] [drm:intel_dump_pipe_config [i915]] audio: 0, infoframes: 0
[   60.586270] [drm:intel_dump_pipe_config [i915]] requested mode:
[   60.586275] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x0 0x9
[   60.586282] [drm:intel_dump_pipe_config [i915]] adjusted mode:
[   60.586286] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x0 0x9
[   60.586294] [drm:intel_dump_pipe_config [i915]] crtc timings: 277250 1920 1968 2000 2080 2160 2163 2173 2222, type: 0x0 flags: 0x9
[   60.586301] [drm:intel_dump_pipe_config [i915]] port clock: 540000, pipe src size: 1920x2160, pixel rate 277250
[   60.586308] [drm:intel_dump_pipe_config [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1
[   60.586314] [drm:intel_dump_pipe_config [i915]] pch pfit: pos: 0x00000000, size: 0x00000000, disabled
[   60.586321] [drm:intel_dump_pipe_config [i915]] ips: 0, double wide: 0
[   60.586328] [drm:intel_dump_pipe_config [i915]] dpll_hw_state: ctrl1: 0x1, cfgcr1: 0x0, cfgcr2: 0x0
[   60.586334] [drm:intel_dump_pipe_config [i915]] planes on this crtc
[   60.586341] [drm:intel_dump_pipe_config [i915]] [PLANE:42:plane 1B] disabled, scaler_id = -1
[   60.586347] [drm:intel_dump_pipe_config [i915]] [PLANE:47:plane 2B] disabled, scaler_id = -1
[   60.586355] [drm:intel_dump_pipe_config [i915]] [PLANE:52:cursor B] FB:110, fb = 256x256 format = AR24 little-endian (0x34325241)
[   60.586362] [drm:intel_dump_pipe_config [i915]] 	scaler:-1 src 1x1+255+255 dst 0x0+255+255
[   60.586371] [drm:intel_atomic_check [i915]] New cdclk calculated to be logical 337500 kHz, actual 337500 kHz
[   60.586378] [drm:intel_atomic_check [i915]] New voltage level calculated to be logical 0, actual 0
[   60.586388] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 105
[   60.586395] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 0 -> 1, off 0, on 1, ms 1
[   60.586403] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:52:cursor B] with fb 110
[   60.586410] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:52:cursor B] visible 1 -> 1, off 1, on 1, ms 1
[   60.586419] [drm:intel_find_shared_dpll [i915]] [CRTC:55:pipe B] sharing existing DPLL 1 (crtc mask 0x00000001, active 3)
[   60.586426] [drm:intel_reference_shared_dpll [i915]] using DPLL 1 for pipe B
[   60.586432] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000a209f3b3 state to 000000004c6c31a8
[   60.586436] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:69:pipe C] 00000000ab1d9edf state to 000000004c6c31a8
[   60.586447] [drm:skl_compute_wm [i915]] [PLANE:42:plane 1B] ddb (0 - 0) -> (446 - 884)
[   60.586450] [drm:drm_atomic_commit [drm]] committing 000000004c6c31a8
[   60.586470] [drm:intel_mst_disable_dp [i915]] active links 2
[   60.586480] [drm:intel_disable_pipe [i915]] disabling pipe B
[   60.603246] [drm:drm_dp_update_payload_part2 [drm_kms_helper]] payload 0 2
[   60.603257] [drm:intel_encoders_post_disable.isra.71 [i915]] active links 1
[   60.603266] [drm:intel_disable_shared_dpll [i915]] disable DPLL 1 (active 3, on? 1) for crtc 55
[   60.603277] [drm:intel_atomic_commit_tail [i915]] [ENCODER:70:DDI B]
[   60.603285] [drm:intel_atomic_commit_tail [i915]] [ENCODER:77:DDI C]
[   60.603292] [drm:intel_atomic_commit_tail [i915]] [ENCODER:79:DP-MST A]
[   60.603315] [drm:intel_atomic_commit_tail [i915]] [ENCODER:80:DP-MST B]
[   60.603322] [drm:intel_atomic_commit_tail [i915]] [ENCODER:81:DP-MST C]
[   60.603329] [drm:intel_atomic_commit_tail [i915]] [ENCODER:85:DDI D]
[   60.603335] [drm:intel_atomic_commit_tail [i915]] [ENCODER:87:DP-MST A]
[   60.603342] [drm:intel_atomic_commit_tail [i915]] [ENCODER:88:DP-MST B]
[   60.603348] [drm:intel_atomic_commit_tail [i915]] [ENCODER:89:DP-MST C]
[   60.603355] [drm:intel_atomic_commit_tail [i915]] [ENCODER:93:DDI E]
[   60.603362] [drm:verify_connector_state.isra.86 [i915]] [CONNECTOR:98:DP-5]
[   60.603370] [drm:verify_single_dpll_state.isra.87 [i915]] DPLL 0
[   60.603377] [drm:verify_single_dpll_state.isra.87 [i915]] DPLL 1
[   60.603384] [drm:verify_single_dpll_state.isra.87 [i915]] DPLL 2
[   60.603391] [drm:verify_single_dpll_state.isra.87 [i915]] DPLL 3
[   60.603412] [drm:intel_enable_shared_dpll [i915]] enable DPLL 1 (active 3, on? 1) for crtc 55
[   60.603421] [drm:intel_mst_pre_enable_dp [i915]] active links 1
[   60.656093] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.656102] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.656169] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.656553] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.656964] [drm:drm_dp_mst_allocate_vcpi [drm_kms_helper]] initing vcpi for pbn=992 slots=25
[   60.657787] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.657795] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.658131] [drm:intel_enable_pipe [i915]] enabling pipe B
[   60.658143] [drm:intel_mst_enable_dp [i915]] active links 2
[   60.658565] [drm:drm_dp_update_payload_part2 [drm_kms_helper]] payload 0 2
[   60.658567] [drm:drm_dp_update_payload_part2 [drm_kms_helper]] payload 1 1
[   60.725034] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.725043] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.725103] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.725486] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.727065] [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00800000, dig 0x10111010, pins 0x00000080, long 0x00000000
[   60.727074] [drm:intel_hpd_irq_handler [i915]] digital hpd port D - short
[   60.727084] [drm:intel_dp_hpd_pulse [i915]] got hpd irq on port D - short
[   60.727464] [drm:intel_dp_check_mst_status [i915]] got esi 02 10 00
[   60.728407] [drm:intel_dp_check_mst_status [i915]] got esi2 02 00 00
[   60.728414] [drm:intel_dp_check_mst_status [i915]] got esi 02 00 00
[   60.741763] [drm:verify_connector_state.isra.86 [i915]] [CONNECTOR:107:DP-7]
[   60.741772] [drm:intel_atomic_commit_tail [i915]] [CRTC:55:pipe B]
[   60.741788] [drm:verify_single_dpll_state.isra.87 [i915]] DPLL 1
[   60.741799] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004c6c31a8
[   60.741804] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004c6c31a8
[   60.741814] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004c6c31a8
[   60.741817] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000001a76fc8b state to 000000004c6c31a8
[   60.741820] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:55:pipe B] to 000000004c6c31a8
[   60.741824] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:107:DP-7] 0000000059f7cee3 state to 000000004c6c31a8
[   60.741826] [drm:drm_atomic_check_only [drm]] checking 000000004c6c31a8
[   60.741830] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:107:DP-7]
[   60.741832] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:107:DP-7] keeps [ENCODER:88:DP-MST B], now on [CRTC:55:pipe B]
[   60.741837] [drm:drm_atomic_commit [drm]] committing 000000004c6c31a8
[   60.758423] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004c6c31a8
[   60.758428] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004c6c31a8
[   60.758438] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004c6c31a8
[   60.758441] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004c6c31a8
[   60.758444] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004c6c31a8
[   60.758447] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004c6c31a8
[   60.758450] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004c6c31a8
[   60.758452] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004c6c31a8
[   60.758455] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004c6c31a8
[   60.758458] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004c6c31a8
[   60.758460] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004c6c31a8
[   60.758463] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004c6c31a8
[   60.758466] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004c6c31a8
[   60.758468] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004c6c31a8
[   60.758471] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004c6c31a8
[   60.758473] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004c6c31a8
[   60.758476] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004c6c31a8
[   60.758479] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004c6c31a8
[   60.758481] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004c6c31a8
[   60.758483] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004c6c31a8
[   60.759082] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:38:cursor A] state 0000000072ad623f
[   60.759092] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 113
[   60.759100] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   60.759630] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:111] for [PLANE:52:cursor B] state 00000000925309eb
[   60.759637] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:52:cursor B] with fb 111
[   60.759644] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:52:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[   60.760271] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 00000000978bd793
[   60.760278] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   60.760284] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   60.760781] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:52:cursor B] state 00000000c8a61261
[   60.760787] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:52:cursor B] with fb 113
[   60.760794] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:52:cursor B] visible 1 -> 1, off 0, on 0, ms 0
[   60.760799] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 00000000925309eb
[   60.760805] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   60.760812] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   60.760817] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004c6c31a8
[   60.760821] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:52:cursor B] 0000000034bdbcc3 state to 000000004c6c31a8
[   60.760824] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000037005537 state to 000000004c6c31a8
[   60.760827] [drm:drm_atomic_set_crtc_for_plane [drm]] Link [PLANE:52:cursor B] state 0000000034bdbcc3 to [NOCRTC]
[   60.760830] [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:52:cursor B] state 0000000034bdbcc3
[   60.760833] [drm:drm_atomic_check_only [drm]] checking 000000004c6c31a8
[   60.760841] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:52:cursor B] with fb -1
[   60.760847] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:52:cursor B] visible 1 -> 0, off 1, on 0, ms 0
[   60.760852] [drm:drm_atomic_commit [drm]] committing 000000004c6c31a8
[   60.760873] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004c6c31a8
[   60.760877] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004c6c31a8
[   66.232275] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4]
[   66.232278] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:95:DP-4] disconnected
[   66.232291] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5]
[   66.232292] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:98:DP-5] disconnected
[   66.232302] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:101:DP-6]
[   66.232310] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   66.232315] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   66.232338] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   66.232365] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   66.232372] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:101:DP-6] probed modes :
[   66.232377] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   66.232388] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:107:DP-7]
[   66.232392] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   66.232395] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   66.232398] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   66.232409] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   66.232472] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:107:DP-7] probed modes :
[   66.232476] [drm:drm_mode_debug_printmodeline [drm]] Modeline 116:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   66.232480] [drm:drm_mode_debug_printmodeline [drm]] Modeline 119:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[   66.232483] [drm:drm_mode_debug_printmodeline [drm]] Modeline 126:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0xa
[   66.232486] [drm:drm_mode_debug_printmodeline [drm]] Modeline 123:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[   66.232489] [drm:drm_mode_debug_printmodeline [drm]] Modeline 118:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   66.232492] [drm:drm_mode_debug_printmodeline [drm]] Modeline 132:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   66.232495] [drm:drm_mode_debug_printmodeline [drm]] Modeline 124:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   66.232499] [drm:drm_mode_debug_printmodeline [drm]] Modeline 117:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   66.232502] [drm:drm_mode_debug_printmodeline [drm]] Modeline 121:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   66.232505] [drm:drm_mode_debug_printmodeline [drm]] Modeline 133:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   66.232508] [drm:drm_mode_debug_printmodeline [drm]] Modeline 134:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   66.232511] [drm:drm_mode_debug_printmodeline [drm]] Modeline 135:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   66.232514] [drm:drm_mode_debug_printmodeline [drm]] Modeline 127:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   66.232517] [drm:drm_mode_debug_printmodeline [drm]] Modeline 128:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   66.232520] [drm:drm_mode_debug_printmodeline [drm]] Modeline 130:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   66.232523] [drm:drm_mode_debug_printmodeline [drm]] Modeline 131:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   66.232582] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1]
[   66.232641] [drm:intel_hdmi_detect [i915]] [CONNECTOR:71:HDMI-A-1]
[   66.233083] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   66.233093] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   66.233407] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   66.233435] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   66.233443] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   66.233451] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[   66.237428] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   66.237435] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[   66.237757] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   66.237764] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   66.238190] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   66.238246] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   66.238249] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1] disconnected
[   66.238261] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1]
[   66.238271] [drm:intel_dp_detect [i915]] [CONNECTOR:78:DP-1]
[   66.238295] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1] disconnected
[   66.238301] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2]
[   66.238310] [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-2]
[   66.238660] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   66.238669] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   66.239111] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   66.239187] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   66.239196] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   66.239206] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[   66.243248] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   66.243255] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[   66.243649] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   66.243672] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   66.244105] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   66.244154] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   66.244157] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2] disconnected
[   66.244166] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2]
[   66.244176] [drm:intel_dp_detect [i915]] [CONNECTOR:86:DP-2]
[   66.244588] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 e4 01 01 01 01 81 00 00 00 00 00 00 00
[   66.245531] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[   66.245539] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000
[   66.245547] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000
[   66.245909] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-80-e1 dev-ID Dp1.2 HW-rev 0.0 SW-rev 0.21 quirks 0x0000
[   66.246188] [drm:intel_dp_detect [i915]] Sink is MST capable
[   66.246191] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2] disconnected
[   66.246197] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3]
[   66.246204] [drm:intel_hdmi_detect [i915]] [CONNECTOR:91:HDMI-A-3]
[   66.246548] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   66.246555] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   66.246834] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   66.246859] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   66.246872] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   66.246898] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[   66.250662] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   66.250670] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[   66.251128] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   66.251137] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   66.251458] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   66.251512] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   66.251514] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3] disconnected
[   66.251520] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3]
[   66.251528] [drm:intel_dp_detect [i915]] [CONNECTOR:94:DP-3]
[   66.251550] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3] disconnected
[   66.251554] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:101:DP-6]
[   66.251559] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   66.251563] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   66.251566] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   66.251573] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   66.251579] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:101:DP-6] probed modes :
[   66.251584] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   66.251703] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:107:DP-7]
[   66.251707] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   66.251710] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   66.251713] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   66.251724] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   66.251770] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:107:DP-7] probed modes :
[   66.251775] [drm:drm_mode_debug_printmodeline [drm]] Modeline 116:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   66.251778] [drm:drm_mode_debug_printmodeline [drm]] Modeline 119:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[   66.251781] [drm:drm_mode_debug_printmodeline [drm]] Modeline 126:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0xa
[   66.251784] [drm:drm_mode_debug_printmodeline [drm]] Modeline 123:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[   66.251787] [drm:drm_mode_debug_printmodeline [drm]] Modeline 118:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   66.251790] [drm:drm_mode_debug_printmodeline [drm]] Modeline 132:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   66.251793] [drm:drm_mode_debug_printmodeline [drm]] Modeline 124:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   66.251796] [drm:drm_mode_debug_printmodeline [drm]] Modeline 117:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   66.251799] [drm:drm_mode_debug_printmodeline [drm]] Modeline 121:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   66.251802] [drm:drm_mode_debug_printmodeline [drm]] Modeline 133:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   66.251805] [drm:drm_mode_debug_printmodeline [drm]] Modeline 134:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   66.251807] [drm:drm_mode_debug_printmodeline [drm]] Modeline 135:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   66.251810] [drm:drm_mode_debug_printmodeline [drm]] Modeline 127:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   66.251813] [drm:drm_mode_debug_printmodeline [drm]] Modeline 128:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   66.251816] [drm:drm_mode_debug_printmodeline [drm]] Modeline 130:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   66.251819] [drm:drm_mode_debug_printmodeline [drm]] Modeline 131:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   71.056388] FS-Cache: Netfs 'nfs' registered for caching
[   71.162463] NFS: Registering the id_resolver key type
[   71.162468] Key type id_resolver registered
[   71.162469] Key type id_legacy registered
[   72.732742] fuse init (API version 7.27)
[   73.183017] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 0000000033e832ba
[   73.183033] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.183041] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.190951] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 00000000925309eb
[   73.190978] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.190986] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.198921] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 0000000033e832ba
[   73.198947] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.198970] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.206862] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 00000000925309eb
[   73.206889] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.206913] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.214924] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 0000000033e832ba
[   73.214950] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.214958] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.222929] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 00000000925309eb
[   73.222955] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.222978] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.230953] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 0000000033e832ba
[   73.230978] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.230986] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.238926] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 00000000925309eb
[   73.238936] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.238944] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.246923] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 0000000033e832ba
[   73.246949] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.246973] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.254932] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 00000000925309eb
[   73.254957] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.254981] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.262826] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 0000000033e832ba
[   73.262837] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.262845] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.270885] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 000000000b278d85
[   73.270912] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.270936] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.278833] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 0000000033e832ba
[   73.278847] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.278860] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.286936] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 000000000b278d85
[   73.286951] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.286959] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.294852] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 0000000033e832ba
[   73.294885] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.294911] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.302945] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 000000000b278d85
[   73.302955] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.302963] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.310851] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 0000000033e832ba
[   73.310885] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.310893] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.318835] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 0000000046a6e03d
[   73.318850] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.318886] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.326839] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 0000000033e832ba
[   73.326855] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.326901] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.334953] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 000000001be786f4
[   73.334966] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.334975] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.342939] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 0000000033e832ba
[   73.342950] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.342958] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.350950] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 000000001be786f4
[   73.350962] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.350970] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.358884] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 0000000033e832ba
[   73.358912] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.358920] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.758953] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 000000001be786f4
[   73.758969] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.758977] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.766927] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 0000000033e832ba
[   73.766970] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.766978] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.782933] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 000000001be786f4
[   73.782959] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.782967] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.790926] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 0000000033e832ba
[   73.790951] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.790959] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.798929] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 000000001be786f4
[   73.798960] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.798968] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.806925] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 0000000033e832ba
[   73.806951] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.806958] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.814926] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 000000001be786f4
[   73.814952] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.814960] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.830940] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 0000000033e832ba
[   73.830950] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.830958] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.838926] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 000000001be786f4
[   73.838952] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.838976] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   73.846926] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 0000000033e832ba
[   73.846952] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   73.846960] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   74.014747] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1]
[   74.014762] [drm:intel_hdmi_detect [i915]] [CONNECTOR:71:HDMI-A-1]
[   74.015173] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   74.015181] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   74.015460] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   74.015489] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   74.015497] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   74.015504] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[   74.019685] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   74.019695] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[   74.020167] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   74.020174] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   74.020476] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   74.020502] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   74.020504] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1] disconnected
[   74.020518] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1]
[   74.020526] [drm:intel_dp_detect [i915]] [CONNECTOR:78:DP-1]
[   74.020550] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1] disconnected
[   74.020555] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2]
[   74.020562] [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-2]
[   74.020910] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   74.020935] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   74.021242] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   74.021266] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   74.021273] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   74.021281] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[   74.025315] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   74.025323] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[   74.025647] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   74.025654] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   74.026094] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   74.026127] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   74.026129] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2] disconnected
[   74.026137] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2]
[   74.026144] [drm:intel_dp_detect [i915]] [CONNECTOR:86:DP-2]
[   74.026556] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 e4 01 01 01 01 81 00 00 00 00 00 00 00
[   74.027497] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[   74.027505] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000
[   74.027513] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000
[   74.027874] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-80-e1 dev-ID Dp1.2 HW-rev 0.0 SW-rev 0.21 quirks 0x0000
[   74.028153] [drm:intel_dp_detect [i915]] Sink is MST capable
[   74.028155] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2] disconnected
[   74.028161] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3]
[   74.028169] [drm:intel_hdmi_detect [i915]] [CONNECTOR:91:HDMI-A-3]
[   74.028471] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   74.028479] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   74.028748] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   74.028775] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   74.028783] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   74.028791] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[   74.032632] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   74.032639] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[   74.033102] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   74.033125] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   74.033431] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   74.033453] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   74.033455] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3] disconnected
[   74.033462] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3]
[   74.033469] [drm:intel_dp_detect [i915]] [CONNECTOR:94:DP-3]
[   74.033491] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3] disconnected
[   74.033496] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:101:DP-6]
[   74.033502] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   74.033506] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   74.033509] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   74.033517] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   74.033524] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:101:DP-6] probed modes :
[   74.033528] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   74.033646] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:107:DP-7]
[   74.033651] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   74.033654] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   74.033656] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   74.033667] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   74.033713] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:107:DP-7] probed modes :
[   74.033717] [drm:drm_mode_debug_printmodeline [drm]] Modeline 116:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   74.033721] [drm:drm_mode_debug_printmodeline [drm]] Modeline 119:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[   74.033724] [drm:drm_mode_debug_printmodeline [drm]] Modeline 126:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0xa
[   74.033727] [drm:drm_mode_debug_printmodeline [drm]] Modeline 123:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[   74.033730] [drm:drm_mode_debug_printmodeline [drm]] Modeline 118:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   74.033732] [drm:drm_mode_debug_printmodeline [drm]] Modeline 132:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   74.033735] [drm:drm_mode_debug_printmodeline [drm]] Modeline 124:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   74.033738] [drm:drm_mode_debug_printmodeline [drm]] Modeline 117:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   74.033741] [drm:drm_mode_debug_printmodeline [drm]] Modeline 121:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   74.033744] [drm:drm_mode_debug_printmodeline [drm]] Modeline 133:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   74.033747] [drm:drm_mode_debug_printmodeline [drm]] Modeline 134:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   74.033749] [drm:drm_mode_debug_printmodeline [drm]] Modeline 135:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   74.033752] [drm:drm_mode_debug_printmodeline [drm]] Modeline 127:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   74.033755] [drm:drm_mode_debug_printmodeline [drm]] Modeline 128:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   74.033758] [drm:drm_mode_debug_printmodeline [drm]] Modeline 130:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   74.033760] [drm:drm_mode_debug_printmodeline [drm]] Modeline 131:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   74.033953] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1]
[   74.033981] [drm:intel_hdmi_detect [i915]] [CONNECTOR:71:HDMI-A-1]
[   74.034330] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   74.034338] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   74.034676] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   74.034712] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   74.034723] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   74.034734] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[   74.039282] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   74.039293] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[   74.039618] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   74.039644] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   74.040015] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   74.040067] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   74.040070] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1] disconnected
[   74.040086] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1]
[   74.040095] [drm:intel_dp_detect [i915]] [CONNECTOR:78:DP-1]
[   74.040134] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1] disconnected
[   74.040140] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2]
[   74.040148] [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-2]
[   74.040478] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   74.040486] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   74.040815] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   74.040843] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   74.040852] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   74.040863] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[   74.045059] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   74.045068] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[   74.045406] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   74.045413] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   74.045755] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   74.045788] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   74.045791] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2] disconnected
[   74.045809] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2]
[   74.045817] [drm:intel_dp_detect [i915]] [CONNECTOR:86:DP-2]
[   74.046235] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 e4 01 01 01 01 81 00 00 00 00 00 00 00
[   74.047176] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[   74.047184] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000
[   74.047210] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000
[   74.047569] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-80-e1 dev-ID Dp1.2 HW-rev 0.0 SW-rev 0.21 quirks 0x0000
[   74.047849] [drm:intel_dp_detect [i915]] Sink is MST capable
[   74.047856] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2] disconnected
[   74.047880] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3]
[   74.047906] [drm:intel_hdmi_detect [i915]] [CONNECTOR:91:HDMI-A-3]
[   74.048288] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   74.048296] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   74.048600] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   74.048634] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   74.048642] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   74.048650] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[   74.052585] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   74.052606] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[   74.053031] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   74.053039] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   74.053358] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   74.053410] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   74.053412] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3] disconnected
[   74.053420] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3]
[   74.053427] [drm:intel_dp_detect [i915]] [CONNECTOR:94:DP-3]
[   74.053449] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3] disconnected
[   74.053457] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:101:DP-6]
[   74.053463] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   74.053468] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   74.053470] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   74.053479] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   74.053485] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:101:DP-6] probed modes :
[   74.053490] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   74.053604] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:107:DP-7]
[   74.053608] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   74.053612] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   74.053614] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   74.053626] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   74.053673] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:107:DP-7] probed modes :
[   74.053677] [drm:drm_mode_debug_printmodeline [drm]] Modeline 116:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   74.053681] [drm:drm_mode_debug_printmodeline [drm]] Modeline 119:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[   74.053684] [drm:drm_mode_debug_printmodeline [drm]] Modeline 126:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0xa
[   74.053687] [drm:drm_mode_debug_printmodeline [drm]] Modeline 123:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[   74.053690] [drm:drm_mode_debug_printmodeline [drm]] Modeline 118:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   74.053693] [drm:drm_mode_debug_printmodeline [drm]] Modeline 132:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   74.053696] [drm:drm_mode_debug_printmodeline [drm]] Modeline 124:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   74.053699] [drm:drm_mode_debug_printmodeline [drm]] Modeline 117:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   74.053702] [drm:drm_mode_debug_printmodeline [drm]] Modeline 121:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   74.053704] [drm:drm_mode_debug_printmodeline [drm]] Modeline 133:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   74.053707] [drm:drm_mode_debug_printmodeline [drm]] Modeline 134:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   74.053710] [drm:drm_mode_debug_printmodeline [drm]] Modeline 135:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   74.053713] [drm:drm_mode_debug_printmodeline [drm]] Modeline 127:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   74.053715] [drm:drm_mode_debug_printmodeline [drm]] Modeline 128:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   74.053718] [drm:drm_mode_debug_printmodeline [drm]] Modeline 130:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   74.053721] [drm:drm_mode_debug_printmodeline [drm]] Modeline 131:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   74.058407] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016f05149
[   74.058413] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000027c7c80e state to 0000000016f05149
[   74.058417] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:41:pipe A] to 0000000016f05149
[   74.058421] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:101:DP-6] 00000000eb429d6c state to 0000000016f05149
[   74.058441] [drm:drm_atomic_check_only [drm]] checking 0000000016f05149
[   74.058447] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:101:DP-6]
[   74.058449] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:101:DP-6] keeps [ENCODER:87:DP-MST A], now on [CRTC:41:pipe A]
[   74.058458] [drm:drm_atomic_commit [drm]] committing 0000000016f05149
[   74.059573] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016f05149
[   74.059579] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016f05149
[   74.059587] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016f05149
[   74.059608] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000a209f3b3 state to 0000000016f05149
[   74.059611] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:55:pipe B] to 0000000016f05149
[   74.059615] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:107:DP-7] 00000000f1f1cc07 state to 0000000016f05149
[   74.059618] [drm:drm_atomic_check_only [drm]] checking 0000000016f05149
[   74.059623] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:107:DP-7]
[   74.059625] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:107:DP-7] keeps [ENCODER:88:DP-MST B], now on [CRTC:55:pipe B]
[   74.059631] [drm:drm_atomic_commit [drm]] committing 0000000016f05149
[   74.061030] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016f05149
[   74.061035] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016f05149
[   74.061209] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016f05149
[   74.061215] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000037005537 state to 0000000016f05149
[   74.061219] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:41:pipe A] to 0000000016f05149
[   74.061225] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:101:DP-6] 0000000059f7cee3 state to 0000000016f05149
[   74.061229] [drm:drm_atomic_check_only [drm]] checking 0000000016f05149
[   74.061234] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:101:DP-6]
[   74.061237] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:101:DP-6] keeps [ENCODER:87:DP-MST A], now on [CRTC:41:pipe A]
[   74.061246] [drm:drm_atomic_commit [drm]] committing 0000000016f05149
[   74.076277] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016f05149
[   74.076284] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016f05149
[   74.076304] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016f05149
[   74.076308] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000027c7c80e state to 0000000016f05149
[   74.076311] [drm:drm_atomic_add_affected_connectors [drm]] Adding all current connectors for [CRTC:55:pipe B] to 0000000016f05149
[   74.076315] [drm:drm_atomic_get_connector_state [drm]] Added [CONNECTOR:107:DP-7] 00000000eb429d6c state to 0000000016f05149
[   74.076317] [drm:drm_atomic_check_only [drm]] checking 0000000016f05149
[   74.076323] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] Updating routing for [CONNECTOR:107:DP-7]
[   74.076325] [drm:drm_atomic_helper_check_modeset [drm_kms_helper]] [CONNECTOR:107:DP-7] keeps [ENCODER:88:DP-MST B], now on [CRTC:55:pipe B]
[   74.076331] [drm:drm_atomic_commit [drm]] committing 0000000016f05149
[   74.077695] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016f05149
[   74.077700] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016f05149
[   74.078975] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1]
[   74.078993] [drm:intel_hdmi_detect [i915]] [CONNECTOR:71:HDMI-A-1]
[   74.079309] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   74.079317] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   74.079584] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[   74.079605] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   74.079613] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   74.079621] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[   74.083780] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[   74.083793] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[   74.084069] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   74.084079] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[   74.084354] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[   74.084388] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   74.084392] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:71:HDMI-A-1] disconnected
[   74.084409] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1]
[   74.084419] [drm:intel_dp_detect [i915]] [CONNECTOR:78:DP-1]
[   74.084442] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:78:DP-1] disconnected
[   74.084449] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2]
[   74.084462] [drm:intel_hdmi_detect [i915]] [CONNECTOR:83:HDMI-A-2]
[   74.084751] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   74.084760] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   74.085078] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   74.085115] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   74.085125] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   74.085135] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpc. force bit now 1
[   74.089371] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpc
[   74.089382] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpc. force bit now 0
[   74.089677] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   74.089687] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   74.090067] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   74.090134] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   74.090136] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:83:HDMI-A-2] disconnected
[   74.090149] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2]
[   74.090158] [drm:intel_dp_detect [i915]] [CONNECTOR:86:DP-2]
[   74.090574] [drm:intel_dp_read_dpcd [i915]] DPCD: 12 14 e4 01 01 01 01 81 00 00 00 00 00 00 00
[   74.091527] [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[   74.091535] [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000
[   74.091543] [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000
[   74.091909] [drm:drm_dp_read_desc [drm_kms_helper]] DP branch: OUI 00-80-e1 dev-ID Dp1.2 HW-rev 0.0 SW-rev 0.21 quirks 0x0000
[   74.092189] [drm:intel_dp_detect [i915]] Sink is MST capable
[   74.092191] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:86:DP-2] disconnected
[   74.092201] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3]
[   74.092210] [drm:intel_hdmi_detect [i915]] [CONNECTOR:91:HDMI-A-3]
[   74.092516] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   74.092524] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   74.092846] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0050 w(1)
[   74.092893] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   74.092902] [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[   74.092912] [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpd. force bit now 1
[   74.097264] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpd
[   74.097273] [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpd. force bit now 0
[   74.097559] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   74.097567] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK on first message, retry
[   74.097832] [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpd] NAK for addr: 0040 w(1)
[   74.097879] [drm:drm_dp_dual_mode_detect [drm_kms_helper]] DP dual mode HDMI ID:  (err -6)
[   74.097885] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:91:HDMI-A-3] disconnected
[   74.097937] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3]
[   74.097948] [drm:intel_dp_detect [i915]] [CONNECTOR:94:DP-3]
[   74.097970] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:94:DP-3] disconnected
[   74.097975] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:101:DP-6]
[   74.097981] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   74.097986] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   74.097989] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   74.097997] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   74.098004] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:101:DP-6] probed modes :
[   74.098008] [drm:drm_mode_debug_printmodeline [drm]] Modeline 106:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   74.098125] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:107:DP-7]
[   74.098130] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   74.098133] [drm:drm_add_edid_modes [drm]] ELD: no CEA Extension found
[   74.098136] [drm:drm_add_display_info [drm]] non_desktop set to 0
[   74.098151] [drm:validate_displayid.constprop.34 [drm]] base revision 0x12, length 121, 0 0
[   74.098202] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:107:DP-7] probed modes :
[   74.098206] [drm:drm_mode_debug_printmodeline [drm]] Modeline 116:"1920x2160" 60 277250 1920 1968 2000 2080 2160 2163 2173 2222 0x48 0x9
[   74.098210] [drm:drm_mode_debug_printmodeline [drm]] Modeline 119:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[   74.098213] [drm:drm_mode_debug_printmodeline [drm]] Modeline 126:"1920x1080" 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0xa
[   74.098216] [drm:drm_mode_debug_printmodeline [drm]] Modeline 123:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[   74.098219] [drm:drm_mode_debug_printmodeline [drm]] Modeline 118:"1680x1050" 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   74.098222] [drm:drm_mode_debug_printmodeline [drm]] Modeline 132:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   74.098225] [drm:drm_mode_debug_printmodeline [drm]] Modeline 124:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   74.098228] [drm:drm_mode_debug_printmodeline [drm]] Modeline 117:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   74.098231] [drm:drm_mode_debug_printmodeline [drm]] Modeline 121:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   74.098234] [drm:drm_mode_debug_printmodeline [drm]] Modeline 133:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   74.098237] [drm:drm_mode_debug_printmodeline [drm]] Modeline 134:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   74.098240] [drm:drm_mode_debug_printmodeline [drm]] Modeline 135:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   74.098243] [drm:drm_mode_debug_printmodeline [drm]] Modeline 127:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   74.098246] [drm:drm_mode_debug_printmodeline [drm]] Modeline 128:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   74.098248] [drm:drm_mode_debug_printmodeline [drm]] Modeline 130:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   74.098251] [drm:drm_mode_debug_printmodeline [drm]] Modeline 131:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   76.475326] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:38:cursor A] state 00000000e02e6316
[   76.475347] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 113
[   76.475355] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   76.476538] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 00000000274b8b4a
[   76.476547] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   76.476554] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   76.477161] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 00000000e02e6316
[   76.477168] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   76.477175] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   76.798592] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:38:cursor A] state 00000000ccc4d9b0
[   76.798612] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 113
[   76.798622] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   76.799090] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:38:cursor A] state 00000000e02e6316
[   76.799128] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 113
[   76.799138] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   76.811597] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 0000000033e832ba
[   76.811610] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   76.811617] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   76.811855] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:38:cursor A] state 00000000e02e6316
[   76.811883] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 110
[   76.811908] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   77.315224] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   77.315259] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000002cd18f32
[   77.315292] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000f5f4af04 state to 000000002cd18f32
[   77.315298] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000009238930d state to 000000002cd18f32
[   77.315304] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 000000009238930d
[   77.315309] [drm:drm_atomic_check_only [drm]] checking 000000002cd18f32
[   77.315433] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   77.315454] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   77.315527] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000002cd18f32 nonblocking
[   77.320190] [drm:intel_atomic_commit [i915]] Preparing state failed with -512
[   77.320345] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000010d7a57d
[   77.320362] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000002df1a2f0 state to 0000000010d7a57d
[   77.320369] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 0000000059e92942 state to 0000000010d7a57d
[   77.320374] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 0000000059e92942
[   77.320380] [drm:drm_atomic_check_only [drm]] checking 0000000010d7a57d
[   77.320480] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   77.320499] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   77.320581] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000010d7a57d nonblocking
[   77.320631] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000002cd18f32
[   77.320643] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000002cd18f32
[   77.322128] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000002cd18f32
[   77.322149] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000f5f4af04 state to 000000002cd18f32
[   77.322152] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000009238930d state to 000000002cd18f32
[   77.322155] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 000000009238930d
[   77.322158] [drm:drm_atomic_check_only [drm]] checking 000000002cd18f32
[   77.322199] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   77.322222] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   77.322248] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000002cd18f32 nonblocking
[   77.326956] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000010d7a57d
[   77.326962] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000010d7a57d
[   77.328339] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000002cd18f32
[   77.328344] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000002cd18f32
[   77.338534] [drm:drm_mode_addfb2 [drm]] [FB:105]
[   77.338544] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000c7292e7a
[   77.338549] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000006cfdc1d3 state to 00000000c7292e7a
[   77.338553] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 0000000033e832ba state to 00000000c7292e7a
[   77.338558] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:28:plane 1A] state 0000000033e832ba
[   77.338563] [drm:drm_atomic_check_only [drm]] checking 00000000c7292e7a
[   77.338589] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 105
[   77.338597] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   77.338606] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000c7292e7a nonblocking
[   77.343938] [drm:intel_atomic_commit [i915]] Preparing state failed with -512
[   77.344125] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000001a118ac4
[   77.344137] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000232ada90 state to 000000001a118ac4
[   77.344143] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000009a2e14aa state to 000000001a118ac4
[   77.344148] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:28:plane 1A] state 000000009a2e14aa
[   77.344153] [drm:drm_atomic_check_only [drm]] checking 000000001a118ac4
[   77.344286] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 105
[   77.344306] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   77.344349] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000001a118ac4 nonblocking
[   77.344396] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000c7292e7a
[   77.344442] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000c7292e7a
[   77.346171] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000c7292e7a
[   77.346177] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000006cfdc1d3 state to 00000000c7292e7a
[   77.346181] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 0000000033e832ba state to 00000000c7292e7a
[   77.346184] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:42:plane 1B] state 0000000033e832ba
[   77.346188] [drm:drm_atomic_check_only [drm]] checking 00000000c7292e7a
[   77.346208] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 105
[   77.346216] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   77.346225] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000c7292e7a nonblocking
[   77.360260] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000001a118ac4
[   77.360266] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000001a118ac4
[   77.361720] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000c7292e7a
[   77.361741] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000c7292e7a
[   77.397778] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   77.397790] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000c7292e7a
[   77.397817] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000f5f4af04 state to 00000000c7292e7a
[   77.397821] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 0000000017ac1407 state to 00000000c7292e7a
[   77.397825] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 0000000017ac1407
[   77.397828] [drm:drm_atomic_check_only [drm]] checking 00000000c7292e7a
[   77.397865] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   77.397931] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   77.397996] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000c7292e7a nonblocking
[   77.402965] [drm:intel_atomic_commit [i915]] Preparing state failed with -512
[   77.403084] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000c7292e7a
[   77.403100] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000c7292e7a
[   77.403179] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000c7292e7a
[   77.403188] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000f5f4af04 state to 00000000c7292e7a
[   77.403193] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 0000000017ac1407 state to 00000000c7292e7a
[   77.403197] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 0000000017ac1407
[   77.403201] [drm:drm_atomic_check_only [drm]] checking 00000000c7292e7a
[   77.403331] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   77.403371] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   77.403408] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000c7292e7a nonblocking
[   77.406585] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000010d7a57d
[   77.406591] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000037005537 state to 0000000010d7a57d
[   77.406595] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000001f23c31b state to 0000000010d7a57d
[   77.406598] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 000000001f23c31b
[   77.406602] [drm:drm_atomic_check_only [drm]] checking 0000000010d7a57d
[   77.406618] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   77.406626] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   77.406634] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000010d7a57d nonblocking
[   77.410233] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000c7292e7a
[   77.410256] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000c7292e7a
[   77.411648] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000010d7a57d
[   77.411654] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000010d7a57d
[   77.574063] [drm:drm_mode_addfb2 [drm]] [FB:105]
[   77.574072] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000037f72490
[   77.574076] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000008c1bec57 state to 0000000037f72490
[   77.574080] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000005198399c state to 0000000037f72490
[   77.574083] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:28:plane 1A] state 000000005198399c
[   77.574087] [drm:drm_atomic_check_only [drm]] checking 0000000037f72490
[   77.574122] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 105
[   77.574131] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   77.574140] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000037f72490 nonblocking
[   77.574175] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000cbe1ba72
[   77.574180] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000a89f2f25 state to 00000000cbe1ba72
[   77.574182] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000b048fe09 state to 00000000cbe1ba72
[   77.574186] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:42:plane 1B] state 00000000b048fe09
[   77.574188] [drm:drm_atomic_check_only [drm]] checking 00000000cbe1ba72
[   77.574198] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 105
[   77.574206] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   77.574210] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000cbe1ba72 nonblocking
[   77.593659] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000037f72490
[   77.593667] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000037f72490
[   77.595142] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000cbe1ba72
[   77.595148] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000cbe1ba72
[   77.654688] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   77.654697] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000a83c6e21
[   77.654701] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000001e7a031b state to 00000000a83c6e21
[   77.654705] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000044885b0 state to 00000000a83c6e21
[   77.654708] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 00000000044885b0
[   77.654711] [drm:drm_atomic_check_only [drm]] checking 00000000a83c6e21
[   77.654730] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   77.654738] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   77.654747] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000a83c6e21 nonblocking
[   77.654768] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000b0ea7514
[   77.654771] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000002e3dbefe state to 00000000b0ea7514
[   77.654774] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000aa049bf4 state to 00000000b0ea7514
[   77.654777] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 00000000aa049bf4
[   77.654780] [drm:drm_atomic_check_only [drm]] checking 00000000b0ea7514
[   77.654790] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   77.654798] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   77.654802] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000b0ea7514 nonblocking
[   77.677073] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000a83c6e21
[   77.677088] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000a83c6e21
[   77.678484] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000b0ea7514
[   77.678494] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000b0ea7514
[   77.678734] [drm:drm_mode_addfb2 [drm]] [FB:129]
[   77.678745] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000bee7ca21
[   77.678752] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000002cd18f32 state to 00000000bee7ca21
[   77.678755] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 0000000027c339c1 state to 00000000bee7ca21
[   77.678759] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:28:plane 1A] state 0000000027c339c1
[   77.678763] [drm:drm_atomic_check_only [drm]] checking 00000000bee7ca21
[   77.678831] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 129
[   77.678845] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   77.678915] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000bee7ca21 nonblocking
[   77.678964] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000002df1a2f0
[   77.678970] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000001a118ac4 state to 000000002df1a2f0
[   77.678992] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 0000000017d81c15 state to 000000002df1a2f0
[   77.678995] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:42:plane 1B] state 0000000017d81c15
[   77.678998] [drm:drm_atomic_check_only [drm]] checking 000000002df1a2f0
[   77.679060] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 129
[   77.679069] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   77.679076] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000002df1a2f0 nonblocking
[   77.693827] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000bee7ca21
[   77.693840] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000bee7ca21
[   77.695204] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000002df1a2f0
[   77.695219] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000002df1a2f0
[   77.695292] [drm:drm_mode_addfb2 [drm]] [FB:105]
[   77.695314] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000ca1036a9
[   77.695323] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000c3bd31d1 state to 00000000ca1036a9
[   77.695358] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000ead5ae1b state to 00000000ca1036a9
[   77.695363] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:28:plane 1A] state 00000000ead5ae1b
[   77.695367] [drm:drm_atomic_check_only [drm]] checking 00000000ca1036a9
[   77.695476] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 105
[   77.695492] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   77.695519] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000ca1036a9 nonblocking
[   77.695606] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000010720fa5
[   77.695611] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000024c8d455 state to 0000000010720fa5
[   77.695616] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000007895025d state to 0000000010720fa5
[   77.695620] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:42:plane 1B] state 000000007895025d
[   77.695622] [drm:drm_atomic_check_only [drm]] checking 0000000010720fa5
[   77.695667] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 105
[   77.695675] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   77.695693] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000010720fa5 nonblocking
[   77.710420] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000ca1036a9
[   77.710433] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000ca1036a9
[   77.711809] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000010720fa5
[   77.711820] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000010720fa5
[   77.712059] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   77.712076] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e48f5a03
[   77.712087] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000003f4292c9 state to 00000000e48f5a03
[   77.712092] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000001f23c31b state to 00000000e48f5a03
[   77.712098] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 000000001f23c31b
[   77.712103] [drm:drm_atomic_check_only [drm]] checking 00000000e48f5a03
[   77.712187] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   77.712198] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   77.712226] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000e48f5a03 nonblocking
[   77.712276] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000bfe375d9
[   77.712282] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000016f05149 state to 00000000bfe375d9
[   77.712287] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000eb8a0aae state to 00000000bfe375d9
[   77.712292] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 00000000eb8a0aae
[   77.712296] [drm:drm_atomic_check_only [drm]] checking 00000000bfe375d9
[   77.712344] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   77.712356] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   77.712364] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000bfe375d9 nonblocking
[   77.726994] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e48f5a03
[   77.727001] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e48f5a03
[   77.728404] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000bfe375d9
[   77.728409] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000bfe375d9
[   77.782727] [drm:drm_mode_addfb2 [drm]] [FB:105]
[   77.782754] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000cbe1ba72
[   77.782758] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000008fcadd17 state to 00000000cbe1ba72
[   77.782762] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000156bab7d state to 00000000cbe1ba72
[   77.782766] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:28:plane 1A] state 00000000156bab7d
[   77.782770] [drm:drm_atomic_check_only [drm]] checking 00000000cbe1ba72
[   77.782791] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 105
[   77.782799] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   77.782808] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000cbe1ba72 nonblocking
[   77.782827] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000d1e6cf88
[   77.782830] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000050caeebf state to 00000000d1e6cf88
[   77.782833] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 0000000061292ff8 state to 00000000d1e6cf88
[   77.782858] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:42:plane 1B] state 0000000061292ff8
[   77.782888] [drm:drm_atomic_check_only [drm]] checking 00000000d1e6cf88
[   77.782904] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 105
[   77.782916] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   77.782942] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000d1e6cf88 nonblocking
[   77.793657] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000cbe1ba72
[   77.793665] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000cbe1ba72
[   77.795071] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000d1e6cf88
[   77.795095] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000d1e6cf88
[   77.800564] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   77.800572] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000010417da8
[   77.800577] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000015179b77 state to 0000000010417da8
[   77.800582] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000b8cdb50a state to 0000000010417da8
[   77.800586] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 00000000b8cdb50a
[   77.800589] [drm:drm_atomic_check_only [drm]] checking 0000000010417da8
[   77.800611] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   77.800619] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   77.800627] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000010417da8 nonblocking
[   77.800645] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000b00108d5
[   77.800649] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000d624ce4f state to 00000000b00108d5
[   77.800652] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000a71de2cf state to 00000000b00108d5
[   77.800655] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 00000000a71de2cf
[   77.800658] [drm:drm_atomic_check_only [drm]] checking 00000000b00108d5
[   77.800667] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   77.800674] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   77.800679] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000b00108d5 nonblocking
[   77.810361] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000010417da8
[   77.810369] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000010417da8
[   77.811781] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000b00108d5
[   77.811787] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000b00108d5
[   77.875905] [drm:drm_mode_addfb2 [drm]] [FB:105]
[   77.875930] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000cbe1ba72
[   77.875935] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000003f4292c9 state to 00000000cbe1ba72
[   77.875966] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 0000000020cd6312 state to 00000000cbe1ba72
[   77.875971] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:28:plane 1A] state 0000000020cd6312
[   77.875975] [drm:drm_atomic_check_only [drm]] checking 00000000cbe1ba72
[   77.875991] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 105
[   77.875999] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   77.876012] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000cbe1ba72 nonblocking
[   77.876043] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000002cd18f32
[   77.876047] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000002df1a2f0 state to 000000002cd18f32
[   77.876067] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000415394ac state to 000000002cd18f32
[   77.876071] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:42:plane 1B] state 00000000415394ac
[   77.876089] [drm:drm_atomic_check_only [drm]] checking 000000002cd18f32
[   77.876115] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 105
[   77.876121] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   77.876126] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000002cd18f32 nonblocking
[   77.893663] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000cbe1ba72
[   77.893672] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000cbe1ba72
[   77.895138] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000002cd18f32
[   77.895156] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000002cd18f32
[   77.917595] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   77.917605] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000006855f0e0
[   77.917609] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000000855fe85 state to 000000006855f0e0
[   77.917613] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000656c3cb6 state to 000000006855f0e0
[   77.917617] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 00000000656c3cb6
[   77.917620] [drm:drm_atomic_check_only [drm]] checking 000000006855f0e0
[   77.917657] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   77.917666] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   77.917674] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000006855f0e0 nonblocking
[   77.917691] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000009669c087
[   77.917702] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000d065e618 state to 000000009669c087
[   77.917706] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000004c53e935 state to 000000009669c087
[   77.917710] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 000000004c53e935
[   77.917712] [drm:drm_atomic_check_only [drm]] checking 000000009669c087
[   77.917722] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   77.917730] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   77.917735] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000009669c087 nonblocking
[   77.927069] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000006855f0e0
[   77.927075] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000006855f0e0
[   77.928470] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000009669c087
[   77.928476] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000009669c087
[   78.034429] [drm:drm_mode_addfb2 [drm]] [FB:105]
[   78.034437] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000cfe1e3c7
[   78.034459] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000024c8d455 state to 00000000cfe1e3c7
[   78.034463] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000c844a558 state to 00000000cfe1e3c7
[   78.034466] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:28:plane 1A] state 00000000c844a558
[   78.034470] [drm:drm_atomic_check_only [drm]] checking 00000000cfe1e3c7
[   78.034504] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 105
[   78.034532] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   78.034558] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000cfe1e3c7 nonblocking
[   78.034593] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000bfe375d9
[   78.034604] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000010720fa5 state to 00000000bfe375d9
[   78.034608] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000f61287f4 state to 00000000bfe375d9
[   78.034611] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:42:plane 1B] state 00000000f61287f4
[   78.034614] [drm:drm_atomic_check_only [drm]] checking 00000000bfe375d9
[   78.034641] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 105
[   78.034648] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   78.034654] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000bfe375d9 nonblocking
[   78.045210] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000bfe375d9
[   78.045220] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000bfe375d9
[   78.060533] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000cfe1e3c7
[   78.060548] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000cfe1e3c7
[   78.060652] [drm:drm_mode_addfb2 [drm]] [FB:129]
[   78.060666] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e48f5a03
[   78.060673] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000c3bd31d1 state to 00000000e48f5a03
[   78.060678] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000007a5efa9e state to 00000000e48f5a03
[   78.060682] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:28:plane 1A] state 000000007a5efa9e
[   78.060685] [drm:drm_atomic_check_only [drm]] checking 00000000e48f5a03
[   78.060756] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 129
[   78.060767] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   78.060787] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000e48f5a03 nonblocking
[   78.060909] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000037280c51
[   78.060932] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000008604459f state to 0000000037280c51
[   78.060956] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 0000000089c91029 state to 0000000037280c51
[   78.060962] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:42:plane 1B] state 0000000089c91029
[   78.060965] [drm:drm_atomic_check_only [drm]] checking 0000000037280c51
[   78.061021] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 129
[   78.061032] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   78.061040] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000037280c51 nonblocking
[   78.077166] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e48f5a03
[   78.077174] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e48f5a03
[   78.078510] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000037280c51
[   78.078539] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000037280c51
[   78.337850] [drm:drm_mode_addfb2 [drm]] [FB:105]
[   78.337913] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000cbdd6be4
[   78.337922] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000933151ca state to 00000000cbdd6be4
[   78.337927] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 0000000070c1e8cc state to 00000000cbdd6be4
[   78.337930] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:28:plane 1A] state 0000000070c1e8cc
[   78.337936] [drm:drm_atomic_check_only [drm]] checking 00000000cbdd6be4
[   78.338044] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 105
[   78.338056] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   78.338082] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000cbdd6be4 nonblocking
[   78.338145] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000005bfabc9a
[   78.338167] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000070916787 state to 000000005bfabc9a
[   78.338172] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000edbb7fd3 state to 000000005bfabc9a
[   78.338190] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:42:plane 1B] state 00000000edbb7fd3
[   78.338193] [drm:drm_atomic_check_only [drm]] checking 000000005bfabc9a
[   78.338235] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 105
[   78.338242] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   78.338251] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000005bfabc9a nonblocking
[   78.360601] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000cbdd6be4
[   78.360623] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000cbdd6be4
[   78.362006] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000005bfabc9a
[   78.362018] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000005bfabc9a
[   78.367216] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   78.367234] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000001e7a031b
[   78.367258] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000001606d56e state to 000000001e7a031b
[   78.367263] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000002d20dead state to 000000001e7a031b
[   78.367267] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 000000002d20dead
[   78.367271] [drm:drm_atomic_check_only [drm]] checking 000000001e7a031b
[   78.367358] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   78.367377] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   78.367398] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000001e7a031b nonblocking
[   78.367436] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000002b698523
[   78.367442] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000009e6e8f0 state to 000000002b698523
[   78.367447] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000c200d38c state to 000000002b698523
[   78.367450] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 00000000c200d38c
[   78.367469] [drm:drm_atomic_check_only [drm]] checking 000000002b698523
[   78.367492] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   78.367502] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   78.367508] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000002b698523 nonblocking
[   78.393842] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000001e7a031b
[   78.393925] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000001e7a031b
[   78.395313] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000002b698523
[   78.395324] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000002b698523
[   78.395448] [drm:drm_mode_addfb2 [drm]] [FB:129]
[   78.395459] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000570e8d12
[   78.395465] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000232ada90 state to 00000000570e8d12
[   78.395487] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000001491fe2e state to 00000000570e8d12
[   78.395509] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:28:plane 1A] state 000000001491fe2e
[   78.395512] [drm:drm_atomic_check_only [drm]] checking 00000000570e8d12
[   78.395546] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 129
[   78.395554] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   78.395568] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000570e8d12 nonblocking
[   78.395647] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000000c4348d7
[   78.395651] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000c7292e7a state to 000000000c4348d7
[   78.395672] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 0000000032007ecb state to 000000000c4348d7
[   78.395677] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:42:plane 1B] state 0000000032007ecb
[   78.395697] [drm:drm_atomic_check_only [drm]] checking 000000000c4348d7
[   78.395737] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 129
[   78.395746] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   78.395754] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000000c4348d7 nonblocking
[   78.410642] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000570e8d12
[   78.410656] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000570e8d12
[   78.412070] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000000c4348d7
[   78.412085] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000000c4348d7
[   78.412230] [drm:drm_mode_addfb2 [drm]] [FB:105]
[   78.412249] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000006cfdc1d3
[   78.412273] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000037f72490 state to 000000006cfdc1d3
[   78.412277] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000b3d0f8c6 state to 000000006cfdc1d3
[   78.412283] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:28:plane 1A] state 00000000b3d0f8c6
[   78.412287] [drm:drm_atomic_check_only [drm]] checking 000000006cfdc1d3
[   78.412346] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 105
[   78.412357] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   78.412390] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000006cfdc1d3 nonblocking
[   78.412429] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000f5f4af04
[   78.412434] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000706906a9 state to 00000000f5f4af04
[   78.412437] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000004be706ca state to 00000000f5f4af04
[   78.412442] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:42:plane 1B] state 000000004be706ca
[   78.412445] [drm:drm_atomic_check_only [drm]] checking 00000000f5f4af04
[   78.412464] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 105
[   78.412475] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   78.412482] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000f5f4af04 nonblocking
[   78.444062] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000006cfdc1d3
[   78.444083] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000006cfdc1d3
[   78.445346] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000f5f4af04
[   78.445387] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000f5f4af04
[   78.446313] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   78.446342] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016f05149
[   78.446368] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000b00108d5 state to 0000000016f05149
[   78.446378] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000fccd3bec state to 0000000016f05149
[   78.446383] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 00000000fccd3bec
[   78.446387] [drm:drm_atomic_check_only [drm]] checking 0000000016f05149
[   78.446506] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   78.446516] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   78.446539] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000016f05149 nonblocking
[   78.446599] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000050caeebf
[   78.446605] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000076b5e562 state to 0000000050caeebf
[   78.446609] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000ceffec2c state to 0000000050caeebf
[   78.446612] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 00000000ceffec2c
[   78.446615] [drm:drm_atomic_check_only [drm]] checking 0000000050caeebf
[   78.446628] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   78.446636] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   78.446642] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000050caeebf nonblocking
[   78.460478] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016f05149
[   78.460486] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016f05149
[   78.462084] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000050caeebf
[   78.462101] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000050caeebf
[   78.480413] [drm:drm_mode_addfb2 [drm]] [FB:129]
[   78.480438] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000037005537
[   78.480448] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000010d7a57d state to 0000000037005537
[   78.480453] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000002e6bcb0d state to 0000000037005537
[   78.480457] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:28:plane 1A] state 000000002e6bcb0d
[   78.480461] [drm:drm_atomic_check_only [drm]] checking 0000000037005537
[   78.480577] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 129
[   78.480585] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   78.480626] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000037005537 nonblocking
[   78.480684] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000051960ec8
[   78.480702] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000005cdde32d state to 0000000051960ec8
[   78.480708] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000000d1ae023 state to 0000000051960ec8
[   78.480711] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:42:plane 1B] state 000000000d1ae023
[   78.480714] [drm:drm_atomic_check_only [drm]] checking 0000000051960ec8
[   78.480725] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 129
[   78.480732] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   78.480738] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000051960ec8 nonblocking
[   78.494046] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000037005537
[   78.494066] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000037005537
[   78.495390] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000051960ec8
[   78.495420] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000051960ec8
[   78.495643] [drm:drm_mode_addfb2 [drm]] [FB:105]
[   78.495674] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e0f36e63
[   78.495700] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000004650686d state to 00000000e0f36e63
[   78.495706] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000002d472962 state to 00000000e0f36e63
[   78.495714] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:28:plane 1A] state 000000002d472962
[   78.495720] [drm:drm_atomic_check_only [drm]] checking 00000000e0f36e63
[   78.496001] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 105
[   78.496115] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   78.496194] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000e0f36e63 nonblocking
[   78.496316] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000069499ec0
[   78.496327] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000002da43ec7 state to 0000000069499ec0
[   78.496334] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 0000000008a1d44a state to 0000000069499ec0
[   78.496340] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:42:plane 1B] state 0000000008a1d44a
[   78.496343] [drm:drm_atomic_check_only [drm]] checking 0000000069499ec0
[   78.496470] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 105
[   78.496481] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   78.496513] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000069499ec0 nonblocking
[   78.510559] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e0f36e63
[   78.510594] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e0f36e63
[   78.512069] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000069499ec0
[   78.512083] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000069499ec0
[   78.525985] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   78.526016] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000740db7e0
[   78.526053] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000037280c51 state to 00000000740db7e0
[   78.526057] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000f54f42c4 state to 00000000740db7e0
[   78.526061] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 00000000f54f42c4
[   78.526065] [drm:drm_atomic_check_only [drm]] checking 00000000740db7e0
[   78.526165] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   78.526174] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   78.526196] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000740db7e0 nonblocking
[   78.526289] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000010720fa5
[   78.526310] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000ebe8de01 state to 0000000010720fa5
[   78.526330] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000ec9bc11d state to 0000000010720fa5
[   78.526334] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 00000000ec9bc11d
[   78.526337] [drm:drm_atomic_check_only [drm]] checking 0000000010720fa5
[   78.526376] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   78.526386] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   78.526395] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000010720fa5 nonblocking
[   78.560586] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000740db7e0
[   78.560599] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000740db7e0
[   78.562049] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000010720fa5
[   78.562070] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000010720fa5
[   78.562226] [drm:drm_mode_addfb2 [drm]] [FB:129]
[   78.562258] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004ed2ba04
[   78.562269] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000008697e970 state to 000000004ed2ba04
[   78.562273] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 0000000018f261e6 state to 000000004ed2ba04
[   78.562278] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:28:plane 1A] state 0000000018f261e6
[   78.562281] [drm:drm_atomic_check_only [drm]] checking 000000004ed2ba04
[   78.562447] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 129
[   78.562473] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   78.562514] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000004ed2ba04 nonblocking
[   78.562682] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e0373c05
[   78.562698] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000613f12d3 state to 00000000e0373c05
[   78.562706] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000dc76c088 state to 00000000e0373c05
[   78.562712] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:42:plane 1B] state 00000000dc76c088
[   78.562715] [drm:drm_atomic_check_only [drm]] checking 00000000e0373c05
[   78.562820] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 129
[   78.562921] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   78.563034] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000e0373c05 nonblocking
[   78.593894] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004ed2ba04
[   78.593902] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004ed2ba04
[   78.595318] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e0373c05
[   78.595323] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e0373c05
[   79.288124] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:38:cursor A] state 0000000008c211dc
[   79.288143] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 105
[   79.288151] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   79.288400] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:105] for [PLANE:38:cursor A] state 00000000e02e6316
[   79.288408] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:38:cursor A] with fb 105
[   79.288415] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:38:cursor A] visible 1 -> 1, off 0, on 0, ms 0
[   79.293150] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   79.293164] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000bfe375d9
[   79.293169] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000ebe8de01 state to 00000000bfe375d9
[   79.293173] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000a206fd45 state to 00000000bfe375d9
[   79.293177] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 00000000a206fd45
[   79.293180] [drm:drm_atomic_check_only [drm]] checking 00000000bfe375d9
[   79.293200] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   79.293224] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   79.293234] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000bfe375d9 nonblocking
[   79.293251] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e0373c05
[   79.293254] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000740db7e0 state to 00000000e0373c05
[   79.293273] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000003cee19aa state to 00000000e0373c05
[   79.293276] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 000000003cee19aa
[   79.293279] [drm:drm_atomic_check_only [drm]] checking 00000000e0373c05
[   79.293304] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   79.293311] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   79.293317] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000e0373c05 nonblocking
[   79.310899] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000bfe375d9
[   79.310944] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000bfe375d9
[   79.312178] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e0373c05
[   79.312194] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e0373c05
[   79.314018] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   79.314037] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000002da43ec7
[   79.314047] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000001a118ac4 state to 000000002da43ec7
[   79.314052] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000e01b5d25 state to 000000002da43ec7
[   79.314056] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 00000000e01b5d25
[   79.314062] [drm:drm_atomic_check_only [drm]] checking 000000002da43ec7
[   79.314167] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   79.314181] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   79.314215] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000002da43ec7 nonblocking
[   79.314379] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000b0ea7514
[   79.314390] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000a89f2f25 state to 00000000b0ea7514
[   79.314398] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000005c8c9b9a state to 00000000b0ea7514
[   79.314406] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 000000005c8c9b9a
[   79.314409] [drm:drm_atomic_check_only [drm]] checking 00000000b0ea7514
[   79.314452] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   79.314461] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   79.314470] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000b0ea7514 nonblocking
[   79.327549] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000002da43ec7
[   79.327572] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000002da43ec7
[   79.328950] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000b0ea7514
[   79.328967] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000b0ea7514
[   79.329068] [drm:drm_mode_addfb2 [drm]] [FB:129]
[   79.329081] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004b534e6d
[   79.329089] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000002cd18f32 state to 000000004b534e6d
[   79.329093] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000005a1b7649 state to 000000004b534e6d
[   79.329098] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:28:plane 1A] state 000000005a1b7649
[   79.329101] [drm:drm_atomic_check_only [drm]] checking 000000004b534e6d
[   79.329190] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 129
[   79.329199] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   79.329238] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000004b534e6d nonblocking
[   79.329283] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000078975063
[   79.329288] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000d1e6cf88 state to 0000000078975063
[   79.329292] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000274b8b4a state to 0000000078975063
[   79.329296] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:42:plane 1B] state 00000000274b8b4a
[   79.329298] [drm:drm_atomic_check_only [drm]] checking 0000000078975063
[   79.329330] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 129
[   79.329338] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   79.329351] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000078975063 nonblocking
[   79.344122] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004b534e6d
[   79.344150] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004b534e6d
[   79.345520] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000078975063
[   79.345533] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000078975063
[   79.345981] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   79.346040] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008fcadd17
[   79.346047] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000089c04add state to 000000008fcadd17
[   79.346051] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000dba9534d state to 000000008fcadd17
[   79.346055] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 00000000dba9534d
[   79.346058] [drm:drm_atomic_check_only [drm]] checking 000000008fcadd17
[   79.346168] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   79.346181] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   79.346204] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000008fcadd17 nonblocking
[   79.346269] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000b36054a0
[   79.346278] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000076bffd33 state to 00000000b36054a0
[   79.346282] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000009238930d state to 00000000b36054a0
[   79.346285] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 000000009238930d
[   79.346288] [drm:drm_atomic_check_only [drm]] checking 00000000b36054a0
[   79.346342] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   79.346358] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   79.346366] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000b36054a0 nonblocking
[   79.360788] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008fcadd17
[   79.360805] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008fcadd17
[   79.362196] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000b36054a0
[   79.362206] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000b36054a0
[   79.362395] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   79.362416] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000be1deabf
[   79.362427] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000007334174c state to 00000000be1deabf
[   79.362432] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 0000000000ca8fa2 state to 00000000be1deabf
[   79.362436] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 0000000000ca8fa2
[   79.362441] [drm:drm_atomic_check_only [drm]] checking 00000000be1deabf
[   79.362592] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   79.362603] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   79.362622] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000be1deabf nonblocking
[   79.362693] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000005143603b
[   79.362697] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000e1a453e1 state to 000000005143603b
[   79.362701] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000009bf6dff7 state to 000000005143603b
[   79.362705] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 000000009bf6dff7
[   79.362707] [drm:drm_atomic_check_only [drm]] checking 000000005143603b
[   79.362743] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   79.362752] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   79.362759] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000005143603b nonblocking
[   79.377417] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000be1deabf
[   79.377425] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000be1deabf
[   79.378810] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000005143603b
[   79.378816] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000005143603b
[   79.792040] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   79.792049] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000e0373c05
[   79.792054] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000005cdde32d state to 00000000e0373c05
[   79.792057] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000945944a2 state to 00000000e0373c05
[   79.792077] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 00000000945944a2
[   79.792080] [drm:drm_atomic_check_only [drm]] checking 00000000e0373c05
[   79.792098] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   79.792106] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   79.792114] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000e0373c05 nonblocking
[   79.792152] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000076bffd33
[   79.792156] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000005143603b state to 0000000076bffd33
[   79.792159] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000008fe66a92 state to 0000000076bffd33
[   79.792162] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 000000008fe66a92
[   79.792182] [drm:drm_atomic_check_only [drm]] checking 0000000076bffd33
[   79.792191] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   79.792198] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   79.792203] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000076bffd33 nonblocking
[   79.810825] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000e0373c05
[   79.810832] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000e0373c05
[   79.812264] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000076bffd33
[   79.812289] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000076bffd33
[   80.307988] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   80.307996] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000847fb9fb
[   80.308001] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000007ff911c6 state to 00000000847fb9fb
[   80.308004] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 0000000049b71273 state to 00000000847fb9fb
[   80.308008] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 0000000049b71273
[   80.308011] [drm:drm_atomic_check_only [drm]] checking 00000000847fb9fb
[   80.308048] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   80.308056] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   80.308064] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000847fb9fb nonblocking
[   80.308096] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000b52fcec8
[   80.308121] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000ca1036a9 state to 00000000b52fcec8
[   80.308125] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000002e67d5c4 state to 00000000b52fcec8
[   80.308144] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 000000002e67d5c4
[   80.308146] [drm:drm_atomic_check_only [drm]] checking 00000000b52fcec8
[   80.308173] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   80.308180] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   80.308186] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000b52fcec8 nonblocking
[   80.327626] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000847fb9fb
[   80.327633] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000847fb9fb
[   80.329026] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000b52fcec8
[   80.329032] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000b52fcec8
[   80.492048] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   80.492073] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000010d7a57d
[   80.492078] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000d49079bd state to 0000000010d7a57d
[   80.492081] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000e6dd2296 state to 0000000010d7a57d
[   80.492084] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 00000000e6dd2296
[   80.492088] [drm:drm_atomic_check_only [drm]] checking 0000000010d7a57d
[   80.492134] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   80.492142] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   80.492151] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000010d7a57d nonblocking
[   80.492207] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000c0159172
[   80.492211] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000e0f36e63 state to 00000000c0159172
[   80.492214] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000f1013108 state to 00000000c0159172
[   80.492217] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 00000000f1013108
[   80.492220] [drm:drm_atomic_check_only [drm]] checking 00000000c0159172
[   80.492246] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   80.492254] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   80.492259] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000c0159172 nonblocking
[   80.510968] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000010d7a57d
[   80.510975] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000010d7a57d
[   80.512391] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000c0159172
[   80.512396] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000c0159172
[   80.587875] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   80.587901] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000613f12d3
[   80.587908] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000037005537 state to 00000000613f12d3
[   80.587928] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000296490bb state to 00000000613f12d3
[   80.587931] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 00000000296490bb
[   80.587934] [drm:drm_atomic_check_only [drm]] checking 00000000613f12d3
[   80.588019] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   80.588028] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   80.588048] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000613f12d3 nonblocking
[   80.588121] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000933151ca
[   80.588144] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000001e7a031b state to 00000000933151ca
[   80.588148] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000d3aabd6e state to 00000000933151ca
[   80.588152] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 00000000d3aabd6e
[   80.588171] [drm:drm_atomic_check_only [drm]] checking 00000000933151ca
[   80.588199] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   80.588223] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   80.588245] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000933151ca nonblocking
[   80.611020] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000613f12d3
[   80.611026] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000613f12d3
[   80.612389] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000933151ca
[   80.612395] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000933151ca
[   80.692443] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   80.692451] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000d624ce4f
[   80.692455] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000051960ec8 state to 00000000d624ce4f
[   80.692458] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000220ad2bd state to 00000000d624ce4f
[   80.692461] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 00000000220ad2bd
[   80.692464] [drm:drm_atomic_check_only [drm]] checking 00000000d624ce4f
[   80.692480] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   80.692487] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   80.692495] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000d624ce4f nonblocking
[   80.692525] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000076b5e562
[   80.692528] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000051cc9819 state to 0000000076b5e562
[   80.692549] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 0000000005fce473 state to 0000000076b5e562
[   80.692552] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 0000000005fce473
[   80.692554] [drm:drm_atomic_check_only [drm]] checking 0000000076b5e562
[   80.692583] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   80.692590] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   80.692595] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000076b5e562 nonblocking
[   80.711029] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000d624ce4f
[   80.711035] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000d624ce4f
[   80.712405] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000076b5e562
[   80.712410] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000076b5e562
[   80.787768] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   80.787776] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000a85474f1
[   80.787781] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000000c4348d7 state to 00000000a85474f1
[   80.787784] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000e0567d72 state to 00000000a85474f1
[   80.787787] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 00000000e0567d72
[   80.787790] [drm:drm_atomic_check_only [drm]] checking 00000000a85474f1
[   80.787806] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   80.787814] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   80.787821] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000a85474f1 nonblocking
[   80.787836] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000232ada90
[   80.787862] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000006cfdc1d3 state to 00000000232ada90
[   80.787868] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000004411bc73 state to 00000000232ada90
[   80.787890] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 000000004411bc73
[   80.787910] [drm:drm_atomic_check_only [drm]] checking 00000000232ada90
[   80.787942] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   80.787950] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   80.787957] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000232ada90 nonblocking
[   80.811036] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000a85474f1
[   80.811042] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000a85474f1
[   80.812424] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000232ada90
[   80.812447] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000f74a7c11
[   80.812451] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000232ada90
[   80.812472] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000f74a7c11
[   80.812476] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000f74a7c11
[   80.859697] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   80.859704] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000f74a7c11
[   80.859708] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000049ea34c6 state to 00000000f74a7c11
[   80.859711] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000229c0fca state to 00000000f74a7c11
[   80.859715] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 00000000229c0fca
[   80.859718] [drm:drm_atomic_check_only [drm]] checking 00000000f74a7c11
[   80.859734] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   80.859743] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   80.859756] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000f74a7c11 nonblocking
[   80.859787] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000091a18cca
[   80.859790] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000706906a9 state to 0000000091a18cca
[   80.859810] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000bbaab71c state to 0000000091a18cca
[   80.859814] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 00000000bbaab71c
[   80.859816] [drm:drm_atomic_check_only [drm]] checking 0000000091a18cca
[   80.859842] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   80.859870] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   80.859876] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000091a18cca nonblocking
[   80.877668] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000f74a7c11
[   80.877674] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000f74a7c11
[   80.879063] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000091a18cca
[   80.879069] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000050caeebf
[   80.879103] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000050caeebf
[   80.879107] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000091a18cca
[   80.879112] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000050caeebf
[   80.964447] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   80.964473] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000003f4292c9
[   80.964477] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000010417da8 state to 000000003f4292c9
[   80.964498] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000044885b0 state to 000000003f4292c9
[   80.964502] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 00000000044885b0
[   80.964505] [drm:drm_atomic_check_only [drm]] checking 000000003f4292c9
[   80.964521] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   80.964547] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   80.964570] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000003f4292c9 nonblocking
[   80.964604] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000081932eef
[   80.964607] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000007ae3c660 state to 0000000081932eef
[   80.964610] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 0000000063ad2bfe state to 0000000081932eef
[   80.964629] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 0000000063ad2bfe
[   80.964632] [drm:drm_atomic_check_only [drm]] checking 0000000081932eef
[   80.964641] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   80.964648] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   80.964652] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000081932eef nonblocking
[   80.977697] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000003f4292c9
[   80.977703] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000003f4292c9
[   80.979050] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000081932eef
[   80.979056] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000ad60357f
[   80.979061] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000081932eef
[   80.979066] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000ad60357f
[   80.979070] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000ad60357f
[   81.100092] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   81.100100] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000c0159172
[   81.100105] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000ca1036a9 state to 00000000c0159172
[   81.100109] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000f4906bb4 state to 00000000c0159172
[   81.100112] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 00000000f4906bb4
[   81.100115] [drm:drm_atomic_check_only [drm]] checking 00000000c0159172
[   81.100150] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   81.100174] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   81.100202] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000c0159172 nonblocking
[   81.100242] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000847fb9fb
[   81.100247] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000005cdde32d state to 00000000847fb9fb
[   81.100267] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000b3321f70 state to 00000000847fb9fb
[   81.100270] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 00000000b3321f70
[   81.100273] [drm:drm_atomic_check_only [drm]] checking 00000000847fb9fb
[   81.100299] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   81.100323] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   81.100328] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000847fb9fb nonblocking
[   81.111093] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000c0159172
[   81.111100] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000c0159172
[   81.112449] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000847fb9fb
[   81.112464] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000847fb9fb
[   81.955924] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   81.955932] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000007334174c
[   81.955937] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000005bfabc9a state to 000000007334174c
[   81.955940] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000dc51329e state to 000000007334174c
[   81.955943] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 00000000dc51329e
[   81.955946] [drm:drm_atomic_check_only [drm]] checking 000000007334174c
[   81.955962] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   81.955970] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   81.955978] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000007334174c nonblocking
[   81.956008] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008604459f
[   81.956012] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000e48f5a03 state to 000000008604459f
[   81.956014] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 0000000069971e2d state to 000000008604459f
[   81.956018] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 0000000069971e2d
[   81.956037] [drm:drm_atomic_check_only [drm]] checking 000000008604459f
[   81.956063] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   81.956088] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   81.956093] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000008604459f nonblocking
[   81.977962] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000007334174c
[   81.977968] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000007334174c
[   81.979353] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008604459f
[   81.979358] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008604459f
[   82.455997] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   82.456005] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000024c8d455
[   82.456009] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000cfe1e3c7 state to 0000000024c8d455
[   82.456013] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 0000000074cff983 state to 0000000024c8d455
[   82.456016] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 0000000074cff983
[   82.456020] [drm:drm_atomic_check_only [drm]] checking 0000000024c8d455
[   82.456037] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   82.456045] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   82.456053] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000024c8d455 nonblocking
[   82.456067] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000000855fe85
[   82.456071] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000009669c087 state to 000000000855fe85
[   82.456096] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000fccd3bec state to 000000000855fe85
[   82.456099] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 00000000fccd3bec
[   82.456102] [drm:drm_atomic_check_only [drm]] checking 000000000855fe85
[   82.456145] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   82.456153] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   82.456158] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000000855fe85 nonblocking
[   82.477978] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000024c8d455
[   82.477984] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000024c8d455
[   82.479450] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000000855fe85
[   82.479456] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000000855fe85
[   82.486785] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   82.486793] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000203553e3
[   82.486797] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000004650686d state to 00000000203553e3
[   82.486801] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000000354818f state to 00000000203553e3
[   82.486804] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 000000000354818f
[   82.486807] [drm:drm_atomic_check_only [drm]] checking 00000000203553e3
[   82.486837] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   82.486871] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   82.486881] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000203553e3 nonblocking
[   82.486937] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000d21aa07b
[   82.486941] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000973021cf state to 00000000d21aa07b
[   82.486944] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000ceffec2c state to 00000000d21aa07b
[   82.486964] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 00000000ceffec2c
[   82.486966] [drm:drm_atomic_check_only [drm]] checking 00000000d21aa07b
[   82.486995] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   82.487003] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   82.487009] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000d21aa07b nonblocking
[   82.496118] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000d21aa07b
[   82.496125] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000d21aa07b
[   82.511372] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000203553e3
[   82.511377] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000203553e3
[   82.555525] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   82.555533] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000a900a9c4
[   82.555537] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000817a6bec state to 00000000a900a9c4
[   82.555540] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000296490bb state to 00000000a900a9c4
[   82.555544] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 00000000296490bb
[   82.555547] [drm:drm_atomic_check_only [drm]] checking 00000000a900a9c4
[   82.555576] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   82.555583] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   82.555590] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000a900a9c4 nonblocking
[   82.555626] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000022941b1
[   82.555630] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000c0f9da87 state to 00000000022941b1
[   82.555632] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000006741ffee state to 00000000022941b1
[   82.555635] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 000000006741ffee
[   82.555638] [drm:drm_atomic_check_only [drm]] checking 00000000022941b1
[   82.555664] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   82.555687] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   82.555692] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000022941b1 nonblocking
[   82.578036] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000a900a9c4
[   82.578042] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000a900a9c4
[   82.579467] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000022941b1
[   82.579473] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000022941b1
[   82.586804] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   82.586811] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000b460faff
[   82.586816] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000027c7c80e state to 00000000b460faff
[   82.586819] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 0000000049b71273 state to 00000000b460faff
[   82.586822] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 0000000049b71273
[   82.586825] [drm:drm_atomic_check_only [drm]] checking 00000000b460faff
[   82.586877] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   82.586906] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   82.586933] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000b460faff nonblocking
[   82.586970] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008c1bec57
[   82.586974] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000a83c6e21 state to 000000008c1bec57
[   82.586977] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000046829e5 state to 000000008c1bec57
[   82.587000] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 00000000046829e5
[   82.587002] [drm:drm_atomic_check_only [drm]] checking 000000008c1bec57
[   82.587013] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   82.587021] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   82.587026] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000008c1bec57 nonblocking
[   82.596136] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008c1bec57
[   82.596143] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008c1bec57
[   82.611392] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000b460faff
[   82.611397] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000b460faff
[   82.656605] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   82.656613] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000005143603b
[   82.656617] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000b52fcec8 state to 000000005143603b
[   82.656620] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 0000000038ece188 state to 000000005143603b
[   82.656623] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 0000000038ece188
[   82.656626] [drm:drm_atomic_check_only [drm]] checking 000000005143603b
[   82.656642] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   82.656656] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   82.656663] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000005143603b nonblocking
[   82.656699] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000cf197057
[   82.656703] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000893b132b state to 00000000cf197057
[   82.656705] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000d874eb31 state to 00000000cf197057
[   82.656725] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 00000000d874eb31
[   82.656727] [drm:drm_atomic_check_only [drm]] checking 00000000cf197057
[   82.656754] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   82.656761] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   82.656766] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000cf197057 nonblocking
[   82.678088] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000005143603b
[   82.678094] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000005143603b
[   82.679493] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000cf197057
[   82.679499] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000cf197057
[   82.687823] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   82.687831] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000821c3a5d
[   82.687836] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000798d0b78 state to 00000000821c3a5d
[   82.687844] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000881237dc state to 00000000821c3a5d
[   82.687847] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 00000000881237dc
[   82.687876] [drm:drm_atomic_check_only [drm]] checking 00000000821c3a5d
[   82.687908] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   82.687918] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   82.687941] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000821c3a5d nonblocking
[   82.687995] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000002d87dc76
[   82.688015] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000074da1e4c state to 000000002d87dc76
[   82.688019] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000f05f8d8e state to 000000002d87dc76
[   82.688040] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 00000000f05f8d8e
[   82.688043] [drm:drm_atomic_check_only [drm]] checking 000000002d87dc76
[   82.688070] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   82.688095] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   82.688101] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000002d87dc76 nonblocking
[   82.711403] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000821c3a5d
[   82.711409] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000821c3a5d
[   82.712831] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000002d87dc76
[   82.712858] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000002d87dc76
[   82.757283] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   82.757290] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000262e6d3f
[   82.757295] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000057321dc2 state to 00000000262e6d3f
[   82.757298] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000c203d5a5 state to 00000000262e6d3f
[   82.757301] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 00000000c203d5a5
[   82.757304] [drm:drm_atomic_check_only [drm]] checking 00000000262e6d3f
[   82.757331] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   82.757338] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   82.757345] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000262e6d3f nonblocking
[   82.757382] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000a9059498
[   82.757385] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000fa6fc201 state to 00000000a9059498
[   82.757388] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 0000000073815758 state to 00000000a9059498
[   82.757391] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 0000000073815758
[   82.757410] [drm:drm_atomic_check_only [drm]] checking 00000000a9059498
[   82.757435] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   82.757443] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   82.757463] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000a9059498 nonblocking
[   82.778022] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000262e6d3f
[   82.778029] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000262e6d3f
[   82.779517] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000a9059498
[   82.779522] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000a9059498
[   82.788896] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   82.788904] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000d0b41881
[   82.788926] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000e367ebfa state to 00000000d0b41881
[   82.788929] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000002ada7bd3 state to 00000000d0b41881
[   82.788932] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 000000002ada7bd3
[   82.788935] [drm:drm_atomic_check_only [drm]] checking 00000000d0b41881
[   82.788964] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   82.788972] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   82.788979] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000d0b41881 nonblocking
[   82.788996] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000bfe375d9
[   82.789004] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000008697e970 state to 00000000bfe375d9
[   82.789007] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000002b6f348f state to 00000000bfe375d9
[   82.789010] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 000000002b6f348f
[   82.789013] [drm:drm_atomic_check_only [drm]] checking 00000000bfe375d9
[   82.789050] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   82.789074] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   82.789079] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000bfe375d9 nonblocking
[   82.811437] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000d0b41881
[   82.811443] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000d0b41881
[   82.812862] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000bfe375d9
[   82.812884] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000bfe375d9
[   82.857206] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   82.857215] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016f05149
[   82.857219] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000037f72490 state to 0000000016f05149
[   82.857222] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000cfc29fea state to 0000000016f05149
[   82.857225] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 00000000cfc29fea
[   82.857228] [drm:drm_atomic_check_only [drm]] checking 0000000016f05149
[   82.857243] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   82.857251] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   82.857258] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000016f05149 nonblocking
[   82.857294] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000f5f4af04
[   82.857298] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000c7292e7a state to 00000000f5f4af04
[   82.857300] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000009527c4aa state to 00000000f5f4af04
[   82.857320] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 000000009527c4aa
[   82.857323] [drm:drm_atomic_check_only [drm]] checking 00000000f5f4af04
[   82.857354] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   82.857378] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   82.857399] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000f5f4af04 nonblocking
[   82.878116] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016f05149
[   82.878122] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016f05149
[   82.879539] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000f5f4af04
[   82.879544] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000f5f4af04
[   83.035446] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   83.035454] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000570e8d12
[   83.035458] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000001606d56e state to 00000000570e8d12
[   83.035461] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000bbb20ee4 state to 00000000570e8d12
[   83.035465] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 00000000bbb20ee4
[   83.035468] [drm:drm_atomic_check_only [drm]] checking 00000000570e8d12
[   83.035483] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   83.035491] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   83.035498] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000570e8d12 nonblocking
[   83.035533] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000002b698523
[   83.035536] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000070916787 state to 000000002b698523
[   83.035539] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 0000000055fd96bd state to 000000002b698523
[   83.035559] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 0000000055fd96bd
[   83.035562] [drm:drm_atomic_check_only [drm]] checking 000000002b698523
[   83.035588] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   83.035595] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   83.035601] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000002b698523 nonblocking
[   83.044811] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000570e8d12
[   83.044818] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000570e8d12
[   83.046234] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000002b698523
[   83.046240] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000002b698523
[   83.275150] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   83.275157] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000cbdd6be4
[   83.275162] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000c3bd31d1 state to 00000000cbdd6be4
[   83.275166] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000005950b6e3 state to 00000000cbdd6be4
[   83.275169] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 000000005950b6e3
[   83.275172] [drm:drm_atomic_check_only [drm]] checking 00000000cbdd6be4
[   83.275187] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   83.275195] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   83.275202] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000cbdd6be4 nonblocking
[   83.275238] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000087b8f44f
[   83.275241] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000065a09f5e state to 0000000087b8f44f
[   83.275244] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000c510a92b state to 0000000087b8f44f
[   83.275264] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 00000000c510a92b
[   83.275266] [drm:drm_atomic_check_only [drm]] checking 0000000087b8f44f
[   83.275292] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   83.275315] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   83.275320] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000087b8f44f nonblocking
[   83.294892] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000cbdd6be4
[   83.294915] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000cbdd6be4
[   83.296240] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000087b8f44f
[   83.296245] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000087b8f44f
[   83.443372] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   83.443380] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000a5dea880
[   83.443384] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000062bd82b8 state to 00000000a5dea880
[   83.443387] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 0000000079b56f78 state to 00000000a5dea880
[   83.443390] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 0000000079b56f78
[   83.443393] [drm:drm_atomic_check_only [drm]] checking 00000000a5dea880
[   83.443408] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   83.443416] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   83.443423] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000a5dea880 nonblocking
[   83.443460] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000df451d83
[   83.443463] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000f87bdbac state to 00000000df451d83
[   83.443466] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 0000000000c6ac81 state to 00000000df451d83
[   83.443486] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 0000000000c6ac81
[   83.443489] [drm:drm_atomic_check_only [drm]] checking 00000000df451d83
[   83.443514] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   83.443537] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   83.443542] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000df451d83 nonblocking
[   83.461582] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000a5dea880
[   83.461589] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000a5dea880
[   83.462966] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000df451d83
[   83.462971] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000df451d83
[   83.943406] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   83.943414] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000010720fa5
[   83.943418] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000ad60357f state to 0000000010720fa5
[   83.943426] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000007fd6f54b state to 0000000010720fa5
[   83.943433] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 000000007fd6f54b
[   83.943436] [drm:drm_atomic_check_only [drm]] checking 0000000010720fa5
[   83.943452] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   83.943459] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   83.943466] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000010720fa5 nonblocking
[   83.943503] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000050caeebf
[   83.943507] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000002e3dbefe state to 0000000050caeebf
[   83.943509] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000cefade7d state to 0000000050caeebf
[   83.943512] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 00000000cefade7d
[   83.943515] [drm:drm_atomic_check_only [drm]] checking 0000000050caeebf
[   83.943541] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   83.943565] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   83.943586] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000050caeebf nonblocking
[   83.961675] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000010720fa5
[   83.961681] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000010720fa5
[   83.963081] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000050caeebf
[   83.963086] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000050caeebf
[   83.974163] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   83.974170] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000b00108d5
[   83.974175] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000304eb986 state to 00000000b00108d5
[   83.974178] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000006973af8f state to 00000000b00108d5
[   83.974182] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 000000006973af8f
[   83.974185] [drm:drm_atomic_check_only [drm]] checking 00000000b00108d5
[   83.974201] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   83.974209] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   83.974228] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000b00108d5 nonblocking
[   83.974246] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008c1bec57
[   83.974249] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000c0f9da87 state to 000000008c1bec57
[   83.974252] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 0000000064decb6c state to 000000008c1bec57
[   83.974255] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 0000000064decb6c
[   83.974258] [drm:drm_atomic_check_only [drm]] checking 000000008c1bec57
[   83.974296] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   83.974304] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   83.974309] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000008c1bec57 nonblocking
[   83.994963] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000b00108d5
[   83.994969] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000b00108d5
[   83.996421] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008c1bec57
[   83.996426] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008c1bec57
[   84.043550] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   84.043558] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000a900a9c4
[   84.043562] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000004650686d state to 00000000a900a9c4
[   84.043566] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000b3321f70 state to 00000000a900a9c4
[   84.043569] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 00000000b3321f70
[   84.043572] [drm:drm_atomic_check_only [drm]] checking 00000000a900a9c4
[   84.043587] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   84.043595] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   84.043602] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000a900a9c4 nonblocking
[   84.043637] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000203553e3
[   84.043641] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000cfe1e3c7 state to 00000000203553e3
[   84.043644] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000044885b0 state to 00000000203553e3
[   84.043647] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 00000000044885b0
[   84.043649] [drm:drm_atomic_check_only [drm]] checking 00000000203553e3
[   84.043680] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   84.043703] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   84.043708] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000203553e3 nonblocking
[   84.061695] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000a900a9c4
[   84.061701] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000a900a9c4
[   84.063017] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000203553e3
[   84.063023] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000203553e3
[   84.074142] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   84.074150] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000076bffd33
[   84.074154] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000e1a453e1 state to 0000000076bffd33
[   84.074157] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000c3fb52fc state to 0000000076bffd33
[   84.074161] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 00000000c3fb52fc
[   84.074164] [drm:drm_atomic_check_only [drm]] checking 0000000076bffd33
[   84.074179] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   84.074187] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   84.074195] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000076bffd33 nonblocking
[   84.074213] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000be1deabf
[   84.074216] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000089c04add state to 00000000be1deabf
[   84.074219] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000bbaab71c state to 00000000be1deabf
[   84.074222] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 00000000bbaab71c
[   84.074224] [drm:drm_atomic_check_only [drm]] checking 00000000be1deabf
[   84.074260] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   84.074284] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   84.074288] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000be1deabf nonblocking
[   84.095030] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000076bffd33
[   84.095036] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000076bffd33
[   84.096437] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000be1deabf
[   84.096443] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000be1deabf
[   84.145015] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   84.145025] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000000855fe85
[   84.145032] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000e48f5a03 state to 000000000855fe85
[   84.145036] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 0000000069971e2d state to 000000000855fe85
[   84.145039] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 0000000069971e2d
[   84.145042] [drm:drm_atomic_check_only [drm]] checking 000000000855fe85
[   84.145099] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   84.145107] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   84.145119] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000000855fe85 nonblocking
[   84.145143] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000007334174c
[   84.145147] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000ca1036a9 state to 000000007334174c
[   84.145150] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000f4906bb4 state to 000000007334174c
[   84.145153] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 00000000f4906bb4
[   84.145157] [drm:drm_atomic_check_only [drm]] checking 000000007334174c
[   84.145191] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   84.145199] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   84.145203] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000007334174c nonblocking
[   84.161717] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000000855fe85
[   84.161724] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000000855fe85
[   84.163110] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000007334174c
[   84.163134] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000007334174c
[   84.176009] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   84.176029] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000847fb9fb
[   84.176033] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000007ae3c660 state to 00000000847fb9fb
[   84.176037] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 0000000063ad2bfe state to 00000000847fb9fb
[   84.176040] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 0000000063ad2bfe
[   84.176043] [drm:drm_atomic_check_only [drm]] checking 00000000847fb9fb
[   84.176060] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   84.176068] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   84.176077] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000847fb9fb nonblocking
[   84.176096] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000003f4292c9
[   84.176100] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000049ea34c6 state to 000000003f4292c9
[   84.176103] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000229c0fca state to 000000003f4292c9
[   84.176106] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 00000000229c0fca
[   84.176109] [drm:drm_atomic_check_only [drm]] checking 000000003f4292c9
[   84.176145] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   84.176169] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   84.176173] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000003f4292c9 nonblocking
[   84.195003] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000847fb9fb
[   84.195009] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000847fb9fb
[   84.196442] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000003f4292c9
[   84.196464] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000003f4292c9
[   84.245490] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   84.245499] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008fcadd17
[   84.245503] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000002cd18f32 state to 000000008fcadd17
[   84.245507] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000005a1b7649 state to 000000008fcadd17
[   84.245510] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 000000005a1b7649
[   84.245513] [drm:drm_atomic_check_only [drm]] checking 000000008fcadd17
[   84.245529] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   84.245537] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   84.245544] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000008fcadd17 nonblocking
[   84.245576] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000078975063
[   84.245580] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000a89f2f25 state to 0000000078975063
[   84.245624] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000005c8c9b9a state to 0000000078975063
[   84.245627] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 000000005c8c9b9a
[   84.245630] [drm:drm_atomic_check_only [drm]] checking 0000000078975063
[   84.245658] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   84.245665] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   84.245670] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000078975063 nonblocking
[   84.261737] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008fcadd17
[   84.261760] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008fcadd17
[   84.263105] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000078975063
[   84.263128] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000078975063
[   84.555788] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   84.555796] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004b534e6d
[   84.555800] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000001a118ac4 state to 000000004b534e6d
[   84.555804] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000e01b5d25 state to 000000004b534e6d
[   84.555807] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 00000000e01b5d25
[   84.555811] [drm:drm_atomic_check_only [drm]] checking 000000004b534e6d
[   84.555827] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   84.555838] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   84.555872] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000004b534e6d nonblocking
[   84.555912] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000b0ea7514
[   84.555918] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000740db7e0 state to 00000000b0ea7514
[   84.555923] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000003cee19aa state to 00000000b0ea7514
[   84.555928] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 000000003cee19aa
[   84.555933] [drm:drm_atomic_check_only [drm]] checking 00000000b0ea7514
[   84.555950] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   84.555960] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   84.555990] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000b0ea7514 nonblocking
[   84.578428] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004b534e6d
[   84.578449] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004b534e6d
[   84.579868] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000b0ea7514
[   84.579874] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000b0ea7514
[   84.867838] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   84.867865] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000002da43ec7
[   84.867870] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000ebe8de01 state to 000000002da43ec7
[   84.867874] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000a206fd45 state to 000000002da43ec7
[   84.867879] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 00000000a206fd45
[   84.867882] [drm:drm_atomic_check_only [drm]] checking 000000002da43ec7
[   84.867934] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   84.867942] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   84.867953] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000002da43ec7 nonblocking
[   84.867972] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004ed2ba04
[   84.867976] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000037280c51 state to 000000004ed2ba04
[   84.867979] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000f54f42c4 state to 000000004ed2ba04
[   84.867999] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 00000000f54f42c4
[   84.868002] [drm:drm_atomic_check_only [drm]] checking 000000004ed2ba04
[   84.868031] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   84.868040] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   84.868045] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000004ed2ba04 nonblocking
[   84.878486] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000002da43ec7
[   84.878508] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000002da43ec7
[   84.879935] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004ed2ba04
[   84.879941] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004ed2ba04
[   85.044022] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   85.044030] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000002df1a2f0
[   85.044034] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000cbe1ba72 state to 000000002df1a2f0
[   85.044038] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000432a41a3 state to 000000002df1a2f0
[   85.044041] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 00000000432a41a3
[   85.044044] [drm:drm_atomic_check_only [drm]] checking 000000002df1a2f0
[   85.044108] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   85.044134] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   85.044157] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000002df1a2f0 nonblocking
[   85.044192] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000015179b77
[   85.044196] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000002e3dbefe state to 0000000015179b77
[   85.044199] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000c01137d0 state to 0000000015179b77
[   85.044219] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 00000000c01137d0
[   85.044221] [drm:drm_atomic_check_only [drm]] checking 0000000015179b77
[   85.044230] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   85.044237] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   85.044242] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000015179b77 nonblocking
[   85.061908] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000002df1a2f0
[   85.061914] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000002df1a2f0
[   85.063283] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000015179b77
[   85.063305] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000015179b77
[   85.179961] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   85.179969] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000010720fa5
[   85.179974] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000062bd82b8 state to 0000000010720fa5
[   85.179977] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000004c90af07 state to 0000000010720fa5
[   85.179981] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 000000004c90af07
[   85.179984] [drm:drm_atomic_check_only [drm]] checking 0000000010720fa5
[   85.180018] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   85.180042] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   85.180068] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000010720fa5 nonblocking
[   85.180104] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000df451d83
[   85.180108] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000065a09f5e state to 00000000df451d83
[   85.180111] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000009f3a91f1 state to 00000000df451d83
[   85.180131] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 000000009f3a91f1
[   85.180134] [drm:drm_atomic_check_only [drm]] checking 00000000df451d83
[   85.180184] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   85.180208] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   85.180213] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000df451d83 nonblocking
[   85.195242] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000010720fa5
[   85.195249] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000010720fa5
[   85.196654] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000df451d83
[   85.196660] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000df451d83
[   85.268443] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   85.268469] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000cbdd6be4
[   85.268474] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000001606d56e state to 00000000cbdd6be4
[   85.268493] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000a9a13b51 state to 00000000cbdd6be4
[   85.268497] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 00000000a9a13b51
[   85.268500] [drm:drm_atomic_check_only [drm]] checking 00000000cbdd6be4
[   85.268516] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   85.268542] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   85.268565] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000cbdd6be4 nonblocking
[   85.268600] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000009e6e8f0
[   85.268604] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000e0373c05 state to 0000000009e6e8f0
[   85.268623] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000e548cbf1 state to 0000000009e6e8f0
[   85.268626] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 00000000e548cbf1
[   85.268629] [drm:drm_atomic_check_only [drm]] checking 0000000009e6e8f0
[   85.268640] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   85.268647] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   85.268652] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000009e6e8f0 nonblocking
[   85.278595] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000cbdd6be4
[   85.278603] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000cbdd6be4
[   85.280005] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000009e6e8f0
[   85.280010] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000009e6e8f0
[   85.331961] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   85.331986] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000002b698523
[   85.331991] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000c7292e7a state to 000000002b698523
[   85.332010] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000e259e82c state to 000000002b698523
[   85.332013] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 00000000e259e82c
[   85.332016] [drm:drm_atomic_check_only [drm]] checking 000000002b698523
[   85.332048] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   85.332056] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   85.332080] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000002b698523 nonblocking
[   85.332133] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000016f05149
[   85.332137] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 0000000076bffd33 state to 0000000016f05149
[   85.332157] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000b61a437d state to 0000000016f05149
[   85.332161] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 00000000b61a437d
[   85.332163] [drm:drm_atomic_check_only [drm]] checking 0000000016f05149
[   85.332195] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   85.332202] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   85.332207] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000016f05149 nonblocking
[   85.345273] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000002b698523
[   85.345280] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000002b698523
[   85.346692] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000016f05149
[   85.346698] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000016f05149
[   85.532080] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   85.532104] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000004650686d
[   85.532109] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000203553e3 state to 000000004650686d
[   85.532112] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000b8cdb50a state to 000000004650686d
[   85.532115] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 00000000b8cdb50a
[   85.532118] [drm:drm_atomic_check_only [drm]] checking 000000004650686d
[   85.532152] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   85.532176] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   85.532187] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000004650686d nonblocking
[   85.532243] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000c0f9da87
[   85.532247] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000b00108d5 state to 00000000c0f9da87
[   85.532250] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000005dc292a4 state to 00000000c0f9da87
[   85.532253] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 000000005dc292a4
[   85.532256] [drm:drm_atomic_check_only [drm]] checking 00000000c0f9da87
[   85.532265] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   85.532272] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   85.532277] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000c0f9da87 nonblocking
[   85.545314] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000004650686d
[   85.545320] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000004650686d
[   85.546733] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000c0f9da87
[   85.546740] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000c0f9da87
[   85.669044] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   85.669052] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000ad60357f
[   85.669056] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000050caeebf state to 00000000ad60357f
[   85.669059] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 0000000059dffc3a state to 00000000ad60357f
[   85.669063] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 0000000059dffc3a
[   85.669066] [drm:drm_atomic_check_only [drm]] checking 00000000ad60357f
[   85.669082] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   85.669090] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   85.669097] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000ad60357f nonblocking
[   85.669128] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000f87bdbac
[   85.669131] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000a5dea880 state to 00000000f87bdbac
[   85.669134] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 0000000063d47879 state to 00000000f87bdbac
[   85.669154] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 0000000063d47879
[   85.669157] [drm:drm_atomic_check_only [drm]] checking 00000000f87bdbac
[   85.669184] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   85.669208] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   85.669213] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000f87bdbac nonblocking
[   85.678677] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000ad60357f
[   85.678683] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000ad60357f
[   85.679990] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000f87bdbac
[   85.679996] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000f87bdbac
[   85.685759] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   85.685781] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000c3bd31d1
[   85.685786] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000087b8f44f state to 00000000c3bd31d1
[   85.685790] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 0000000009939c12 state to 00000000c3bd31d1
[   85.685793] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 0000000009939c12
[   85.685796] [drm:drm_atomic_check_only [drm]] checking 00000000c3bd31d1
[   85.685814] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   85.685822] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   85.685831] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000c3bd31d1 nonblocking
[   85.685885] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000070916787
[   85.685890] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000a89f2f25 state to 0000000070916787
[   85.685895] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000c510a92b state to 0000000070916787
[   85.685899] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 00000000c510a92b
[   85.685902] [drm:drm_atomic_check_only [drm]] checking 0000000070916787
[   85.685949] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   85.685958] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   85.685982] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000070916787 nonblocking
[   85.695339] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000c3bd31d1
[   85.695346] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000c3bd31d1
[   85.696761] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 0000000070916787
[   85.696766] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 0000000070916787
[   85.804123] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   85.804131] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008fcadd17
[   85.804135] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000007ae3c660 state to 000000008fcadd17
[   85.804138] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000bbb20ee4 state to 000000008fcadd17
[   85.804142] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 00000000bbb20ee4
[   85.804145] [drm:drm_atomic_check_only [drm]] checking 000000008fcadd17
[   85.804163] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   85.804171] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   85.804178] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000008fcadd17 nonblocking
[   85.804211] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000003f4292c9
[   85.804231] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000ca1036a9 state to 000000003f4292c9
[   85.804234] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 000000009527c4aa state to 000000003f4292c9
[   85.804237] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 000000009527c4aa
[   85.804240] [drm:drm_atomic_check_only [drm]] checking 000000003f4292c9
[   85.804282] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   85.804289] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   85.804311] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000003f4292c9 nonblocking
[   85.813459] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000003f4292c9
[   85.813467] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000003f4292c9
[   85.828703] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008fcadd17
[   85.828708] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008fcadd17
[   85.900651] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   85.900659] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000000855fe85
[   85.900664] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000e1a453e1 state to 000000000855fe85
[   85.900667] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 000000002ada7bd3 state to 000000000855fe85
[   85.900670] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 000000002ada7bd3
[   85.900673] [drm:drm_atomic_check_only [drm]] checking 000000000855fe85
[   85.900691] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   85.900699] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   85.900707] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000000855fe85 nonblocking
[   85.900745] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000be1deabf
[   85.900766] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000cfe1e3c7 state to 00000000be1deabf
[   85.900769] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 0000000073815758 state to 00000000be1deabf
[   85.900772] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 0000000073815758
[   85.900793] [drm:drm_atomic_check_only [drm]] checking 00000000be1deabf
[   85.900802] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   85.900810] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   85.900815] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000be1deabf nonblocking
[   85.912029] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000000855fe85
[   85.912035] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000000855fe85
[   85.913478] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000be1deabf
[   85.913484] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000be1deabf
[   85.988079] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   85.988087] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000a900a9c4
[   85.988092] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 00000000304eb986 state to 00000000a900a9c4
[   85.988095] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000881237dc state to 00000000a900a9c4
[   85.988099] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 00000000881237dc
[   85.988102] [drm:drm_atomic_check_only [drm]] checking 00000000a900a9c4
[   85.988136] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   85.988144] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   85.988152] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000a900a9c4 nonblocking
[   85.988167] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000008c1bec57
[   85.988170] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000002df1a2f0 state to 000000008c1bec57
[   85.988173] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000d874eb31 state to 000000008c1bec57
[   85.988176] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 00000000d874eb31
[   85.988178] [drm:drm_atomic_check_only [drm]] checking 000000008c1bec57
[   85.988187] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   85.988194] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   85.988199] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000008c1bec57 nonblocking
[   85.996720] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 000000008c1bec57
[   85.996726] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 000000008c1bec57
[   86.012073] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000a900a9c4
[   86.012096] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000a900a9c4
[   86.059924] [drm:drm_mode_addfb2 [drm]] [FB:113]
[   86.059932] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000ebe8de01
[   86.059945] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 000000004ed2ba04 state to 00000000ebe8de01
[   86.059948] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 0000000049b71273 state to 00000000ebe8de01
[   86.059951] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:28:plane 1A] state 0000000049b71273
[   86.059954] [drm:drm_atomic_check_only [drm]] checking 00000000ebe8de01
[   86.059976] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 113
[   86.059985] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   86.060009] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000ebe8de01 nonblocking
[   86.060042] [drm:drm_atomic_state_init [drm]] Allocated atomic state 00000000740db7e0
[   86.060062] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 000000004b534e6d state to 00000000740db7e0
[   86.060064] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000296490bb state to 00000000740db7e0
[   86.060068] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:113] for [PLANE:42:plane 1B] state 00000000296490bb
[   86.060070] [drm:drm_atomic_check_only [drm]] checking 00000000740db7e0
[   86.060080] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 113
[   86.060087] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   86.060092] [drm:drm_atomic_nonblocking_commit [drm]] committing 00000000740db7e0 nonblocking
[   86.078766] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000ebe8de01
[   86.078774] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000ebe8de01
[   86.080164] [drm:drm_atomic_state_default_clear [drm]] Clearing atomic state 00000000740db7e0
[   86.080170] [drm:__drm_atomic_state_free [drm]] Freeing atomic state 00000000740db7e0
[   86.859476] [drm:drm_mode_addfb2 [drm]] [FB:110]
[   86.859504] [drm:drm_atomic_state_init [drm]] Allocated atomic state 000000002cd18f32
[   86.859509] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:41:pipe A] 0000000078975063 state to 000000002cd18f32
[   86.859513] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:28:plane 1A] 00000000ceffec2c state to 000000002cd18f32
[   86.859534] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:28:plane 1A] state 00000000ceffec2c
[   86.859538] [drm:drm_atomic_check_only [drm]] checking 000000002cd18f32
[   86.859566] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:41:pipe A] has [PLANE:28:plane 1A] with fb 110
[   86.859574] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:28:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[   86.859584] [drm:drm_atomic_nonblocking_commit [drm]] committing 000000002cd18f32 nonblocking
[   86.859621] [drm:drm_atomic_state_init [drm]] Allocated atomic state 0000000049ea34c6
[   86.859643] [drm:drm_atomic_get_crtc_state [drm]] Added [CRTC:55:pipe B] 00000000847fb9fb state to 0000000049ea34c6
[   86.859646] [drm:drm_atomic_get_plane_state [drm]] Added [PLANE:42:plane 1B] 00000000fccd3bec state to 0000000049ea34c6
[   86.859650] [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:110] for [PLANE:42:plane 1B] state 00000000fccd3bec
[   86.859669] [drm:drm_atomic_check_only [drm]] checking 0000000049ea34c6
[   86.859696] [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:55:pipe B] has [PLANE:42:plane 1B] with fb 110
[   86.859721] [drm:intel_plane_atomic_calc_changes [i915]] [PLANE:42:plane 1B] visible 1 -> 1, off 0, on 0, ms 0
[   86.859727] [drm:drm_atomic_nonblocking_commit [drm]] committing 0000000049ea34c6 nonblocking
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/pkcs7-signature
Size: 5174 bytes
Desc: S/MIME Cryptographic Signature
URL: <http://mailman.alsa-project.org/pipermail/alsa-devel/attachments/20180919/cf5db6fc/attachment-0001.p7s>


More information about the Alsa-devel mailing list