This repository has been archived by the owner on Nov 1, 2023. It is now read-only.
forked from HouQiming/i915ovmfPkg
-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
i915_dmesg.log
2054 lines (2054 loc) · 276 KB
/
i915_dmesg.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt4)/vmlinuz-5.11.12-300.fc34.x86_64 root=/dev/mapper/linux_install-00 ro resume=/dev/mapper/linux_install-swap rd.lvm.lv=linux_install/00 rd.lvm.lv=linux_install/swap rhgb quiet intel_iommu=on i915.enable_gvt=1 i915.enable_guc=0 iommu=pt drm.debug=0x1e log_buf_len=1M
[ 0.105198] Kernel command line: BOOT_IMAGE=(hd0,gpt4)/vmlinuz-5.11.12-300.fc34.x86_64 root=/dev/mapper/linux_install-00 ro resume=/dev/mapper/linux_install-swap rd.lvm.lv=linux_install/00 rd.lvm.lv=linux_install/swap rhgb quiet intel_iommu=on i915.enable_gvt=1 i915.enable_guc=0 iommu=pt drm.debug=0x1e log_buf_len=1M
[ 2.639240] i915 0000:00:02.0: enabling device (0006 -> 0007)
[ 2.639380] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] WOPCM: 1024K
[ 2.639445] i915 0000:00:02.0: [drm:intel_uc_init_early [i915]] enable_guc=0 (guc:no submission:no huc:no)
[ 2.639517] i915 0000:00:02.0: [drm:i915_gem_init_early [i915]] fake context support initialized
[ 2.639586] i915 0000:00:02.0: [drm:intel_pch_type [i915]] Found Comet Lake PCH (CMP)
[ 2.639640] i915 0000:00:02.0: [drm:intel_power_domains_init [i915]] Allowed DC state mask 02
[ 2.639745] i915 0000:00:02.0: [drm:intel_uncore_init_mmio [i915]] unclaimed mmio detected on uncore init, clearing
[ 2.640085] i915 0000:00:02.0: [drm:intel_device_info_runtime_init [i915]] rawclk rate: 24000 kHz
[ 2.640139] i915 0000:00:02.0: [drm:intel_device_info_runtime_init [i915]] CS timestamp wraparound in 178241ms
[ 2.640209] i915 0000:00:02.0: [drm:i915_ggtt_probe_hw [i915]] GGTT size = 4096M
[ 2.640269] i915 0000:00:02.0: [drm:i915_ggtt_probe_hw [i915]] GMADR size = 256M
[ 2.640325] i915 0000:00:02.0: [drm:i915_ggtt_probe_hw [i915]] DSM size = 64M
[ 2.640380] i915 0000:00:02.0: [drm] VT-d active for gfx access
[ 2.640419] i915 0000:00:02.0: vgaarb: deactivate vga console
[ 2.640451] i915 0000:00:02.0: [drm:init_stolen [i915]] GEN6_STOLEN_RESERVED = 7f700047
[ 2.640569] i915 0000:00:02.0: [drm:init_stolen [i915]] Memory reserved for graphics device: 65536K, usable: 64512K
[ 2.640676] [drm:i915_driver_probe [i915]] Initialized 4 GT workarounds on global
[ 2.640959] i915 0000:00:02.0: Direct firmware load for i915/gvt/vid_0x8086_did_0x9bca_rid_0x04.golden_hw_state failed with error -2
[ 2.660833] i915 0000:00:02.0: [drm:intel_opregion_setup [i915]] graphic opregion physical addr: 0x79880018
[ 2.660980] i915 0000:00:02.0: [drm:intel_opregion_setup [i915]] ACPI OpRegion version 2.0.0
[ 2.661076] i915 0000:00:02.0: [drm:intel_opregion_setup [i915]] Public ACPI methods supported
[ 2.661167] i915 0000:00:02.0: [drm:intel_opregion_setup [i915]] SWSCI supported
[ 2.661882] i915 0000:00:02.0: [drm:intel_opregion_setup [i915]] SWSCI GBDA callbacks 00000cb3, SBCB callbacks 00300583
[ 2.661961] i915 0000:00:02.0: [drm:intel_opregion_setup [i915]] ASLE supported
[ 2.662038] i915 0000:00:02.0: [drm:intel_opregion_setup [i915]] ASLE extension supported
[ 2.662116] i915 0000:00:02.0: [drm:intel_opregion_setup [i915]] Found valid VBT in ACPI OpRegion (Mailbox #4)
[ 2.662202] i915 0000:00:02.0: [drm:intel_dram_detect [i915]] DRAM type: LPDDR3
[ 2.662274] i915 0000:00:02.0: [drm:skl_dram_get_dimm_info [i915]] CH0 DIMM L size: 64 Gb, width: X16, ranks: 2, 16Gb DIMMs: no
[ 2.662342] i915 0000:00:02.0: [drm:skl_dram_get_dimm_info [i915]] CH0 DIMM S size: 0 Gb, width: X0, ranks: 0, 16Gb DIMMs: no
[ 2.662395] i915 0000:00:02.0: [drm:skl_dram_get_channel_info [i915]] CH0 ranks: 2, 16Gb DIMMs: no
[ 2.662459] i915 0000:00:02.0: [drm:skl_dram_get_dimm_info [i915]] CH1 DIMM L size: 64 Gb, width: X16, ranks: 2, 16Gb DIMMs: no
[ 2.662524] i915 0000:00:02.0: [drm:skl_dram_get_dimm_info [i915]] CH1 DIMM S size: 0 Gb, width: X0, ranks: 0, 16Gb DIMMs: no
[ 2.662574] i915 0000:00:02.0: [drm:skl_dram_get_channel_info [i915]] CH1 ranks: 2, 16Gb DIMMs: no
[ 2.662637] i915 0000:00:02.0: [drm:intel_dram_detect [i915]] Memory configuration is symmetric? yes
[ 2.662700] i915 0000:00:02.0: [drm:intel_dram_detect [i915]] DRAM bandwidth: 34133344 kBps, channels: 2
[ 2.662750] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] DRAM ranks: 2, 16Gb DIMMs: no
[ 2.662955] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Set default to SSC at 120000 kHz
[ 2.663037] i915 0000:00:02.0: [drm:intel_bios_init [i915]] VBT signature "$VBT SKYLAKE ", BDB version 228
[ 2.663119] i915 0000:00:02.0: [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
[ 2.663205] i915 0000:00:02.0: [drm:intel_bios_init [i915]] crt_ddc_bus_pin: 2
[ 2.663282] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found VBT child device with type 0x1806
[ 2.663360] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found VBT child device with type 0x60d6
[ 2.663435] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found VBT child device with type 0x68c6
[ 2.663829] i915 0000:00:02.0: [drm:intel_opregion_get_panel_type [i915]] Ignoring OpRegion panel type (0)
[ 2.663915] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Panel type: 2 (VBT)
[ 2.663999] i915 0000:00:02.0: [drm:intel_bios_init [i915]] DRRS supported mode is static
[ 2.664078] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found panel mode in BIOS VBT legacy lfp table:
[ 2.664200] i915 0000:00:02.0: [drm:intel_bios_init [i915]] VBT initial LVDS value 300
[ 2.664277] i915 0000:00:02.0: [drm:intel_bios_init [i915]] VBT backlight PWM modulation frequency 990 Hz, active high, min brightness 3, level 63, controller 0
[ 2.664357] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Skipping SDVO device mapping
[ 2.664432] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port A VBT info: CRT:0 DVI:0 HDMI:0 DP:1 eDP:1 LSPCON:0 USB-Type-C:0 TBT:0 DSC:0
[ 2.664510] i915 0000:00:02.0: [drm:intel_bios_init [i915]] VBT HDMI level shift for port A: 0
[ 2.664585] i915 0000:00:02.0: [drm:intel_bios_init [i915]] VBT DP max link rate for port A: 810000
[ 2.664661] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port B VBT info: CRT:0 DVI:1 HDMI:1 DP:1 eDP:0 LSPCON:0 USB-Type-C:0 TBT:0 DSC:0
[ 2.664737] i915 0000:00:02.0: [drm:intel_bios_init [i915]] VBT HDMI level shift for port B: 0
[ 2.664812] i915 0000:00:02.0: [drm:intel_bios_init [i915]] VBT DP max link rate for port B: 810000
[ 2.664886] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port C VBT info: CRT:0 DVI:0 HDMI:0 DP:1 eDP:0 LSPCON:0 USB-Type-C:0 TBT:0 DSC:0
[ 2.664962] i915 0000:00:02.0: [drm:intel_bios_init [i915]] VBT HDMI level shift for port C: 0
[ 2.665039] i915 0000:00:02.0: [drm:intel_bios_init [i915]] VBT DP max link rate for port C: 810000
[ 2.665116] i915 0000:00:02.0: [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 00
[ 2.665204] i915 0000:00:02.0: [drm:intel_power_domains_init_hw [i915]] enabling power well 1
[ 2.665287] i915 0000:00:02.0: [drm:intel_power_domains_init_hw [i915]] enabling MISC IO power well
[ 2.665370] [drm:intel_cdclk_init_hw [i915]] Current CDCLK 337500 kHz, VCO 8100000 kHz, ref 24000 kHz, bypass 24000 kHz, voltage level 0
[ 2.665452] i915 0000:00:02.0: [drm:intel_update_max_cdclk [i915]] Max CD clock rate: 675000 kHz
[ 2.665530] i915 0000:00:02.0: [drm:intel_power_domains_init_hw [i915]] Max dotclock rate: 675000 kHz
[ 2.665610] i915 0000:00:02.0: [drm:gen9_dbuf_slices_update [i915]] Updating dbuf slices to 0x1
[ 2.665700] i915 0000:00:02.0: [drm:__intel_display_power_get_domain.part.0 [i915]] enabling always-on
[ 2.665776] i915 0000:00:02.0: [drm:__intel_display_power_get_domain.part.0 [i915]] enabling DC off
[ 2.665872] i915 0000:00:02.0: [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 00
[ 2.665992] i915 0000:00:02.0: [drm:__intel_display_power_get_domain.part.0 [i915]] enabling power well 2
[ 2.666077] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=mem
[ 2.666081] i915 0000:00:02.0: [drm:__intel_display_power_get_domain.part.0 [i915]] enabling DDI A/E IO power well
[ 2.666167] i915 0000:00:02.0: [drm:__intel_display_power_get_domain.part.0 [i915]] enabling DDI B IO power well
[ 2.666335] i915 0000:00:02.0: [drm:__intel_display_power_get_domain.part.0 [i915]] enabling DDI C IO power well
[ 2.666445] i915 0000:00:02.0: [drm:__intel_display_power_get_domain.part.0 [i915]] enabling DDI D IO power well
[ 2.666564] i915 0000:00:02.0: [drm:intel_csr_ucode_init [i915]] Loading i915/kbl_dmc_ver1_04.bin
[ 2.667909] i915 0000:00:02.0: [drm:intel_fbc_init [i915]] Sanitized enable_fbc value: 1
[ 2.668455] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] Gen9 Plane WM0 latency 2 (2.0 usec)
[ 2.668561] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
[ 2.668544] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] Gen9 Plane WM1 latency 19 (19.0 usec)
[ 2.668600] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] Gen9 Plane WM2 latency 28 (28.0 usec)
[ 2.668654] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] Gen9 Plane WM3 latency 32 (32.0 usec)
[ 2.668707] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] Gen9 Plane WM4 latency 63 (63.0 usec)
[ 2.668760] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] Gen9 Plane WM5 latency 77 (77.0 usec)
[ 2.668812] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] Gen9 Plane WM6 latency 83 (83.0 usec)
[ 2.668864] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] Gen9 Plane WM7 latency 99 (99.0 usec)
[ 2.670865] i915 0000:00:02.0: [drm:intel_modeset_init_nogem [i915]] 3 display pipes available.
[ 2.670979] [drm:intel_dump_cdclk_config [i915]] Current CDCLK 337500 kHz, VCO 8100000 kHz, ref 24000 kHz, bypass 24000 kHz, voltage level 0
[ 2.671354] i915 0000:00:02.0: [drm:intel_bios_port_aux_ch [i915]] using AUX A for port A (VBT)
[ 2.671426] i915 0000:00:02.0: [drm:intel_dp_init_connector [i915]] Adding eDP connector on [ENCODER:94:DDI A/PHY A]
[ 2.671573] [drm:intel_dp_init_panel_power_sequencer [i915]] cur t1_t3 0 t8 0 t9 0 t10 500 t11_t12 6000
[ 2.671644] [drm:intel_dp_init_panel_power_sequencer [i915]] vbt t1_t3 2000 t8 10 t9 2600 t10 500 t11_t12 6000
[ 2.671713] i915 0000:00:02.0: [drm:intel_dp_init_panel_power_sequencer [i915]] panel power up delay 200, power down delay 50, power cycle delay 600
[ 2.671798] i915 0000:00:02.0: [drm:intel_dp_init_panel_power_sequencer [i915]] backlight on delay 1, off delay 260
[ 2.672029] i915 0000:00:02.0: [drm:intel_dp_init_connector [i915]] panel power sequencer register settings: PP_ON 0x7d00001, PP_OFF 0x1f40001, PP_DIV 0x60
[ 2.672145] i915 0000:00:02.0: [drm:edp_panel_vdd_on [i915]] Turning [ENCODER:94:DDI A/PHY A] VDD on
[ 2.672374] i915 0000:00:02.0: [drm:edp_panel_vdd_on [i915]] PP_STATUS: 0x80000008 PP_CONTROL: 0x0000006f
[ 2.673710] i915 0000:00:02.0: [drm:intel_dp_init_connector [i915]] eDP DPCD: 02 8b 03
[ 2.674126] i915 0000:00:02.0: [drm:intel_psr_init_dpcd [i915]] eDP panel supports PSR version 1
[ 2.678326] i915 0000:00:02.0: [drm:intel_panel_edid_fixed_mode [i915]] [CONNECTOR:95:eDP-1] using preferred mode from EDID:
[ 2.678416] i915 0000:00:02.0: [drm:intel_dp_init_connector [i915]] VBT doesn't support DRRS
[ 2.678485] i915 0000:00:02.0: [drm:intel_dp_aux_init_backlight_funcs [i915]] AUX Backlight Control Supported!
[ 2.678552] i915 0000:00:02.0: [drm] Panel advertises DPCD backlight support, but VBT disagrees. If your backlight controls don't work try booting with i915.enable_dpcd_backlight=1. If your machine needs this, please file a _new_ bug report on drm/i915, see https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs for details.
[ 2.678642] i915 0000:00:02.0: [drm:intel_panel_setup_backlight [i915]] Connector eDP-1 backlight initialized, enabled, brightness 5989/24242
[ 2.678784] i915 0000:00:02.0: [drm:intel_bios_port_aux_ch [i915]] using AUX B for port B (VBT)
[ 2.678860] i915 0000:00:02.0: [drm:intel_dp_init_connector [i915]] Adding DP connector on [ENCODER:102:DDI B/PHY B]
[ 2.678946] i915 0000:00:02.0: [drm:intel_hdmi_init_connector [i915]] Adding HDMI connector on [ENCODER:102:DDI B/PHY B]
[ 2.679019] i915 0000:00:02.0: [drm:intel_hdmi_init_connector [i915]] Using DDC pin 0x1 for port B (VBT)
[ 2.679097] i915 0000:00:02.0: [drm:intel_bios_port_aux_ch [i915]] using AUX C for port C (VBT)
[ 2.679172] i915 0000:00:02.0: [drm:intel_dp_init_connector [i915]] Adding DP connector on [ENCODER:118:DDI C/PHY C]
[ 2.679293] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CRTC:51:pipe A] hw state readout: enabled
[ 2.679406] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CRTC:72:pipe B] hw state readout: disabled
[ 2.679507] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CRTC:93:pipe C] hw state readout: disabled
[ 2.679611] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:31:plane 1A] hw state readout: enabled, pipe A
[ 2.679716] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:39:plane 2A] hw state readout: disabled, pipe A
[ 2.679821] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:47:cursor A] hw state readout: disabled, pipe A
[ 2.679924] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:52:plane 1B] hw state readout: disabled, pipe B
[ 2.680029] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:60:plane 2B] hw state readout: disabled, pipe B
[ 2.680133] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:68:cursor B] hw state readout: disabled, pipe B
[ 2.680274] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:73:plane 1C] hw state readout: disabled, pipe C
[ 2.680371] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:81:plane 2C] hw state readout: disabled, pipe C
[ 2.680469] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:89:cursor C] hw state readout: disabled, pipe C
[ 2.680567] i915 0000:00:02.0: [drm:intel_dpll_readout_hw_state [i915]] DPLL 0 hw state readout: crtc_mask 0x00000000, on 1
[ 2.680684] i915 0000:00:02.0: [drm:intel_dpll_readout_hw_state [i915]] DPLL 1 hw state readout: crtc_mask 0x00000001, on 1
[ 2.680779] i915 0000:00:02.0: [drm:intel_dpll_readout_hw_state [i915]] DPLL 2 hw state readout: crtc_mask 0x00000000, on 0
[ 2.680875] i915 0000:00:02.0: [drm:intel_dpll_readout_hw_state [i915]] DPLL 3 hw state readout: crtc_mask 0x00000000, on 0
[ 2.680991] i915 0000:00:02.0: [drm:intel_ddi_get_config [i915]] pipe has 24 bpp for eDP panel, overriding BIOS-provided max 18 bpp
[ 2.681089] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:94:DDI A/PHY A] hw state readout: enabled, pipe A
[ 2.681189] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:102:DDI B/PHY B] hw state readout: disabled, pipe A
[ 2.681284] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:104:DP-MST A] hw state readout: disabled, pipe A
[ 2.681378] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:105:DP-MST B] hw state readout: disabled, pipe B
[ 2.681471] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:106:DP-MST C] hw state readout: disabled, pipe C
[ 2.681564] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:118:DDI C/PHY C] hw state readout: disabled, pipe A
[ 2.681655] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:120:DP-MST A] hw state readout: disabled, pipe A
[ 2.681747] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:121:DP-MST B] hw state readout: disabled, pipe B
[ 2.681838] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:122:DP-MST C] hw state readout: disabled, pipe C
[ 2.681933] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:95:eDP-1] hw state readout: enabled
[ 2.682025] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:103:DP-1] hw state readout: disabled
[ 2.682118] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:113:HDMI-A-1] hw state readout: disabled
[ 2.682214] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:119:DP-2] hw state readout: disabled
[ 2.682307] i915 0000:00:02.0: [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:1920x1080] for [CRTC:51:pipe A] state 0000000086a044d5
[ 2.682336] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:31:plane 1A] min_cdclk 153221 kHz
[ 2.682430] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:39:plane 2A] min_cdclk 0 kHz
[ 2.682523] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:47:cursor A] min_cdclk 0 kHz
[ 2.682616] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] pipe A data rate 612884 num active planes 1
[ 2.682750] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:52:plane 1B] min_cdclk 0 kHz
[ 2.682850] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:60:plane 2B] min_cdclk 0 kHz
[ 2.682948] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:68:cursor B] min_cdclk 0 kHz
[ 2.683047] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] pipe B data rate 0 num active planes 0
[ 2.683145] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:73:plane 1C] min_cdclk 0 kHz
[ 2.683247] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:81:plane 2C] min_cdclk 0 kHz
[ 2.683345] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:89:cursor C] min_cdclk 0 kHz
[ 2.683444] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] pipe C data rate 0 num active planes 0
[ 2.685619] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] [CRTC:51:pipe A] enable: yes [setup_hw_state]
[ 2.685698] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] active: yes, output_types: EDP (0x100), output format: RGB
[ 2.685774] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] cpu_transcoder: EDP, pipe bpp: 24, dithering: 0
[ 2.685846] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] MST master transcoder: <invalid>
[ 2.685935] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[ 2.686003] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] bigjoiner: no
[ 2.686072] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] dp m_n: lanes: 2; gmch_m: 7140667, gmch_n: 8388608, link_m: 297527, link_n: 524288, tu: 64
[ 2.686140] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[ 2.686214] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] requested mode:
[ 2.686339] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] adjusted mode:
[ 2.686491] i915 0000:00:02.0: [drm:intel_dump_crtc_timings [i915]] crtc timings: 153221 1920 2000 2060 2250 1080 1086 1094 1132, type: 0x40 flags: 0xa
[ 2.686597] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] pipe mode:
[ 2.686730] i915 0000:00:02.0: [drm:intel_dump_crtc_timings [i915]] crtc timings: 153221 1920 2000 2060 2250 1080 1086 1094 1132, type: 0x40 flags: 0xa
[ 2.686831] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] port clock: 270000, pipe src size: 1920x1080, pixel rate 153221
[ 2.686953] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] linetime: 118, ips linetime: 0
[ 2.687056] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1
[ 2.687159] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[ 2.687265] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] ips: 0, double wide: 0
[ 2.687363] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] dpll_hw_state: ctrl1: 0x13, cfgcr1: 0x0, cfgcr2: 0x0
[ 2.687465] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[ 2.687568] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] degamma lut: 0 entries, gamma lut: 0 entries
[ 2.687666] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] [CRTC:72:pipe B] enable: no [setup_hw_state]
[ 2.687769] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] [CRTC:93:pipe C] enable: no [setup_hw_state]
[ 2.687890] i915 0000:00:02.0: [drm:intel_dpll_sanitize_state [i915]] DPLL 0 enabled but not in use, disabling
[ 2.688028] i915 0000:00:02.0: [drm:skl_get_initial_plane_config [i915]] pipe A/plane 1A with fb: size=1920x1080@32, offset=0, pitch 7680, size 0x7e9000
[ 2.688134] i915 0000:00:02.0: [drm:i915_gem_object_create_stolen_for_preallocated [i915]] creating preallocated stolen object: stolen_offset=0x0000000000000000, size=0x00000000007e9000
[ 2.688264] i915 0000:00:02.0: [drm:i915_init_ggtt [i915]] Reserved GGTT:[7e9000, 7ea000] for use by error capture
[ 2.688360] i915 0000:00:02.0: [drm:i915_init_ggtt [i915]] clearing unused GTT space: [7ea000, 100000000]
[ 2.690647] [drm:intel_engines_init [i915]] Initialized 5 engine workarounds on rcs'0
[ 2.690719] [drm:intel_engines_init [i915]] Initialized 5 whitelist workarounds on rcs'0
[ 2.690784] [drm:intel_engines_init [i915]] Initialized 14 context workarounds on rcs'0
[ 2.690918] [drm:intel_engines_init [i915]] Initialized 1 whitelist workarounds on bcs'0
[ 2.690991] [drm:intel_engines_init [i915]] Initialized 1 whitelist workarounds on vcs'0
[ 2.691062] [drm:intel_engines_init [i915]] Initialized 1 whitelist workarounds on vecs'0
[ 2.692048] i915 0000:00:02.0: [drm:intel_dp_initial_fastset_check [i915]] Forcing full modeset to compute PSR state
[ 2.692497] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:95:eDP-1] Limiting display bpp to 24 instead of EDID bpp 24, requested bpp 36, max platform bpp 36
[ 2.692599] i915 0000:00:02.0: [drm:intel_dp_compute_config [i915]] DP link computation with max lane count 2 max rate 270000 max bpp 24 pixel clock 152840KHz
[ 2.692685] i915 0000:00:02.0: [drm:intel_dp_compute_config [i915]] Force DSC en = 0
[ 2.692760] i915 0000:00:02.0: [drm:intel_dp_compute_config [i915]] DP lane count 2 clock 270000 bpp 24
[ 2.692834] i915 0000:00:02.0: [drm:intel_dp_compute_config [i915]] DP link rate required 458520 available 540000
[ 2.692951] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] hw max bpp: 24, pipe bpp: 24, dithering: 0
[ 2.693022] i915 0000:00:02.0: [drm:intel_ddi_compute_config_late [i915]] [ENCODER:94:DDI A/PHY A] [CRTC:51:pipe A]
[ 2.693117] i915 0000:00:02.0: [drm:pipe_config_mismatch [i915]] [CRTC:51:pipe A] fastset mismatch in infoframes.enable (expected 0x00000000, found 0x00000004)
[ 2.693203] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 1, on 1, ms 1
[ 2.693308] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000f407152d to 0000000047e9f5f2
[ 2.693415] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:51:pipe A] dbuf slices 0x1, ddb (0 - 892), active pipes 0x1
[ 2.693548] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000003ab5c11c to 0000000047e9f5f2
[ 2.693707] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:31:plane 1A] ddb ( 0 - 0) -> ( 0 - 860), size 0 -> 860
[ 2.693805] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:47:cursor A] ddb ( 0 - 0) -> ( 860 - 892), size 0 -> 32
[ 2.693897] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:31:plane 1A] level *wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5,*wm6,*wm7, twm, swm
[ 2.694046] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:31:plane 1A] lines 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 -> 0, 2, 2, 3, 5, 6, 6, 7, 0, 0
[ 2.694155] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:31:plane 1A] blocks 5, 7, 7, 7, 7, 7, 7, 7, 7, 0 -> 4, 25, 34, 41, 78, 94, 98, 114, 0, 0
[ 2.694247] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:31:plane 1A] min_ddb 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 5, 26, 35, 42, 79, 95, 99, 115, 0, 0
[ 2.694337] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:39:plane 2A] level wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm -> wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm
[ 2.694428] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:39:plane 2A] lines 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 2.694514] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:39:plane 2A] blocks 7, 7, 7, 7, 7, 7, 7, 7, 7, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 2.694601] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:39:plane 2A] min_ddb 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 2.694686] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:47:cursor A] level wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm -> wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm
[ 2.694770] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:47:cursor A] lines 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 2.694872] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:47:cursor A] blocks 7, 7, 7, 7, 7, 7, 7, 7, 7, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 2.694962] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:47:cursor A] min_ddb 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 2.695056] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000005ffb9272 state 00000000b67020fb to 0000000047e9f5f2
[ 2.695178] i915 0000:00:02.0: [drm:intel_find_shared_dpll [i915]] [CRTC:51:pipe A] allocated DPLL 0
[ 2.695292] i915 0000:00:02.0: [drm:intel_reference_shared_dpll [i915]] using DPLL 0 for pipe A
[ 2.695404] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] [CRTC:51:pipe A] enable: yes [modeset]
[ 2.695517] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] active: yes, output_types: EDP (0x100), output format: RGB
[ 2.695626] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] cpu_transcoder: EDP, pipe bpp: 24, dithering: 0
[ 2.695743] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] MST master transcoder: <invalid>
[ 2.695849] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[ 2.695956] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] bigjoiner: no
[ 2.696062] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] dp m_n: lanes: 2; gmch_m: 7122860, gmch_n: 8388608, link_m: 296785, link_n: 524288, tu: 64
[ 2.696170] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x4
[ 2.696276] i915 0000:00:02.0: DP SDP: VSC, revision 0, length 0
[ 2.696279] i915 0000:00:02.0: pixelformat: RGB
[ 2.696280] i915 0000:00:02.0: colorimetry: sRGB
[ 2.696281] i915 0000:00:02.0: bpc: 0
[ 2.696283] i915 0000:00:02.0: dynamic range: VESA range
[ 2.696284] i915 0000:00:02.0: content type: Not defined
[ 2.696285] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] requested mode:
[ 2.696427] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] adjusted mode:
[ 2.696572] i915 0000:00:02.0: [drm:intel_dump_crtc_timings [i915]] crtc timings: 152840 1920 2000 2060 2250 1080 1086 1094 1132, type: 0x48 flags: 0xa
[ 2.696682] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] pipe mode:
[ 2.696822] i915 0000:00:02.0: [drm:intel_dump_crtc_timings [i915]] crtc timings: 152840 1920 2000 2060 2250 1080 1086 1094 1132, type: 0x40 flags: 0xa
[ 2.696931] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] port clock: 270000, pipe src size: 1920x1080, pixel rate 152840
[ 2.697060] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] linetime: 118, ips linetime: 0
[ 2.697167] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1
[ 2.697278] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[ 2.697384] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] ips: 0, double wide: 0
[ 2.697490] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] dpll_hw_state: ctrl1: 0x3, cfgcr1: 0x0, cfgcr2: 0x0
[ 2.697597] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] csc_mode: 0x2 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[ 2.697703] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] degamma lut: 0 entries, gamma lut: 0 entries
[ 2.697812] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] [PLANE:31:plane 1A] fb: [FB:126] 1920x1080 format = XR24 little-endian (0x34325258) modifier = 0x0, visible: yes
[ 2.697921] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] rotation: 0x1, scaler: -1
[ 2.698026] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[ 2.698134] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] [PLANE:39:plane 2A] fb: [NOFB], visible: no
[ 2.698242] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] [PLANE:47:cursor A] fb: [NOFB], visible: no
[ 2.698945] i915 0000:00:02.0: [drm:intel_edp_backlight_off [i915]]
[ 2.961290] i915 0000:00:02.0: [drm:intel_panel_actually_set_backlight [i915]] set backlight PWM = 0
[ 2.961694] i915 0000:00:02.0: [drm:intel_disable_pipe [i915]] disabling pipe A
[ 2.970565] i915 0000:00:02.0: [drm:edp_panel_off [i915]] Turn [ENCODER:94:DDI A/PHY A] panel power off
[ 2.970901] i915 0000:00:02.0: [drm:edp_panel_off [i915]] Wait for panel power off time
[ 2.971262] i915 0000:00:02.0: [drm:wait_panel_status [i915]] mask b0000000 value 00000000 status a0000002 control 00000060
[ 3.024342] i915 0000:00:02.0: [drm:edp_panel_off [i915]] Wait complete
[ 3.024718] i915 0000:00:02.0: [drm:intel_disable_shared_dpll [i915]] disable DPLL 1 (active 1, on? 1) for crtc 51
[ 3.025054] i915 0000:00:02.0: [drm:intel_disable_shared_dpll [i915]] disabling DPLL 1
[ 3.025405] i915 0000:00:02.0: [drm:intel_atomic_commit_tail [i915]] [ENCODER:94:DDI A/PHY A]
[ 3.025721] i915 0000:00:02.0: [drm:intel_atomic_commit_tail [i915]] [ENCODER:102:DDI B/PHY B]
[ 3.026027] i915 0000:00:02.0: [drm:intel_atomic_commit_tail [i915]] [ENCODER:104:DP-MST A]
[ 3.026342] i915 0000:00:02.0: [drm:intel_atomic_commit_tail [i915]] [ENCODER:105:DP-MST B]
[ 3.026643] i915 0000:00:02.0: [drm:intel_atomic_commit_tail [i915]] [ENCODER:106:DP-MST C]
[ 3.026939] i915 0000:00:02.0: [drm:intel_atomic_commit_tail [i915]] [ENCODER:118:DDI C/PHY C]
[ 3.027246] i915 0000:00:02.0: [drm:intel_atomic_commit_tail [i915]] [ENCODER:120:DP-MST A]
[ 3.027540] i915 0000:00:02.0: [drm:intel_atomic_commit_tail [i915]] [ENCODER:121:DP-MST B]
[ 3.027835] i915 0000:00:02.0: [drm:intel_atomic_commit_tail [i915]] [ENCODER:122:DP-MST C]
[ 3.028128] i915 0000:00:02.0: [drm:verify_single_dpll_state [i915]] DPLL 0
[ 3.028439] i915 0000:00:02.0: [drm:verify_single_dpll_state [i915]] DPLL 1
[ 3.028736] i915 0000:00:02.0: [drm:verify_single_dpll_state [i915]] DPLL 2
[ 3.029032] i915 0000:00:02.0: [drm:verify_single_dpll_state [i915]] DPLL 3
[ 3.029339] i915 0000:00:02.0: [drm:intel_enable_shared_dpll [i915]] enable DPLL 0 (active 1, on? 0) for crtc 51
[ 3.029651] i915 0000:00:02.0: [drm:intel_enable_shared_dpll [i915]] enabling DPLL 0
[ 3.029960] i915 0000:00:02.0: [drm:edp_panel_on [i915]] Turn [ENCODER:94:DDI A/PHY A] panel power on
[ 3.030311] i915 0000:00:02.0: [drm:wait_panel_power_cycle [i915]] Wait for panel power cycle
[ 3.641469] i915 0000:00:02.0: [drm:wait_panel_status [i915]] mask b800000f value 00000000 status 00000000 control 00000060
[ 3.641861] i915 0000:00:02.0: [drm:edp_panel_on [i915]] Wait complete
[ 3.642278] i915 0000:00:02.0: [drm:edp_panel_on [i915]] Wait for panel power on
[ 3.642701] i915 0000:00:02.0: [drm:wait_panel_status [i915]] mask b000000f value 80000008 status 9000000a control 00000063
[ 3.851276] i915 0000:00:02.0: [drm:edp_panel_on [i915]] Wait complete
[ 3.851676] i915 0000:00:02.0: [drm:edp_panel_vdd_on [i915]] Turning [ENCODER:94:DDI A/PHY A] VDD on
[ 3.852124] i915 0000:00:02.0: [drm:edp_panel_vdd_on [i915]] PP_STATUS: 0x80000008 PP_CONTROL: 0x0000006b
[ 3.854281] i915 0000:00:02.0: [drm:intel_dp_start_link_train [i915]] Using LINK_BW_SET value 0a
[ 3.855042] i915 0000:00:02.0: [drm:intel_dp_set_signal_levels [i915]] Using vswing level 0, pre-emphasis level 0, at DPRX
[ 3.855374] i915 0000:00:02.0: [drm:hsw_set_signal_levels [i915]] Using signal levels 00000000
[ 3.855679] i915 0000:00:02.0: [drm:intel_dp_program_link_training_pattern [i915]] Using DP training pattern TPS1
[ 3.856827] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] clock recovery OK
[ 3.857122] i915 0000:00:02.0: [drm:intel_dp_program_link_training_pattern [i915]] Using DP training pattern TPS2
[ 3.858616] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] Channel EQ done. DP Training successful
[ 3.858905] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] [CONNECTOR:95:eDP-1] Link Training passed at link rate = 270000, lane count = 2, at DPRX
[ 3.859428] i915 0000:00:02.0: [drm:intel_enable_pipe [i915]] enabling pipe A
[ 3.859750] i915 0000:00:02.0: [drm:intel_edp_backlight_on [i915]]
[ 3.860045] i915 0000:00:02.0: [drm:intel_panel_enable_backlight [i915]] pipe A
[ 3.860395] i915 0000:00:02.0: [drm:intel_panel_actually_set_backlight [i915]] set backlight PWM = 5989
[ 3.860852] i915 0000:00:02.0: [drm:intel_psr_enable_locked [i915]] Enabling PSR1
[ 3.862198] i915 0000:00:02.0: [drm:intel_fbc_enable [i915]] reserved 16588800 bytes of contiguous stolen space for FBC, threshold: 1
[ 3.862500] i915 0000:00:02.0: [drm:intel_fbc_enable [i915]] Enabling FBC on pipe A
[ 3.876652] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:95:eDP-1]
[ 3.877024] i915 0000:00:02.0: [drm:intel_atomic_commit_tail [i915]] [CRTC:51:pipe A]
[ 3.877425] i915 0000:00:02.0: [drm:verify_single_dpll_state [i915]] DPLL 0
[ 3.877750] i915 0000:00:02.0: [drm:intel_sagv_post_plane_update [i915]] Enabling SAGV
[ 3.878019] i915 0000:00:02.0: [drm:intel_uncore_arm_unclaimed_mmio_detection [i915]] Unclaimed register detected, enabling oneshot unclaimed register reporting. Please use i915.mmio_debug=N for more information.
[ 3.878504] i915 0000:00:02.0: [drm:intel_fbdev_init [i915]] found possible fb from plane A
[ 3.878832] i915 0000:00:02.0: [drm:intel_fbdev_init [i915]] pipe B not active or no fb, skipping
[ 3.879140] i915 0000:00:02.0: [drm:intel_fbdev_init [i915]] pipe C not active or no fb, skipping
[ 3.879449] i915 0000:00:02.0: [drm:intel_fbdev_init [i915]] checking plane A for BIOS fb
[ 3.879743] i915 0000:00:02.0: [drm:intel_fbdev_init [i915]] pipe A area: 1920x1080, bpp: 32, size: 8294400
[ 3.880037] i915 0000:00:02.0: [drm:intel_fbdev_init [i915]] fb big enough for plane A (8294400 >= 8294400)
[ 3.880342] i915 0000:00:02.0: [drm:intel_fbdev_init [i915]] pipe B not active, skipping
[ 3.880631] i915 0000:00:02.0: [drm:intel_fbdev_init [i915]] pipe C not active, skipping
[ 3.880919] i915 0000:00:02.0: [drm:intel_fbdev_init [i915]] using BIOS fb for initial console
[ 3.881518] [drm:intel_engines_driver_register [i915]] renamed rcs'0 to rcs0
[ 3.881797] [drm:intel_engines_driver_register [i915]] renamed bcs'0 to bcs0
[ 3.882060] [drm:intel_engines_driver_register [i915]] renamed vcs'0 to vcs0
[ 3.882329] [drm:intel_engines_driver_register [i915]] renamed vecs'0 to vecs0
[ 3.883924] i915 0000:00:02.0: [drm:intel_backlight_device_register [i915]] Connector eDP-1 backlight sysfs interface registered
[ 3.884283] i915 0000:00:02.0: [drm:intel_dp_connector_register [i915]] registering AUX A/DDI A/PHY A bus for card0-eDP-1
[ 3.884837] i915 0000:00:02.0: [drm:intel_dp_connector_register [i915]] registering AUX B/DDI B/PHY B bus for card0-DP-1
[ 3.886026] i915 0000:00:02.0: [drm:intel_dp_connector_register [i915]] registering AUX C/DDI C/PHY C bus for card0-DP-2
[ 3.886587] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[ 3.886963] i915 0000:00:02.0: [drm:intel_opregion_resume [i915]] 4 outputs detected
[ 3.895391] i915 0000:00:02.0: [drm:intel_audio_init [i915]] init value of AUD_FREQ_CNTRL of 0x10
[ 3.895696] i915 0000:00:02.0: [drm:__intel_display_power_put_domain [i915]] disabling DDI D IO power well
[ 3.895900] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:95:eDP-1]
[ 3.896120] i915 0000:00:02.0: [drm:__intel_display_power_put_domain [i915]] disabling DDI C IO power well
[ 3.896497] i915 0000:00:02.0: [drm:__intel_display_power_put_domain [i915]] disabling DDI B IO power well
[ 3.896813] i915 0000:00:02.0: [drm:__intel_display_power_put_domain [i915]] disabling power well 2
[ 3.897244] [drm:intel_dsm_detect.isra.0 [i915]] no _DSM method for intel device
[ 3.897573] i915 device info: pciid=0x9bca rev=0x04 platform=COMETLAKE (subplatform=0x1) gen=9
[ 3.897584] i915 device info: gen: 9
[ 3.897589] i915 device info: gt: 2
[ 3.897598] i915 device info: iommu: enabled
[ 3.897603] i915 device info: memory-regions: 5
[ 3.897607] i915 device info: page-sizes: 11000
[ 3.897612] i915 device info: platform: COMETLAKE
[ 3.897616] i915 device info: ppgtt-size: 48
[ 3.897620] i915 device info: ppgtt-type: 2
[ 3.897624] i915 device info: dma_mask_size: 39
[ 3.897628] i915 device info: is_mobile: no
[ 3.897633] i915 device info: is_lp: no
[ 3.897638] i915 device info: require_force_probe: no
[ 3.897642] i915 device info: is_dgfx: no
[ 3.897647] i915 device info: has_64bit_reloc: yes
[ 3.897651] i915 device info: gpu_reset_clobbers_display: no
[ 3.897656] i915 device info: has_reset_engine: yes
[ 3.897660] i915 device info: has_fpga_dbg: yes
[ 3.897664] i915 device info: has_global_mocs: no
[ 3.897668] i915 device info: has_gt_uc: yes
[ 3.897672] i915 device info: has_l3_dpf: no
[ 3.897677] i915 device info: has_llc: yes
[ 3.897681] i915 device info: has_logical_ring_contexts: yes
[ 3.897685] i915 device info: has_logical_ring_elsq: no
[ 3.897689] i915 device info: has_logical_ring_preemption: yes
[ 3.897693] i915 device info: has_master_unit_irq: no
[ 3.897698] i915 device info: has_pooled_eu: no
[ 3.897702] i915 device info: has_rc6: yes
[ 3.897706] i915 device info: has_rc6p: no
[ 3.897710] i915 device info: has_rps: yes
[ 3.897714] i915 device info: has_runtime_pm: yes
[ 3.897718] i915 device info: has_snoop: no
[ 3.897722] i915 device info: has_coherent_ggtt: yes
[ 3.897726] i915 device info: unfenced_needs_alignment: no
[ 3.897730] i915 device info: hws_needs_physical: no
[ 3.897734] i915 device info: cursor_needs_physical: no
[ 3.897738] i915 device info: has_csr: yes
[ 3.897742] i915 device info: has_ddi: yes
[ 3.897551] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [ENCODER:94:DDI A/PHY A] MST support: port: no, sink: no, modparam: yes
[ 3.897746] i915 device info: has_dp_mst: yes
[ 3.897750] i915 device info: has_dsb: no
[ 3.897754] i915 device info: has_dsc: no
[ 3.897758] i915 device info: has_fbc: yes
[ 3.897761] i915 device info: has_gmch: no
[ 3.897765] i915 device info: has_hdcp: yes
[ 3.897769] i915 device info: has_hotplug: yes
[ 3.897773] i915 device info: has_hti: no
[ 3.897777] i915 device info: has_ipc: yes
[ 3.897780] i915 device info: has_modular_fia: no
[ 3.897784] i915 device info: has_overlay: no
[ 3.897788] i915 device info: has_psr: yes
[ 3.897792] i915 device info: has_psr_hw_tracking: yes
[ 3.897796] i915 device info: overlay_needs_physical: no
[ 3.897800] i915 device info: supports_tv: no
[ 3.897804] i915 device info: rawclk rate: 24000 kHz
[ 3.897809] i915 device info: CS timestamp frequency: 12000000 Hz
[ 3.897814] i915 device info: available engines: 47
[ 3.897818] i915 device info: slice total: 1, mask=0001
[ 3.897824] i915 device info: subslice total: 3
[ 3.897828] i915 device info: slice0: 3 subslices, mask=00000007
[ 3.897834] i915 device info: slice1: 0 subslices, mask=00000000
[ 3.897839] i915 device info: slice2: 0 subslices, mask=00000000
[ 3.897845] i915 device info: EU total: 24
[ 3.897849] i915 device info: EU per subslice: 8
[ 3.897852] i915 device info: has slice power gating: no
[ 3.897856] i915 device info: has subslice power gating: no
[ 3.897860] i915 device info: has EU power gating: yes
[ 3.897949] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[ 3.898280] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[ 3.898542] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[ 3.898803] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:95:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0
[ 3.899062] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:95:eDP-1] YCbCr 4:2:0 allowed? no, YCbCr 4:4:4->4:2:0 conversion? no
[ 3.900701] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:103:DP-1]
[ 3.901099] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:113:HDMI-A-1]
[ 3.901824] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 3.902091] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[ 3.902740] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 3.903047] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[ 3.903115] i915 0000:00:02.0: [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[ 3.903386] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[ 3.911073] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[ 3.911140] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[ 3.911842] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[ 3.912099] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[ 3.912690] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[ 3.913105] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:119:DP-2]
[ 3.914001] i915 0000:00:02.0: [drm:__drm_fb_helper_initial_config_and_unlock [drm_kms_helper]] test CRTC 0 primary plane
[ 3.914036] i915 0000:00:02.0: [drm:__drm_fb_helper_initial_config_and_unlock [drm_kms_helper]] test CRTC 1 primary plane
[ 3.914066] i915 0000:00:02.0: [drm:__drm_fb_helper_initial_config_and_unlock [drm_kms_helper]] test CRTC 2 primary plane
[ 3.914095] i915 0000:00:02.0: [drm:intelfb_create [i915]] re-using BIOS fb
[ 3.914369] i915 0000:00:02.0: [drm:intelfb_create [i915]] allocated 1920x1080 fb: 0x00000000
[ 3.914738] fbcon: i915drmfb (fb0) is primary device
[ 3.914745] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[ 3.923347] i915 0000:00:02.0: [drm:drm_fb_helper_hotplug_event.part.0 [drm_kms_helper]]
[ 3.923580] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:95:eDP-1]
[ 3.924221] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [ENCODER:94:DDI A/PHY A] MST support: port: no, sink: no, modparam: yes
[ 3.924498] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[ 3.924760] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[ 3.925006] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[ 3.925269] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:95:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0
[ 3.925520] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:95:eDP-1] YCbCr 4:2:0 allowed? no, YCbCr 4:4:4->4:2:0 conversion? no
[ 3.927686] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:103:DP-1]
[ 3.927967] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:113:HDMI-A-1]
[ 3.928599] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 3.928765] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[ 3.929336] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 3.929549] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[ 3.929610] i915 0000:00:02.0: [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[ 3.929766] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[ 3.937328] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[ 3.937410] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[ 3.937982] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[ 3.938105] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[ 3.938632] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[ 3.938870] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:119:DP-2]
[ 3.939519] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:95:eDP-1]
[ 3.939677] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:39:plane 2A] state 00000000c6b3e689
[ 3.939783] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:47:cursor A] state 000000002ca29006
[ 3.939940] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:60:plane 2B] state 0000000054499c48
[ 3.940044] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:68:cursor B] state 00000000357b2629
[ 3.940028] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [ENCODER:94:DDI A/PHY A] MST support: port: no, sink: no, modparam: yes
[ 3.940170] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:81:plane 2C] state 000000007b4164b7
[ 3.940156] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[ 3.940263] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:89:cursor C] state 00000000cf289d76
[ 3.940307] i915 0000:00:02.0: [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:1920x1080] for [CRTC:51:pipe A] state 000000009337cd77
[ 3.940291] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[ 3.940348] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:126] for [PLANE:31:plane 1A] state 000000003dd65d81
[ 3.940410] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[ 3.940528] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:95:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0
[ 3.940644] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:95:eDP-1] YCbCr 4:2:0 allowed? no, YCbCr 4:4:4->4:2:0 conversion? no
[ 3.941927] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:eDP-1] state 000000000abe2dc1 to [NOCRTC]
[ 3.941995] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:eDP-1] state 000000000abe2dc1 to [CRTC:51:pipe A]
[ 3.942105] i915 0000:00:02.0: [drm:drm_atomic_set_mode_for_crtc [drm]] Set [NOMODE] for [CRTC:72:pipe B] state 00000000d153d018
[ 3.942146] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:52:plane 1B] state 0000000032d289d6
[ 3.942302] i915 0000:00:02.0: [drm:drm_atomic_set_mode_for_crtc [drm]] Set [NOMODE] for [CRTC:93:pipe C] state 0000000074d85c22
[ 3.942343] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:73:plane 1C] state 00000000919da1db
[ 3.942708] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:95:eDP-1] Limiting display bpp to 24 instead of EDID bpp 24, requested bpp 36, max platform bpp 36
[ 3.942815] i915 0000:00:02.0: [drm:intel_dp_compute_config [i915]] DP link computation with max lane count 2 max rate 270000 max bpp 24 pixel clock 152840KHz
[ 3.942914] i915 0000:00:02.0: [drm:intel_dp_compute_config [i915]] Force DSC en = 0
[ 3.943006] i915 0000:00:02.0: [drm:intel_dp_compute_config [i915]] DP lane count 2 clock 270000 bpp 24
[ 3.943097] i915 0000:00:02.0: [drm:intel_dp_compute_config [i915]] DP link rate required 458520 available 540000
[ 3.943204] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] hw max bpp: 24, pipe bpp: 24, dithering: 0
[ 3.943300] i915 0000:00:02.0: [drm:intel_ddi_compute_config_late [i915]] [ENCODER:94:DDI A/PHY A] [CRTC:51:pipe A]
[ 3.943399] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 3.943498] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000002038d223 to 00000000be046348
[ 3.943599] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 0000000092bf9d9f to 00000000be046348
[ 3.943694] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:31:plane 1A] level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5,*wm6,*wm7, twm, swm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5,*wm6,*wm7, twm, swm
[ 3.943762] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:31:plane 1A] lines 0, 2, 2, 3, 5, 6, 6, 7, 0, 0 -> 0, 2, 3, 3, 5, 6, 6, 7, 0, 0
[ 3.943832] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:31:plane 1A] blocks 4, 25, 34, 41, 78, 94, 98, 114, 0, 0 -> 9, 30, 41, 45, 82, 98, 98, 114, 0, 0
[ 3.943900] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:31:plane 1A] min_ddb 5, 26, 35, 42, 79, 95, 99, 115, 0, 0 -> 10, 31, 42, 46, 83, 99, 99, 115, 0, 0
[ 3.943968] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:52:plane 1B] level wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm -> wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm
[ 3.944034] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:52:plane 1B] lines 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 3.944102] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:52:plane 1B] blocks 7, 7, 7, 7, 7, 7, 7, 7, 7, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 3.944169] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:52:plane 1B] min_ddb 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 3.944244] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:60:plane 2B] level wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm -> wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm
[ 3.944310] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:60:plane 2B] lines 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 3.944378] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:60:plane 2B] blocks 7, 7, 7, 7, 7, 7, 7, 7, 7, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 3.944444] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:60:plane 2B] min_ddb 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 3.944511] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:68:cursor B] level wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm -> wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm
[ 3.944576] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:68:cursor B] lines 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 3.944644] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:68:cursor B] blocks 7, 7, 7, 7, 7, 7, 7, 7, 7, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 3.944710] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:68:cursor B] min_ddb 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 3.944777] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:73:plane 1C] level wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm -> wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm
[ 3.944843] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:73:plane 1C] lines 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 3.944910] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:73:plane 1C] blocks 7, 7, 7, 7, 7, 7, 7, 7, 7, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 3.944977] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:73:plane 1C] min_ddb 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 3.945044] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:81:plane 2C] level wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm -> wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm
[ 3.945109] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:81:plane 2C] lines 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 3.945183] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:81:plane 2C] blocks 7, 7, 7, 7, 7, 7, 7, 7, 7, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 3.945255] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:81:plane 2C] min_ddb 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 3.945321] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:89:cursor C] level wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm -> wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm
[ 3.945400] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:89:cursor C] lines 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 3.945438] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:89:cursor C] blocks 7, 7, 7, 7, 7, 7, 7, 7, 7, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 3.945475] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:89:cursor C] min_ddb 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 3.945515] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] [CRTC:51:pipe A] enable: yes [fastset]
[ 3.945568] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] active: yes, output_types: EDP (0x100), output format: RGB
[ 3.945621] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] cpu_transcoder: EDP, pipe bpp: 24, dithering: 0
[ 3.945672] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] MST master transcoder: <invalid>
[ 3.945723] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[ 3.945773] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] bigjoiner: no
[ 3.945824] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] dp m_n: lanes: 2; gmch_m: 7122860, gmch_n: 8388608, link_m: 296785, link_n: 524288, tu: 64
[ 3.945875] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x4
[ 3.945926] i915 0000:00:02.0: DP SDP: VSC, revision 0, length 0
[ 3.945928] i915 0000:00:02.0: pixelformat: RGB
[ 3.945928] i915 0000:00:02.0: colorimetry: sRGB
[ 3.945929] i915 0000:00:02.0: bpc: 0
[ 3.945930] i915 0000:00:02.0: dynamic range: VESA range
[ 3.945931] i915 0000:00:02.0: content type: Not defined
[ 3.945931] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] requested mode:
[ 3.946003] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] adjusted mode:
[ 3.946073] i915 0000:00:02.0: [drm:intel_dump_crtc_timings [i915]] crtc timings: 152840 1920 2000 2060 2250 1080 1086 1094 1132, type: 0x48 flags: 0xa
[ 3.946125] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] pipe mode:
[ 3.946198] i915 0000:00:02.0: [drm:intel_dump_crtc_timings [i915]] crtc timings: 152840 1920 2000 2060 2250 1080 1086 1094 1132, type: 0x40 flags: 0xa
[ 3.946249] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] port clock: 270000, pipe src size: 1920x1080, pixel rate 152840
[ 3.946300] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] linetime: 118, ips linetime: 0
[ 3.946351] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1
[ 3.946401] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[ 3.946452] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] ips: 0, double wide: 0
[ 3.946503] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] dpll_hw_state: ctrl1: 0x3, cfgcr1: 0x0, cfgcr2: 0x0
[ 3.946553] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] csc_mode: 0x2 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[ 3.946604] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] degamma lut: 0 entries, gamma lut: 0 entries
[ 3.946655] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] [PLANE:31:plane 1A] fb: [FB:126] 1920x1080 format = XR24 little-endian (0x34325258) modifier = 0x0, visible: yes
[ 3.946706] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] rotation: 0x1, scaler: -1
[ 3.946757] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[ 3.946808] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] [PLANE:39:plane 2A] fb: [NOFB], visible: no
[ 3.946858] i915 0000:00:02.0: [drm:intel_dump_pipe_config [i915]] [PLANE:47:cursor A] fb: [NOFB], visible: no
[ 3.959842] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:95:eDP-1]
[ 3.959928] i915 0000:00:02.0: [drm:intel_atomic_commit_tail [i915]] [CRTC:51:pipe A]
[ 3.960020] i915 0000:00:02.0: [drm:verify_single_dpll_state [i915]] DPLL 0
[ 3.960174] i915 0000:00:02.0: [drm:drm_fb_helper_hotplug_event.part.0 [drm_kms_helper]]
[ 3.960159] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:103:DP-1]
[ 3.960276] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:95:eDP-1]
[ 3.960678] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [ENCODER:94:DDI A/PHY A] MST support: port: no, sink: no, modparam: yes
[ 3.960734] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[ 3.960786] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[ 3.960837] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[ 3.960888] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:95:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0
[ 3.960939] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:95:eDP-1] YCbCr 4:2:0 allowed? no, YCbCr 4:4:4->4:2:0 conversion? no
[ 3.961837] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:103:DP-1]
[ 3.961933] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:113:HDMI-A-1]
[ 3.962420] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 3.962474] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[ 3.962917] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 3.963014] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[ 3.963034] i915 0000:00:02.0: [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[ 3.963084] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[ 3.970475] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[ 3.970496] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[ 3.970991] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[ 3.971042] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[ 3.971481] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[ 3.971610] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:119:DP-2]
[ 3.971880] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:113:HDMI-A-1]
[ 3.971960] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:39:plane 2A] state 000000000b00c08c
[ 3.971998] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:47:cursor A] state 00000000e1e0a00b
[ 3.972054] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:60:plane 2B] state 0000000052ec4f54
[ 3.972091] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:68:cursor B] state 000000009d92edc7
[ 3.972147] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:81:plane 2C] state 00000000be4a1495
[ 3.972189] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:89:cursor C] state 000000005bde48df
[ 3.972207] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:126] for [PLANE:31:plane 1A] state 00000000d4061228
[ 3.972404] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 3.972485] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[ 3.972957] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 3.973054] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[ 3.973075] i915 0000:00:02.0: [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[ 3.973132] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[ 3.980602] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[ 3.980625] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[ 3.981085] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[ 3.981132] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[ 3.981557] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[ 3.981689] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:119:DP-2]
[ 3.981876] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:eDP-1] state 00000000b1a08f11 to [NOCRTC]
[ 3.981895] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:eDP-1] state 00000000b1a08f11 to [CRTC:51:pipe A]
[ 3.981935] i915 0000:00:02.0: [drm:drm_atomic_set_mode_for_crtc [drm]] Set [NOMODE] for [CRTC:72:pipe B] state 00000000880597ca
[ 3.981953] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:52:plane 1B] state 00000000e862e30a
[ 3.982008] i915 0000:00:02.0: [drm:drm_atomic_set_mode_for_crtc [drm]] Set [NOMODE] for [CRTC:93:pipe C] state 0000000054ba4941
[ 3.982025] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:73:plane 1C] state 00000000f922db23
[ 3.982147] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 3.982214] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 0000000075c05827 to 00000000be046348
[ 3.982270] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 0000000092bf9d9f to 00000000be046348
[ 4.020290] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000922b3845 to 00000000e586ff7e
[ 4.020355] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000b3c8209d to 00000000e586ff7e
[ 4.026671] i915 0000:00:02.0: [drm:drm_atomic_set_mode_for_crtc [drm]] Set [MODE:1920x1080] for [CRTC:51:pipe A] state 000000003833a2e2
[ 4.026692] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 00000000bb8c0961
[ 4.026752] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:eDP-1] state 000000007b82cfad to [NOCRTC]
[ 4.026771] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_connector [drm]] Link [CONNECTOR:95:eDP-1] state 000000007b82cfad to [CRTC:51:pipe A]
[ 4.026882] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 4.026952] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000b37559fe to 00000000e586ff7e
[ 4.027013] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000b3c8209d to 00000000e586ff7e
[ 4.046841] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:95:eDP-1]
[ 4.047246] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [ENCODER:94:DDI A/PHY A] MST support: port: no, sink: no, modparam: yes
[ 4.047306] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[ 4.047359] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[ 4.047411] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[ 4.047463] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:95:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0
[ 4.047514] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:95:eDP-1] YCbCr 4:2:0 allowed? no, YCbCr 4:4:4->4:2:0 conversion? no
[ 4.048420] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:103:DP-1]
[ 4.048519] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:113:HDMI-A-1]
[ 4.048946] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 4.048998] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[ 4.049433] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 4.049527] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[ 4.049546] i915 0000:00:02.0: [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[ 4.049595] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[ 4.056582] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[ 4.056602] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[ 4.057061] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[ 4.057110] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[ 4.057580] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[ 4.057704] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:119:DP-2]
[ 5.224787] [drm:intel_backlight_device_update_status [i915]] updating intel_backlight, brightness=5772/24242
[ 5.224857] i915 0000:00:02.0: [drm:intel_panel_actually_set_backlight [i915]] set backlight PWM = 5989
[ 5.812654] i915 0000:00:02.0: [drm:i915_hdcp_component_bind [i915]] I915 HDCP comp bind
[ 5.812754] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
[ 6.042736] sof-audio-pci 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[ 6.042823] i915 0000:00:02.0: [drm:__intel_display_power_get_domain.part.0 [i915]] enabling power well 2
[ 6.042915] i915 0000:00:02.0: [drm:i915_audio_component_get_power [i915]] restored AUD_FREQ_CNTRL to 0x10
[ 6.237898] i915 0000:00:02.0: [drm:__intel_display_power_put_domain [i915]] disabling power well 2
[ 6.285359] i915 0000:00:02.0: [drm:__intel_display_power_get_domain.part.0 [i915]] enabling power well 2
[ 6.285466] i915 0000:00:02.0: [drm:i915_audio_component_get_power [i915]] restored AUD_FREQ_CNTRL to 0x10
[ 6.291783] i915 0000:00:02.0: [drm:i915_audio_component_get_eld [i915]] Not valid for port B
[ 6.291843] i915 0000:00:02.0: [drm:i915_audio_component_get_eld [i915]] Not valid for port B
[ 6.291889] i915 0000:00:02.0: [drm:i915_audio_component_get_eld [i915]] Not valid for port B
[ 6.291934] i915 0000:00:02.0: [drm:i915_audio_component_get_eld [i915]] Not valid for port C
[ 6.291979] i915 0000:00:02.0: [drm:i915_audio_component_get_eld [i915]] Not valid for port C
[ 6.292024] i915 0000:00:02.0: [drm:i915_audio_component_get_eld [i915]] Not valid for port C
[ 6.292069] i915 0000:00:02.0: [drm:i915_audio_component_get_eld [i915]] Not valid for port D
[ 6.292114] i915 0000:00:02.0: [drm:i915_audio_component_get_eld [i915]] Not valid for port D
[ 6.292159] i915 0000:00:02.0: [drm:i915_audio_component_get_eld [i915]] Not valid for port D
[ 6.292224] i915 0000:00:02.0: [drm:__intel_display_power_put_domain [i915]] disabling power well 2
[ 6.292908] i915 0000:00:02.0: [drm:__intel_display_power_get_domain.part.0 [i915]] enabling power well 2
[ 6.292970] i915 0000:00:02.0: [drm:i915_audio_component_get_power [i915]] restored AUD_FREQ_CNTRL to 0x10
[ 6.298093] i915 0000:00:02.0: [drm:__intel_display_power_put_domain [i915]] disabling power well 2
[ 7.097245] i915 0000:00:02.0: [drm:edp_panel_vdd_off_sync [i915]] Turning [ENCODER:94:DDI A/PHY A] VDD off
[ 7.097437] i915 0000:00:02.0: [drm:edp_panel_vdd_off_sync [i915]] PP_STATUS: 0x80000008 PP_CONTROL: 0x00000067
[ 7.097489] i915 0000:00:02.0: [drm:__intel_display_power_put_domain [i915]] disabling DC off
[ 7.097543] i915 0000:00:02.0: [drm:skl_enable_dc6 [i915]] Enabling DC6
[ 7.097593] i915 0000:00:02.0: [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[ 14.000134] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:95:eDP-1]
[ 14.000213] i915 0000:00:02.0: [drm:__intel_display_power_get_domain.part.0 [i915]] enabling DC off
[ 14.000269] i915 0000:00:02.0: [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[ 14.000351] i915 0000:00:02.0: [drm:edp_panel_vdd_on [i915]] Turning [ENCODER:94:DDI A/PHY A] VDD on
[ 14.000544] i915 0000:00:02.0: [drm:edp_panel_vdd_on [i915]] PP_STATUS: 0x80000008 PP_CONTROL: 0x0000006f
[ 14.000941] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [ENCODER:94:DDI A/PHY A] MST support: port: no, sink: no, modparam: yes
[ 14.000991] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000
[ 14.001039] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[ 14.001087] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[ 14.001135] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:95:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0
[ 14.001188] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:95:eDP-1] YCbCr 4:2:0 allowed? no, YCbCr 4:4:4->4:2:0 conversion? no
[ 14.002145] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:103:DP-1]
[ 14.002271] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:113:HDMI-A-1]
[ 14.002750] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 14.002801] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[ 14.003224] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0050 w(1)
[ 14.003323] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[ 14.003341] i915 0000:00:02.0: [drm:intel_hdmi_set_edid [i915]] HDMI GMBUS EDID read failed, retry using GPIO bit-banging
[ 14.003389] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] enabling bit-banging on i915 gmbus dpb. force bit now 1
[ 14.010858] [drm:drm_do_probe_ddc_edid [drm]] drm: skipping non-existent adapter i915 gmbus dpb
[ 14.010880] i915 0000:00:02.0: [drm:intel_gmbus_force_bit [i915]] disabling bit-banging on i915 gmbus dpb. force bit now 0
[ 14.011379] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[ 14.011432] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK on first message, retry
[ 14.011844] i915 0000:00:02.0: [drm:do_gmbus_xfer [i915]] GMBUS [i915 gmbus dpb] NAK for addr: 0040 w(1)
[ 14.012018] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:119:DP-2]
[ 14.220801] i915 0000:00:02.0: [drm:i915_gem_context_create_ioctl [i915]] HW context 1 created
[ 14.220894] i915 0000:00:02.0: [drm:i915_gem_context_create_ioctl [i915]] HW context 2 created
[ 14.227971] i915 0000:00:02.0: [drm:i915_gem_context_create_ioctl [i915]] HW context 3 created
[ 14.228065] i915 0000:00:02.0: [drm:i915_gem_context_create_ioctl [i915]] HW context 4 created
[ 14.228998] i915 0000:00:02.0: [drm:i915_gem_context_create_ioctl [i915]] HW context 3 created
[ 14.229054] i915 0000:00:02.0: [drm:i915_gem_context_create_ioctl [i915]] HW context 4 created
[ 15.496312] i915 0000:00:02.0: [drm:i915_gem_context_create_ioctl [i915]] HW context 1 created
[ 15.496420] i915 0000:00:02.0: [drm:i915_gem_context_create_ioctl [i915]] HW context 2 created
[ 15.525251] i915 0000:00:02.0: [drm:__intel_display_power_get_domain.part.0 [i915]] enabling power well 2
[ 15.525334] i915 0000:00:02.0: [drm:i915_audio_component_get_power [i915]] restored AUD_FREQ_CNTRL to 0x10
[ 15.658976] i915 0000:00:02.0: [drm:i915_audio_component_get_eld [i915]] Not valid for port B
[ 15.659050] i915 0000:00:02.0: [drm:i915_audio_component_get_eld [i915]] Not valid for port B
[ 15.659098] i915 0000:00:02.0: [drm:i915_audio_component_get_eld [i915]] Not valid for port B
[ 15.659151] i915 0000:00:02.0: [drm:i915_audio_component_get_eld [i915]] Not valid for port C
[ 15.659197] i915 0000:00:02.0: [drm:i915_audio_component_get_eld [i915]] Not valid for port C
[ 15.659242] i915 0000:00:02.0: [drm:i915_audio_component_get_eld [i915]] Not valid for port C
[ 15.659287] i915 0000:00:02.0: [drm:i915_audio_component_get_eld [i915]] Not valid for port D
[ 15.659332] i915 0000:00:02.0: [drm:i915_audio_component_get_eld [i915]] Not valid for port D
[ 15.659377] i915 0000:00:02.0: [drm:i915_audio_component_get_eld [i915]] Not valid for port D
[ 16.102544] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:130] for [PLANE:31:plane 1A] state 00000000ee63da82
[ 16.102585] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:39:plane 2A] state 000000001c99e9cb
[ 16.102621] i915 0000:00:02.0: [drm:drm_atomic_set_crtc_for_plane [drm]] Link [PLANE:47:cursor A] state 00000000179dddda to [CRTC:51:pipe A]
[ 16.102639] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:127] for [PLANE:47:cursor A] state 00000000179dddda
[ 16.102658] i915 0000:00:02.0: [drm:drm_atomic_set_mode_prop_for_crtc [drm]] Set [MODE:1920x1080] for [CRTC:51:pipe A] state 000000002457e00b
[ 16.102694] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:52:plane 1B] state 0000000001a604ff
[ 16.102730] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:60:plane 2B] state 000000001b15d36b
[ 16.102765] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:68:cursor B] state 000000008c684412
[ 16.102800] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:73:plane 1C] state 00000000b6fef018
[ 16.102836] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:81:plane 2C] state 00000000d7bbb9ce
[ 16.102871] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [NOFB] for [PLANE:89:cursor C] state 00000000480d059c
[ 16.103117] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.103207] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:47:cursor A] visible 0 -> 1, off 0, on 1, ms 0
[ 16.103265] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000004ae0026c to 00000000461702a2
[ 16.103322] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 0000000072849a6d to 00000000461702a2
[ 16.103374] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:31:plane 1A] level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5,*wm6,*wm7, twm, swm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5,*wm6,*wm7, twm, swm
[ 16.103410] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:31:plane 1A] lines 0, 2, 3, 3, 5, 6, 6, 7, 0, 0 -> 0, 3, 4, 4, 6, 7, 7, 9, 0, 0
[ 16.103446] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:31:plane 1A] blocks 9, 30, 41, 45, 82, 98, 98, 114, 0, 0 -> 27, 47, 59, 62, 92, 107, 107, 137, 0, 0
[ 16.103482] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:31:plane 1A] min_ddb 10, 31, 42, 46, 83, 99, 99, 115, 0, 0 -> 28, 48, 60, 63, 93, 108, 108, 138, 0, 0
[ 16.103518] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:47:cursor A] level wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5,*wm6,*wm7, twm, swm
[ 16.103553] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:47:cursor A] lines 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 0, 2, 3, 3, 5, 6, 6, 7, 0, 0
[ 16.103589] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:47:cursor A] blocks 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 9, 9, 11, 11, 17, 20, 20, 23, 0, 0
[ 16.103624] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [PLANE:47:cursor A] min_ddb 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 10, 10, 12, 12, 18, 21, 21, 24, 0, 0
[ 16.105615] i915 0000:00:02.0: [drm:__intel_fbc_disable [i915]] Disabling FBC on pipe A
[ 16.105671] i915 0000:00:02.0: [drm:intel_fbc_enable [i915]] reserved 16588800 bytes of contiguous stolen space for FBC, threshold: 1
[ 16.105722] i915 0000:00:02.0: [drm:intel_fbc_enable [i915]] Enabling FBC on pipe A
[ 16.149201] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:31:plane 1A] state 00000000a713a431
[ 16.149277] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.149380] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000eafe531b to 000000009e1819ed
[ 16.149471] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 0000000012c7c51b to 000000009e1819ed
[ 16.313671] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:130] for [PLANE:31:plane 1A] state 00000000b0339917
[ 16.313752] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.313862] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000005fbfb7bd to 000000004a4d9af0
[ 16.313955] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 0000000022814f53 to 000000004a4d9af0
[ 16.348773] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:31:plane 1A] state 00000000a834e895
[ 16.348822] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.348904] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000c9aa3744 to 00000000bee1e434
[ 16.348966] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000cdc3373b to 00000000bee1e434
[ 16.361963] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 000000005581ce6d
[ 16.362046] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.362120] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000004492e756 to 00000000aba500ca
[ 16.362195] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000cbf11c91 to 00000000aba500ca
[ 16.378470] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:31:plane 1A] state 000000004fc0f44f
[ 16.378512] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.378574] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000f9ca01d3 to 000000005c6129fe
[ 16.378632] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 0000000011ed57d8 to 000000005c6129fe
[ 16.395681] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 0000000043fa0d6f
[ 16.395738] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.395827] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000008ab0c8af to 000000003fcc7543
[ 16.395901] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000004977495f to 000000003fcc7543
[ 16.412620] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:31:plane 1A] state 000000004f5f9012
[ 16.412704] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.412842] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 0000000011bd5259 to 000000008947f836
[ 16.412949] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 0000000015dedc94 to 000000008947f836
[ 16.429649] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 00000000425daaf2
[ 16.429795] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.430053] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 0000000040a243bf to 00000000ff2589cf
[ 16.430358] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000005f8289b7 to 00000000ff2589cf
[ 16.446646] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:31:plane 1A] state 000000009c4b6cea
[ 16.446825] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.447110] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000cc6ac58d to 000000006d2f16fe
[ 16.447392] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000686fbce6 to 000000006d2f16fe
[ 16.463683] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 0000000061100816
[ 16.463884] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.464248] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000dcb4cd85 to 00000000461702a2
[ 16.464506] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000005f7cb68a to 00000000461702a2
[ 16.480214] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:31:plane 1A] state 00000000118ea634
[ 16.480417] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.480745] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000bb49759e to 00000000461702a2
[ 16.481011] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000002953731f to 00000000461702a2
[ 16.497120] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 00000000fec27e9e
[ 16.497366] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.497699] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000001c7ced4b to 000000006d2f16fe
[ 16.497964] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000005cdc8d91 to 000000006d2f16fe
[ 16.513472] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:31:plane 1A] state 00000000bc104187
[ 16.513672] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.514006] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000c7c5f4c1 to 00000000ff2589cf
[ 16.514295] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 0000000067a4008c to 00000000ff2589cf
[ 16.530246] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 00000000e05694e8
[ 16.530454] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.530782] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000005590dce5 to 000000008947f836
[ 16.531053] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000e9b2b873 to 000000008947f836
[ 16.546860] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:31:plane 1A] state 000000000865c71a
[ 16.547063] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.547417] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000600f8d4f to 000000003fcc7543
[ 16.547691] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 0000000041d8c9b3 to 000000003fcc7543
[ 16.562648] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 00000000a2b5c38d
[ 16.562842] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.563138] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 0000000056d37a59 to 000000005c6129fe
[ 16.563456] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000000f1169ac to 000000005c6129fe
[ 16.626740] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:129] for [PLANE:31:plane 1A] state 00000000118ea634
[ 16.626864] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.627043] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000503df9fa to 00000000aba500ca
[ 16.627225] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000007dbb39c4 to 00000000aba500ca
[ 16.652190] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 00000000a2b5c38d
[ 16.652239] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.652318] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 0000000040a243bf to 00000000aba500ca
[ 16.652378] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000007c238806 to 00000000aba500ca
[ 16.662014] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 00000000d194ea6c
[ 16.662064] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.662139] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000cc6ac58d to 000000005c6129fe
[ 16.662213] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000bbff093d to 000000005c6129fe
[ 16.678998] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 00000000bc104187
[ 16.679049] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.679129] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 0000000011bd5259 to 000000003fcc7543
[ 16.679236] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000001e742f88 to 000000003fcc7543
[ 16.695655] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 00000000425daaf2
[ 16.695717] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.695847] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000008ab0c8af to 000000008947f836
[ 16.695927] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000006826e963 to 000000008947f836
[ 16.712459] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 000000009c4b6cea
[ 16.712553] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.712720] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000f9ca01d3 to 00000000ff2589cf
[ 16.712842] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 0000000025c10342 to 00000000ff2589cf
[ 16.729448] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 0000000061100816
[ 16.729631] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.729959] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000543adfb7 to 000000006d2f16fe
[ 16.730273] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000006eb0ca12 to 000000006d2f16fe
[ 16.747218] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 00000000ee63da82
[ 16.747426] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.747786] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000590e9478 to 00000000461702a2
[ 16.748047] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000009529c2d0 to 00000000461702a2
[ 16.763043] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 00000000d4738e15
[ 16.763287] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.763682] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000008a9608c0 to 00000000461702a2
[ 16.763952] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000009593a4fa to 00000000461702a2
[ 16.780457] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 000000000865c71a
[ 16.780661] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.781011] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000146cfa3a to 000000006d2f16fe
[ 16.781301] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000a7f5644d to 000000006d2f16fe
[ 16.796420] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 000000005581ce6d
[ 16.796625] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.796971] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000008b8efc18 to 00000000ff2589cf
[ 16.797260] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000f9fc28cb to 00000000ff2589cf
[ 16.813833] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 000000004fc0f44f
[ 16.814036] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.814403] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000e09c1d06 to 000000008947f836
[ 16.814674] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000008a97fc46 to 000000008947f836
[ 16.830479] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 0000000043fa0d6f
[ 16.830681] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.831024] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000004700a836 to 000000003fcc7543
[ 16.831320] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 0000000048b93344 to 000000003fcc7543
[ 16.847124] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 000000004cb53221
[ 16.847363] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.847710] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000cbe22701 to 000000005c6129fe
[ 16.847965] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000febf8ea4 to 000000005c6129fe
[ 16.862014] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 00000000fa67bd34
[ 16.862069] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.862176] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 0000000040e50b74 to 00000000aba500ca
[ 16.862254] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 0000000019a1fafb to 00000000aba500ca
[ 16.878975] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 00000000e05694e8
[ 16.879032] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.879159] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000006c8b1211 to 00000000aba500ca
[ 16.879234] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 0000000019a1fafb to 00000000aba500ca
[ 16.895807] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 00000000f6ee3bcb
[ 16.895904] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.896063] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000313eb8a5 to 000000005c6129fe
[ 16.896224] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000febf8ea4 to 000000005c6129fe
[ 16.913430] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 0000000034041e5a
[ 16.913611] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.913943] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000225624f1 to 000000003fcc7543
[ 16.914238] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 0000000048b93344 to 000000003fcc7543
[ 16.930495] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 00000000f6ee3bcb
[ 16.930701] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.931045] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000225624f1 to 000000008947f836
[ 16.931327] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000008a97fc46 to 000000008947f836
[ 16.947126] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 00000000e05694e8
[ 16.947365] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.947730] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000313eb8a5 to 00000000ff2589cf
[ 16.947996] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000f9fc28cb to 00000000ff2589cf
[ 16.963783] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 00000000fa67bd34
[ 16.963984] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.964353] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000006c8b1211 to 000000006d2f16fe
[ 16.964622] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000a7f5644d to 000000006d2f16fe
[ 16.979662] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 000000004cb53221
[ 16.979863] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.980222] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 0000000040e50b74 to 00000000461702a2
[ 16.980494] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000009593a4fa to 00000000461702a2
[ 16.996371] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 0000000043fa0d6f
[ 16.996574] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 16.996930] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000cbe22701 to 00000000461702a2
[ 16.997217] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000009529c2d0 to 00000000461702a2
[ 17.013700] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 000000004fc0f44f
[ 17.013901] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 17.014259] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000004700a836 to 000000006d2f16fe
[ 17.014530] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000006eb0ca12 to 000000006d2f16fe
[ 17.017227] i915 0000:00:02.0: [drm:edp_panel_vdd_off_sync [i915]] Turning [ENCODER:94:DDI A/PHY A] VDD off
[ 17.017630] i915 0000:00:02.0: [drm:edp_panel_vdd_off_sync [i915]] PP_STATUS: 0x80000008 PP_CONTROL: 0x00000067
[ 17.029916] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 000000005581ce6d
[ 17.030116] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 17.030501] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000e09c1d06 to 00000000ff2589cf
[ 17.030772] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 0000000025c10342 to 00000000ff2589cf
[ 17.047098] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 000000000865c71a
[ 17.047340] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 17.047702] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000008b8efc18 to 000000008947f836
[ 17.047965] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000006826e963 to 000000008947f836
[ 17.063763] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 00000000d4738e15
[ 17.063965] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 17.064324] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000146cfa3a to 000000003fcc7543
[ 17.064593] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000001e742f88 to 000000003fcc7543
[ 17.080563] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 000000000865c71a
[ 17.080756] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 17.081062] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000008a9608c0 to 000000005c6129fe
[ 17.081358] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000bbff093d to 000000005c6129fe
[ 18.122378] i915 0000:00:02.0: [drm:__intel_display_power_put_domain [i915]] disabling power well 2
[ 18.122705] i915 0000:00:02.0: [drm:__intel_display_power_put_domain [i915]] disabling DC off
[ 18.122994] i915 0000:00:02.0: [drm:skl_enable_dc6 [i915]] Enabling DC6
[ 18.123238] i915 0000:00:02.0: [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[ 67.486555] i915 0000:00:02.0: [drm:__intel_display_power_get_domain.part.0 [i915]] enabling DC off
[ 67.486904] i915 0000:00:02.0: [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[ 67.489157] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 00000000d581081a
[ 67.489231] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 67.489329] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000bc48f90b to 000000008710c86f
[ 67.489424] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000fa6fb80e to 000000008710c86f
[ 67.597590] i915 0000:00:02.0: [drm:__intel_display_power_put_domain [i915]] disabling DC off
[ 67.597940] i915 0000:00:02.0: [drm:skl_enable_dc6 [i915]] Enabling DC6
[ 67.598275] i915 0000:00:02.0: [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[ 127.497459] i915 0000:00:02.0: [drm:__intel_display_power_get_domain.part.0 [i915]] enabling DC off
[ 127.497824] i915 0000:00:02.0: [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[ 127.499438] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 00000000827170b0
[ 127.499702] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 127.499993] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 0000000072c9d5d8 to 0000000017ea7642
[ 127.500171] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000006450a144 to 0000000017ea7642
[ 127.606100] i915 0000:00:02.0: [drm:__intel_display_power_put_domain [i915]] disabling DC off
[ 127.606455] i915 0000:00:02.0: [drm:skl_enable_dc6 [i915]] Enabling DC6
[ 127.606792] i915 0000:00:02.0: [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[ 187.487889] i915 0000:00:02.0: [drm:__intel_display_power_get_domain.part.0 [i915]] enabling DC off
[ 187.488258] i915 0000:00:02.0: [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[ 187.489927] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 000000008987c68e
[ 187.490182] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 187.490555] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000c15fa6b7 to 00000000ff2f5b3c
[ 187.490927] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000e0ce4c38 to 00000000ff2f5b3c
[ 187.597095] i915 0000:00:02.0: [drm:__intel_display_power_put_domain [i915]] disabling DC off
[ 187.597443] i915 0000:00:02.0: [drm:skl_enable_dc6 [i915]] Enabling DC6
[ 187.597784] i915 0000:00:02.0: [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[ 247.496944] i915 0000:00:02.0: [drm:__intel_display_power_get_domain.part.0 [i915]] enabling DC off
[ 247.497267] i915 0000:00:02.0: [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[ 247.498616] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 0000000084d59a61
[ 247.498862] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 247.499211] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000004c7de499 to 000000003c9c3d04
[ 247.499464] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000000c81860d to 000000003c9c3d04
[ 247.604470] i915 0000:00:02.0: [drm:__intel_display_power_put_domain [i915]] disabling DC off
[ 247.604820] i915 0000:00:02.0: [drm:skl_enable_dc6 [i915]] Enabling DC6
[ 247.605164] i915 0000:00:02.0: [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[ 307.488374] i915 0000:00:02.0: [drm:__intel_display_power_get_domain.part.0 [i915]] enabling DC off
[ 307.488740] i915 0000:00:02.0: [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[ 307.490392] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 00000000105c9f92
[ 307.490684] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 307.490981] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 0000000036263828 to 0000000096b86ddb
[ 307.491269] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 0000000074c38614 to 0000000096b86ddb
[ 307.596003] i915 0000:00:02.0: [drm:__intel_display_power_put_domain [i915]] disabling DC off
[ 307.596353] i915 0000:00:02.0: [drm:skl_enable_dc6 [i915]] Enabling DC6
[ 307.596697] i915 0000:00:02.0: [drm:gen9_set_dc_state [i915]] Setting DC state from 00 to 02
[ 315.941061] i915 0000:00:02.0: [drm:__intel_display_power_get_domain.part.0 [i915]] enabling DC off
[ 315.941155] i915 0000:00:02.0: [drm:gen9_set_dc_state [i915]] Setting DC state from 02 to 00
[ 315.941530] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 000000006bea936f
[ 315.941597] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 315.941675] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000fc8e81fd to 000000008f35dd6e
[ 315.941750] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000d5f64486 to 000000008f35dd6e
[ 315.971822] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 00000000f296b664
[ 315.971931] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 315.972113] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000006e5a0f55 to 0000000052cb0ac1
[ 315.972255] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000008db100ca to 0000000052cb0ac1
[ 315.989557] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 00000000088afb50
[ 315.989756] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 315.990075] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000ed8a5e71 to 0000000052cb0ac1
[ 315.990369] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000002e900bdf to 0000000052cb0ac1
[ 316.006551] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 0000000036ac3e2a
[ 316.006779] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 316.007142] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000008f8b1cb5 to 0000000068444932
[ 316.007474] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000ff0bddfa to 0000000068444932
[ 316.023268] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 0000000075a6cd4e
[ 316.023540] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 316.023961] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000e0325007 to 000000000ba7c32c
[ 316.024277] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000007598e897 to 000000000ba7c32c
[ 316.039881] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 000000004dee76d3
[ 316.040108] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 316.040508] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 0000000009abab35 to 000000001bf0e229
[ 316.040828] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000d1c7c834 to 000000001bf0e229
[ 316.073342] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 000000005f7cb55e
[ 316.073610] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 316.074034] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 0000000009abab35 to 00000000fd993181
[ 316.074433] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000670f7b8f to 00000000fd993181
[ 316.089879] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 000000004dee76d3
[ 316.090106] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 316.090509] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000e0325007 to 000000006408dae8
[ 316.090834] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000095adcba to 000000006408dae8
[ 316.106734] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 0000000075a6cd4e
[ 316.106961] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 316.107369] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000008f8b1cb5 to 000000006408dae8
[ 316.107685] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000286a41d9 to 000000006408dae8
[ 316.123172] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 000000001a47882b
[ 316.123439] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 316.123855] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000ed8a5e71 to 00000000fd993181
[ 316.124170] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000002b468fe5 to 00000000fd993181
[ 316.139909] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 00000000eb6786ee
[ 316.140135] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 316.140534] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000d0779b06 to 000000001bf0e229
[ 316.140856] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000009645eaed to 000000001bf0e229
[ 316.173422] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:128] for [PLANE:31:plane 1A] state 000000004dee76d3
[ 316.173696] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 316.174123] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 000000006d1fcf28 to 000000000ba7c32c
[ 316.174507] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 000000009132c809 to 000000000ba7c32c
[ 316.188199] i915 0000:00:02.0: [drm:drm_atomic_set_fb_for_plane [drm]] Set [FB:125] for [PLANE:31:plane 1A] state 00000000e78358d0
[ 316.188262] i915 0000:00:02.0: [drm:intel_plane_atomic_calc_changes [i915]] [CRTC:51:pipe A] with [PLANE:31:plane 1A] visible 1 -> 1, off 0, on 0, ms 0
[ 316.188392] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000002a02f336 state 00000000dbdb1ead to 0000000068444932
[ 316.188476] i915 0000:00:02.0: [drm:intel_atomic_get_global_obj_state [i915]] Added new global object 000000001af8bdd1 state 00000000af55b7e5 to 0000000068444932