Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/display: Refcount for fec enable/disable
@ 2026-06-01 14:29 Arun R Murthy
  2026-06-01 15:16 ` ✓ CI.KUnit: success for " Patchwork
  2026-06-02 10:46 ` [PATCH] " Imre Deak
  0 siblings, 2 replies; 10+ messages in thread
From: Arun R Murthy @ 2026-06-01 14:29 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: Arun R Murthy, Stephen Fuhry

The FEC_ENABLE bit is per port basis and is enabled/disabled on ddi
pre_enable and post_disable. This fec is shared across the mst streams
and can be enabled per stream basis as well.
So have a refcount to track the usage of FEC and then enable/disable
accordingly.

Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16073
Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
Tested-by: Stephen Fuhry <fuhrysteve@gmail.com>
---
 drivers/gpu/drm/i915/display/intel_ddi.c      | 66 +++++++++++++++++++
 drivers/gpu/drm/i915/display/intel_ddi.h      |  1 +
 .../drm/i915/display/intel_display_types.h    | 12 ++++
 .../drm/i915/display/intel_modeset_setup.c    |  6 ++
 4 files changed, 85 insertions(+)

diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c b/drivers/gpu/drm/i915/display/intel_ddi.c
index 86520848892e..e12a3d6d6a67 100644
--- a/drivers/gpu/drm/i915/display/intel_ddi.c
+++ b/drivers/gpu/drm/i915/display/intel_ddi.c
@@ -2096,6 +2096,47 @@ void intel_ddi_disable_clock(struct intel_encoder *encoder)
 		encoder->disable_clock(encoder);
 }
 
+/**
+ * intel_ddi_seed_fec_refcounts - Seed per-port FEC refcounts from active CRTCs
+ * @display: display device
+ *
+ * intel_digital_port::fec_active_streams is the per-port refcount that gates
+ * programming of the shared DP_TP_CTL_FEC_ENABLE bit. After initial HW state
+ * readout (driver load, resume, GPU reset takeover), the persistent
+ * crtc_state->fec_enable values reflect what HW currently has; we need to
+ * align the refcount with that so the first paired disable doesn't underflow
+ * and the next enable doesn't incorrectly skip programming the HW bit.
+ *
+ * Must be called once after intel_modeset_readout_hw_state(), before any new
+ * modeset commit can run.
+ */
+void intel_ddi_seed_fec_refcounts(struct intel_display *display)
+{
+	struct intel_crtc *crtc;
+
+	for_each_intel_crtc(display->drm, crtc) {
+		const struct intel_crtc_state *crtc_state =
+			to_intel_crtc_state(crtc->base.state);
+		struct intel_encoder *encoder;
+
+		if (!crtc_state->hw.active || !crtc_state->fec_enable)
+			continue;
+
+		for_each_intel_encoder(display->drm, encoder) {
+			struct intel_digital_port *dig_port;
+
+			if (encoder->base.crtc != &crtc->base)
+				continue;
+			if (!intel_encoder_is_dig_port(encoder))
+				continue;
+
+			dig_port = enc_to_dig_port(encoder);
+			dig_port->fec_active_streams++;
+			break;
+		}
+	}
+}
+
 void intel_ddi_sanitize_encoder_pll_mapping(struct intel_encoder *encoder)
 {
 	struct intel_display *display = to_intel_display(encoder);
@@ -2413,12 +2454,22 @@ static void intel_ddi_enable_fec(struct intel_encoder *encoder,
 				 const struct intel_crtc_state *crtc_state)
 {
 	struct intel_display *display = to_intel_display(encoder);
+	struct intel_digital_port *dig_port = enc_to_dig_port(encoder);
 	int i;
 	int ret;
 
 	if (!crtc_state->fec_enable)
 		return;
 
+	/*
+	 * FEC is link-wide: DP_TP_CTL_FEC_ENABLE is per-port while
+	 * crtc_state->fec_enable is per-stream. For DP MST, several streams
+	 * on this port share the bit. Only program HW on the first stream
+	 * needing FEC; subsequent streams just bump the refcount.
+	 */
+	if (dig_port->fec_active_streams++ > 0)
+		return;
+
 	intel_de_rmw(display, dp_tp_ctl_reg(encoder, crtc_state),
 		     0, DP_TP_CTL_FEC_ENABLE);
 
@@ -2454,10 +2505,25 @@ static void intel_ddi_disable_fec(struct intel_encoder *encoder,
 				  const struct intel_crtc_state *crtc_state)
 {
 	struct intel_display *display = to_intel_display(encoder);
+	struct intel_digital_port *dig_port = enc_to_dig_port(encoder);
 
 	if (!crtc_state->fec_enable)
 		return;
 
+	/*
+	 * FEC is a link-wide property and DP_TP_CTL_FEC_ENABLE is a per-port
+	 * register, but crtc_state->fec_enable is per-stream. For DP MST,
+	 * multiple streams on the same port share this bit. Refcount the
+	 * active FEC users on the port and only clear the HW bit when the
+	 * last user goes away, otherwise tearing down one MST stream would
+	 * disable FEC for sibling streams still using it.
+	 */
+	if (drm_WARN_ON(display->drm, dig_port->fec_active_streams <= 0))
+		return;
+
+	if (--dig_port->fec_active_streams > 0)
+		return;
+
 	intel_de_rmw(display, dp_tp_ctl_reg(encoder, crtc_state),
 		     DP_TP_CTL_FEC_ENABLE, 0);
 	intel_de_posting_read(display, dp_tp_ctl_reg(encoder, crtc_state));
diff --git a/drivers/gpu/drm/i915/display/intel_ddi.h b/drivers/gpu/drm/i915/display/intel_ddi.h
index 580ecb09b8b6..3678c28a0dc9 100644
--- a/drivers/gpu/drm/i915/display/intel_ddi.h
+++ b/drivers/gpu/drm/i915/display/intel_ddi.h
@@ -78,6 +78,7 @@ int intel_ddi_toggle_hdcp_bits(struct intel_encoder *intel_encoder,
 			       enum transcoder cpu_transcoder,
 			       bool enable, u32 hdcp_mask);
 void intel_ddi_sanitize_encoder_pll_mapping(struct intel_encoder *encoder);
+void intel_ddi_seed_fec_refcounts(struct intel_display *display);
 int intel_ddi_level(struct intel_encoder *encoder,
 		    const struct intel_crtc_state *crtc_state,
 		    int lane);
diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index f44be5c689ae..84bd0d993197 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -1987,6 +1987,18 @@ struct intel_digital_port {
 	struct ref_tracker *ddi_io_wakeref;
 	struct ref_tracker *aux_wakeref;
 
+	/*
+	 * Number of active streams on this port currently using FEC.
+	 *
+	 * DP_TP_CTL_FEC_ENABLE is a per-port (link-wide) HW bit, but
+	 * crtc_state->fec_enable is per-stream. For DP MST several streams
+	 * share the same port and therefore the same FEC enable bit. Track
+	 * how many active streams want FEC so that the HW bit is only
+	 * programmed on the first enable and only cleared on the last
+	 * disable. Modified under the modeset locks.
+	 */
+	int fec_active_streams;
+
 	struct intel_tc_port *tc;
 
 	struct {
diff --git a/drivers/gpu/drm/i915/display/intel_modeset_setup.c b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
index e88082c8caac..14f038b8ef81 100644
--- a/drivers/gpu/drm/i915/display/intel_modeset_setup.c
+++ b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
@@ -950,6 +950,12 @@ void intel_modeset_setup_hw_state(struct intel_display *display,
 
 	intel_modeset_readout_hw_state(display);
 
+	/*
+	 * Seed per-port FEC refcounts from the just-populated active
+	 * crtc_states before anything can issue an enable/disable.
+	 */
+	intel_ddi_seed_fec_refcounts(display);
+
 	/* HW state is read out, now we need to sanitize this mess. */
 	get_encoder_power_domains(display);
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* ✓ CI.KUnit: success for drm/i915/display: Refcount for fec enable/disable
  2026-06-01 14:29 [PATCH] drm/i915/display: Refcount for fec enable/disable Arun R Murthy
@ 2026-06-01 15:16 ` Patchwork
  2026-06-02 10:46 ` [PATCH] " Imre Deak
  1 sibling, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-06-01 15:16 UTC (permalink / raw)
  To: Arun R Murthy; +Cc: intel-xe

== Series Details ==

Series: drm/i915/display: Refcount for fec enable/disable
URL   : https://patchwork.freedesktop.org/series/167665/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[15:15:14] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:15:18] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[15:15:50] Starting KUnit Kernel (1/1)...
[15:15:50] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:15:50] ================== guc_buf (11 subtests) ===================
[15:15:50] [PASSED] test_smallest
[15:15:50] [PASSED] test_largest
[15:15:50] [PASSED] test_granular
[15:15:50] [PASSED] test_unique
[15:15:50] [PASSED] test_overlap
[15:15:50] [PASSED] test_reusable
[15:15:50] [PASSED] test_too_big
[15:15:50] [PASSED] test_flush
[15:15:50] [PASSED] test_lookup
[15:15:50] [PASSED] test_data
[15:15:50] [PASSED] test_class
[15:15:50] ===================== [PASSED] guc_buf =====================
[15:15:50] =================== guc_dbm (7 subtests) ===================
[15:15:50] [PASSED] test_empty
[15:15:50] [PASSED] test_default
[15:15:50] ======================== test_size  ========================
[15:15:50] [PASSED] 4
[15:15:50] [PASSED] 8
[15:15:50] [PASSED] 32
[15:15:50] [PASSED] 256
[15:15:50] ==================== [PASSED] test_size ====================
[15:15:50] ======================= test_reuse  ========================
[15:15:50] [PASSED] 4
[15:15:50] [PASSED] 8
[15:15:50] [PASSED] 32
[15:15:50] [PASSED] 256
[15:15:50] =================== [PASSED] test_reuse ====================
[15:15:50] =================== test_range_overlap  ====================
[15:15:50] [PASSED] 4
[15:15:50] [PASSED] 8
[15:15:50] [PASSED] 32
[15:15:50] [PASSED] 256
[15:15:50] =============== [PASSED] test_range_overlap ================
[15:15:50] =================== test_range_compact  ====================
[15:15:50] [PASSED] 4
[15:15:50] [PASSED] 8
[15:15:50] [PASSED] 32
[15:15:50] [PASSED] 256
[15:15:50] =============== [PASSED] test_range_compact ================
[15:15:50] ==================== test_range_spare  =====================
[15:15:50] [PASSED] 4
[15:15:50] [PASSED] 8
[15:15:50] [PASSED] 32
[15:15:50] [PASSED] 256
[15:15:50] ================ [PASSED] test_range_spare =================
[15:15:50] ===================== [PASSED] guc_dbm =====================
[15:15:50] =================== guc_idm (6 subtests) ===================
[15:15:50] [PASSED] bad_init
[15:15:50] [PASSED] no_init
[15:15:50] [PASSED] init_fini
[15:15:50] [PASSED] check_used
[15:15:50] [PASSED] check_quota
[15:15:50] [PASSED] check_all
[15:15:50] ===================== [PASSED] guc_idm =====================
[15:15:50] ================== no_relay (3 subtests) ===================
[15:15:50] [PASSED] xe_drops_guc2pf_if_not_ready
[15:15:50] [PASSED] xe_drops_guc2vf_if_not_ready
[15:15:50] [PASSED] xe_rejects_send_if_not_ready
[15:15:50] ==================== [PASSED] no_relay =====================
[15:15:50] ================== pf_relay (14 subtests) ==================
[15:15:50] [PASSED] pf_rejects_guc2pf_too_short
[15:15:50] [PASSED] pf_rejects_guc2pf_too_long
[15:15:50] [PASSED] pf_rejects_guc2pf_no_payload
[15:15:50] [PASSED] pf_fails_no_payload
[15:15:50] [PASSED] pf_fails_bad_origin
[15:15:50] [PASSED] pf_fails_bad_type
[15:15:50] [PASSED] pf_txn_reports_error
[15:15:50] [PASSED] pf_txn_sends_pf2guc
[15:15:50] [PASSED] pf_sends_pf2guc
[15:15:50] [SKIPPED] pf_loopback_nop
[15:15:50] [SKIPPED] pf_loopback_echo
[15:15:50] [SKIPPED] pf_loopback_fail
[15:15:50] [SKIPPED] pf_loopback_busy
[15:15:50] [SKIPPED] pf_loopback_retry
[15:15:50] ==================== [PASSED] pf_relay =====================
[15:15:50] ================== vf_relay (3 subtests) ===================
[15:15:50] [PASSED] vf_rejects_guc2vf_too_short
[15:15:50] [PASSED] vf_rejects_guc2vf_too_long
[15:15:50] [PASSED] vf_rejects_guc2vf_no_payload
[15:15:50] ==================== [PASSED] vf_relay =====================
[15:15:50] ================ pf_gt_config (9 subtests) =================
[15:15:50] [PASSED] fair_contexts_1vf
[15:15:50] [PASSED] fair_doorbells_1vf
[15:15:50] [PASSED] fair_ggtt_1vf
[15:15:50] ====================== fair_vram_1vf  ======================
[15:15:50] [PASSED] 3.50 GiB
[15:15:50] [PASSED] 11.5 GiB
[15:15:50] [PASSED] 15.5 GiB
[15:15:50] [PASSED] 31.5 GiB
[15:15:50] [PASSED] 63.5 GiB
[15:15:50] [PASSED] 1.91 GiB
[15:15:50] ================== [PASSED] fair_vram_1vf ==================
[15:15:50] ================ fair_vram_1vf_admin_only  =================
[15:15:50] [PASSED] 3.50 GiB
[15:15:50] [PASSED] 11.5 GiB
[15:15:50] [PASSED] 15.5 GiB
[15:15:50] [PASSED] 31.5 GiB
[15:15:50] [PASSED] 63.5 GiB
[15:15:50] [PASSED] 1.91 GiB
[15:15:50] ============ [PASSED] fair_vram_1vf_admin_only =============
[15:15:50] ====================== fair_contexts  ======================
[15:15:50] [PASSED] 1 VF
[15:15:50] [PASSED] 2 VFs
[15:15:50] [PASSED] 3 VFs
[15:15:50] [PASSED] 4 VFs
[15:15:50] [PASSED] 5 VFs
[15:15:50] [PASSED] 6 VFs
[15:15:50] [PASSED] 7 VFs
[15:15:50] [PASSED] 8 VFs
[15:15:50] [PASSED] 9 VFs
[15:15:50] [PASSED] 10 VFs
[15:15:50] [PASSED] 11 VFs
[15:15:50] [PASSED] 12 VFs
[15:15:50] [PASSED] 13 VFs
[15:15:50] [PASSED] 14 VFs
[15:15:50] [PASSED] 15 VFs
[15:15:50] [PASSED] 16 VFs
[15:15:50] [PASSED] 17 VFs
[15:15:50] [PASSED] 18 VFs
[15:15:50] [PASSED] 19 VFs
[15:15:50] [PASSED] 20 VFs
[15:15:50] [PASSED] 21 VFs
[15:15:50] [PASSED] 22 VFs
[15:15:50] [PASSED] 23 VFs
[15:15:50] [PASSED] 24 VFs
[15:15:50] [PASSED] 25 VFs
[15:15:50] [PASSED] 26 VFs
[15:15:50] [PASSED] 27 VFs
[15:15:50] [PASSED] 28 VFs
[15:15:50] [PASSED] 29 VFs
[15:15:50] [PASSED] 30 VFs
[15:15:50] [PASSED] 31 VFs
[15:15:50] [PASSED] 32 VFs
[15:15:50] [PASSED] 33 VFs
[15:15:50] [PASSED] 34 VFs
[15:15:50] [PASSED] 35 VFs
[15:15:50] [PASSED] 36 VFs
[15:15:50] [PASSED] 37 VFs
[15:15:50] [PASSED] 38 VFs
[15:15:50] [PASSED] 39 VFs
[15:15:50] [PASSED] 40 VFs
[15:15:50] [PASSED] 41 VFs
[15:15:50] [PASSED] 42 VFs
[15:15:50] [PASSED] 43 VFs
[15:15:50] [PASSED] 44 VFs
[15:15:50] [PASSED] 45 VFs
[15:15:50] [PASSED] 46 VFs
[15:15:50] [PASSED] 47 VFs
[15:15:50] [PASSED] 48 VFs
[15:15:50] [PASSED] 49 VFs
[15:15:50] [PASSED] 50 VFs
[15:15:50] [PASSED] 51 VFs
[15:15:50] [PASSED] 52 VFs
[15:15:50] [PASSED] 53 VFs
[15:15:50] [PASSED] 54 VFs
[15:15:50] [PASSED] 55 VFs
[15:15:50] [PASSED] 56 VFs
[15:15:50] [PASSED] 57 VFs
[15:15:50] [PASSED] 58 VFs
[15:15:50] [PASSED] 59 VFs
[15:15:50] [PASSED] 60 VFs
[15:15:50] [PASSED] 61 VFs
[15:15:50] [PASSED] 62 VFs
[15:15:50] [PASSED] 63 VFs
[15:15:50] ================== [PASSED] fair_contexts ==================
[15:15:50] ===================== fair_doorbells  ======================
[15:15:50] [PASSED] 1 VF
[15:15:50] [PASSED] 2 VFs
[15:15:50] [PASSED] 3 VFs
[15:15:50] [PASSED] 4 VFs
[15:15:50] [PASSED] 5 VFs
[15:15:50] [PASSED] 6 VFs
[15:15:50] [PASSED] 7 VFs
[15:15:50] [PASSED] 8 VFs
[15:15:50] [PASSED] 9 VFs
[15:15:50] [PASSED] 10 VFs
[15:15:50] [PASSED] 11 VFs
[15:15:50] [PASSED] 12 VFs
[15:15:50] [PASSED] 13 VFs
[15:15:50] [PASSED] 14 VFs
[15:15:50] [PASSED] 15 VFs
[15:15:50] [PASSED] 16 VFs
[15:15:50] [PASSED] 17 VFs
[15:15:50] [PASSED] 18 VFs
[15:15:50] [PASSED] 19 VFs
[15:15:50] [PASSED] 20 VFs
[15:15:50] [PASSED] 21 VFs
[15:15:50] [PASSED] 22 VFs
[15:15:50] [PASSED] 23 VFs
[15:15:50] [PASSED] 24 VFs
[15:15:50] [PASSED] 25 VFs
[15:15:50] [PASSED] 26 VFs
[15:15:50] [PASSED] 27 VFs
[15:15:50] [PASSED] 28 VFs
[15:15:50] [PASSED] 29 VFs
[15:15:50] [PASSED] 30 VFs
[15:15:50] [PASSED] 31 VFs
[15:15:50] [PASSED] 32 VFs
[15:15:50] [PASSED] 33 VFs
[15:15:50] [PASSED] 34 VFs
[15:15:50] [PASSED] 35 VFs
[15:15:50] [PASSED] 36 VFs
[15:15:50] [PASSED] 37 VFs
[15:15:50] [PASSED] 38 VFs
[15:15:50] [PASSED] 39 VFs
[15:15:50] [PASSED] 40 VFs
[15:15:50] [PASSED] 41 VFs
[15:15:50] [PASSED] 42 VFs
[15:15:50] [PASSED] 43 VFs
[15:15:50] [PASSED] 44 VFs
[15:15:50] [PASSED] 45 VFs
[15:15:50] [PASSED] 46 VFs
[15:15:50] [PASSED] 47 VFs
[15:15:50] [PASSED] 48 VFs
[15:15:50] [PASSED] 49 VFs
[15:15:50] [PASSED] 50 VFs
[15:15:50] [PASSED] 51 VFs
[15:15:50] [PASSED] 52 VFs
[15:15:50] [PASSED] 53 VFs
[15:15:50] [PASSED] 54 VFs
[15:15:50] [PASSED] 55 VFs
[15:15:50] [PASSED] 56 VFs
[15:15:50] [PASSED] 57 VFs
[15:15:50] [PASSED] 58 VFs
[15:15:50] [PASSED] 59 VFs
[15:15:50] [PASSED] 60 VFs
[15:15:50] [PASSED] 61 VFs
[15:15:50] [PASSED] 62 VFs
[15:15:50] [PASSED] 63 VFs
[15:15:50] ================= [PASSED] fair_doorbells ==================
[15:15:50] ======================== fair_ggtt  ========================
[15:15:50] [PASSED] 1 VF
[15:15:50] [PASSED] 2 VFs
[15:15:50] [PASSED] 3 VFs
[15:15:50] [PASSED] 4 VFs
[15:15:50] [PASSED] 5 VFs
[15:15:50] [PASSED] 6 VFs
[15:15:50] [PASSED] 7 VFs
[15:15:50] [PASSED] 8 VFs
[15:15:50] [PASSED] 9 VFs
[15:15:50] [PASSED] 10 VFs
[15:15:50] [PASSED] 11 VFs
[15:15:50] [PASSED] 12 VFs
[15:15:50] [PASSED] 13 VFs
[15:15:50] [PASSED] 14 VFs
[15:15:50] [PASSED] 15 VFs
[15:15:50] [PASSED] 16 VFs
[15:15:50] [PASSED] 17 VFs
[15:15:50] [PASSED] 18 VFs
[15:15:50] [PASSED] 19 VFs
[15:15:50] [PASSED] 20 VFs
[15:15:50] [PASSED] 21 VFs
[15:15:50] [PASSED] 22 VFs
[15:15:50] [PASSED] 23 VFs
[15:15:50] [PASSED] 24 VFs
[15:15:50] [PASSED] 25 VFs
[15:15:50] [PASSED] 26 VFs
[15:15:50] [PASSED] 27 VFs
[15:15:50] [PASSED] 28 VFs
[15:15:50] [PASSED] 29 VFs
[15:15:50] [PASSED] 30 VFs
[15:15:50] [PASSED] 31 VFs
[15:15:50] [PASSED] 32 VFs
[15:15:50] [PASSED] 33 VFs
[15:15:50] [PASSED] 34 VFs
[15:15:50] [PASSED] 35 VFs
[15:15:50] [PASSED] 36 VFs
[15:15:50] [PASSED] 37 VFs
[15:15:50] [PASSED] 38 VFs
[15:15:50] [PASSED] 39 VFs
[15:15:50] [PASSED] 40 VFs
[15:15:50] [PASSED] 41 VFs
[15:15:50] [PASSED] 42 VFs
[15:15:50] [PASSED] 43 VFs
[15:15:50] [PASSED] 44 VFs
[15:15:50] [PASSED] 45 VFs
[15:15:50] [PASSED] 46 VFs
[15:15:50] [PASSED] 47 VFs
[15:15:50] [PASSED] 48 VFs
[15:15:50] [PASSED] 49 VFs
[15:15:50] [PASSED] 50 VFs
[15:15:50] [PASSED] 51 VFs
[15:15:50] [PASSED] 52 VFs
[15:15:50] [PASSED] 53 VFs
[15:15:50] [PASSED] 54 VFs
[15:15:50] [PASSED] 55 VFs
[15:15:50] [PASSED] 56 VFs
[15:15:50] [PASSED] 57 VFs
[15:15:50] [PASSED] 58 VFs
[15:15:50] [PASSED] 59 VFs
[15:15:50] [PASSED] 60 VFs
[15:15:50] [PASSED] 61 VFs
[15:15:50] [PASSED] 62 VFs
[15:15:50] [PASSED] 63 VFs
[15:15:50] ==================== [PASSED] fair_ggtt ====================
[15:15:50] ======================== fair_vram  ========================
[15:15:50] [PASSED] 1 VF
[15:15:50] [PASSED] 2 VFs
[15:15:50] [PASSED] 3 VFs
[15:15:50] [PASSED] 4 VFs
[15:15:50] [PASSED] 5 VFs
[15:15:50] [PASSED] 6 VFs
[15:15:50] [PASSED] 7 VFs
[15:15:50] [PASSED] 8 VFs
[15:15:50] [PASSED] 9 VFs
[15:15:50] [PASSED] 10 VFs
[15:15:50] [PASSED] 11 VFs
[15:15:50] [PASSED] 12 VFs
[15:15:50] [PASSED] 13 VFs
[15:15:50] [PASSED] 14 VFs
[15:15:50] [PASSED] 15 VFs
[15:15:50] [PASSED] 16 VFs
[15:15:50] [PASSED] 17 VFs
[15:15:50] [PASSED] 18 VFs
[15:15:50] [PASSED] 19 VFs
[15:15:50] [PASSED] 20 VFs
[15:15:50] [PASSED] 21 VFs
[15:15:50] [PASSED] 22 VFs
[15:15:50] [PASSED] 23 VFs
[15:15:50] [PASSED] 24 VFs
[15:15:50] [PASSED] 25 VFs
[15:15:50] [PASSED] 26 VFs
[15:15:50] [PASSED] 27 VFs
[15:15:50] [PASSED] 28 VFs
[15:15:50] [PASSED] 29 VFs
[15:15:50] [PASSED] 30 VFs
[15:15:50] [PASSED] 31 VFs
[15:15:50] [PASSED] 32 VFs
[15:15:50] [PASSED] 33 VFs
[15:15:50] [PASSED] 34 VFs
[15:15:50] [PASSED] 35 VFs
[15:15:50] [PASSED] 36 VFs
[15:15:50] [PASSED] 37 VFs
[15:15:50] [PASSED] 38 VFs
[15:15:50] [PASSED] 39 VFs
[15:15:50] [PASSED] 40 VFs
[15:15:50] [PASSED] 41 VFs
[15:15:50] [PASSED] 42 VFs
[15:15:50] [PASSED] 43 VFs
[15:15:50] [PASSED] 44 VFs
[15:15:50] [PASSED] 45 VFs
[15:15:50] [PASSED] 46 VFs
[15:15:50] [PASSED] 47 VFs
[15:15:50] [PASSED] 48 VFs
[15:15:50] [PASSED] 49 VFs
[15:15:50] [PASSED] 50 VFs
[15:15:50] [PASSED] 51 VFs
[15:15:50] [PASSED] 52 VFs
[15:15:50] [PASSED] 53 VFs
[15:15:50] [PASSED] 54 VFs
[15:15:50] [PASSED] 55 VFs
[15:15:50] [PASSED] 56 VFs
[15:15:50] [PASSED] 57 VFs
[15:15:50] [PASSED] 58 VFs
[15:15:50] [PASSED] 59 VFs
[15:15:50] [PASSED] 60 VFs
[15:15:50] [PASSED] 61 VFs
[15:15:50] [PASSED] 62 VFs
[15:15:50] [PASSED] 63 VFs
[15:15:50] ==================== [PASSED] fair_vram ====================
[15:15:50] ================== [PASSED] pf_gt_config ===================
[15:15:50] ===================== lmtt (1 subtest) =====================
[15:15:50] ======================== test_ops  =========================
[15:15:50] [PASSED] 2-level
[15:15:50] [PASSED] multi-level
[15:15:50] ==================== [PASSED] test_ops =====================
[15:15:50] ====================== [PASSED] lmtt =======================
[15:15:50] ================= pf_service (11 subtests) =================
[15:15:50] [PASSED] pf_negotiate_any
[15:15:50] [PASSED] pf_negotiate_base_match
[15:15:50] [PASSED] pf_negotiate_base_newer
[15:15:50] [PASSED] pf_negotiate_base_next
[15:15:50] [SKIPPED] pf_negotiate_base_older
[15:15:50] [PASSED] pf_negotiate_base_prev
[15:15:50] [PASSED] pf_negotiate_latest_match
[15:15:50] [PASSED] pf_negotiate_latest_newer
[15:15:50] [PASSED] pf_negotiate_latest_next
[15:15:50] [SKIPPED] pf_negotiate_latest_older
[15:15:50] [SKIPPED] pf_negotiate_latest_prev
[15:15:50] =================== [PASSED] pf_service ====================
[15:15:50] ================= xe_guc_g2g (2 subtests) ==================
[15:15:50] ============== xe_live_guc_g2g_kunit_default  ==============
[15:15:50] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[15:15:50] ============== xe_live_guc_g2g_kunit_allmem  ===============
[15:15:50] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[15:15:50] =================== [SKIPPED] xe_guc_g2g ===================
[15:15:50] =================== xe_mocs (2 subtests) ===================
[15:15:50] ================ xe_live_mocs_kernel_kunit  ================
[15:15:50] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[15:15:50] ================ xe_live_mocs_reset_kunit  =================
[15:15:50] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[15:15:50] ==================== [SKIPPED] xe_mocs =====================
[15:15:50] ================= xe_migrate (2 subtests) ==================
[15:15:50] ================= xe_migrate_sanity_kunit  =================
[15:15:50] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[15:15:50] ================== xe_validate_ccs_kunit  ==================
[15:15:50] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[15:15:50] =================== [SKIPPED] xe_migrate ===================
[15:15:50] ================== xe_dma_buf (1 subtest) ==================
[15:15:50] ==================== xe_dma_buf_kunit  =====================
[15:15:50] ================ [SKIPPED] xe_dma_buf_kunit ================
[15:15:50] =================== [SKIPPED] xe_dma_buf ===================
[15:15:50] ================= xe_bo_shrink (1 subtest) =================
[15:15:50] =================== xe_bo_shrink_kunit  ====================
[15:15:50] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[15:15:50] ================== [SKIPPED] xe_bo_shrink ==================
[15:15:50] ==================== xe_bo (2 subtests) ====================
[15:15:50] ================== xe_ccs_migrate_kunit  ===================
[15:15:50] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[15:15:50] ==================== xe_bo_evict_kunit  ====================
[15:15:50] =============== [SKIPPED] xe_bo_evict_kunit ================
[15:15:50] ===================== [SKIPPED] xe_bo ======================
[15:15:50] ==================== args (13 subtests) ====================
[15:15:50] [PASSED] count_args_test
[15:15:50] [PASSED] call_args_example
[15:15:50] [PASSED] call_args_test
[15:15:50] [PASSED] drop_first_arg_example
[15:15:50] [PASSED] drop_first_arg_test
[15:15:50] [PASSED] first_arg_example
[15:15:50] [PASSED] first_arg_test
[15:15:50] [PASSED] last_arg_example
[15:15:50] [PASSED] last_arg_test
[15:15:50] [PASSED] pick_arg_example
[15:15:50] [PASSED] if_args_example
[15:15:50] [PASSED] if_args_test
[15:15:50] [PASSED] sep_comma_example
[15:15:50] ====================== [PASSED] args =======================
[15:15:50] =================== xe_pci (3 subtests) ====================
[15:15:50] ==================== check_graphics_ip  ====================
[15:15:50] [PASSED] 12.00 Xe_LP
[15:15:50] [PASSED] 12.10 Xe_LP+
[15:15:50] [PASSED] 12.55 Xe_HPG
[15:15:50] [PASSED] 12.60 Xe_HPC
[15:15:50] [PASSED] 12.70 Xe_LPG
[15:15:50] [PASSED] 12.71 Xe_LPG
[15:15:50] [PASSED] 12.74 Xe_LPG+
[15:15:50] [PASSED] 20.01 Xe2_HPG
[15:15:50] [PASSED] 20.02 Xe2_HPG
[15:15:50] [PASSED] 20.04 Xe2_LPG
[15:15:50] [PASSED] 30.00 Xe3_LPG
[15:15:50] [PASSED] 30.01 Xe3_LPG
[15:15:50] [PASSED] 30.03 Xe3_LPG
[15:15:50] [PASSED] 30.04 Xe3_LPG
[15:15:50] [PASSED] 30.05 Xe3_LPG
[15:15:50] [PASSED] 35.10 Xe3p_LPG
[15:15:50] [PASSED] 35.11 Xe3p_XPC
[15:15:50] ================ [PASSED] check_graphics_ip ================
[15:15:50] ===================== check_media_ip  ======================
[15:15:50] [PASSED] 12.00 Xe_M
[15:15:50] [PASSED] 12.55 Xe_HPM
[15:15:50] [PASSED] 13.00 Xe_LPM+
[15:15:50] [PASSED] 13.01 Xe2_HPM
[15:15:50] [PASSED] 20.00 Xe2_LPM
[15:15:50] [PASSED] 30.00 Xe3_LPM
[15:15:50] [PASSED] 30.02 Xe3_LPM
[15:15:50] [PASSED] 35.00 Xe3p_LPM
[15:15:50] [PASSED] 35.03 Xe3p_HPM
[15:15:50] ================= [PASSED] check_media_ip ==================
[15:15:50] =================== check_platform_desc  ===================
[15:15:50] [PASSED] 0x9A60 (TIGERLAKE)
[15:15:50] [PASSED] 0x9A68 (TIGERLAKE)
[15:15:50] [PASSED] 0x9A70 (TIGERLAKE)
[15:15:50] [PASSED] 0x9A40 (TIGERLAKE)
[15:15:50] [PASSED] 0x9A49 (TIGERLAKE)
[15:15:50] [PASSED] 0x9A59 (TIGERLAKE)
[15:15:50] [PASSED] 0x9A78 (TIGERLAKE)
[15:15:50] [PASSED] 0x9AC0 (TIGERLAKE)
[15:15:50] [PASSED] 0x9AC9 (TIGERLAKE)
[15:15:50] [PASSED] 0x9AD9 (TIGERLAKE)
[15:15:50] [PASSED] 0x9AF8 (TIGERLAKE)
[15:15:50] [PASSED] 0x4C80 (ROCKETLAKE)
[15:15:50] [PASSED] 0x4C8A (ROCKETLAKE)
[15:15:50] [PASSED] 0x4C8B (ROCKETLAKE)
[15:15:50] [PASSED] 0x4C8C (ROCKETLAKE)
[15:15:50] [PASSED] 0x4C90 (ROCKETLAKE)
[15:15:50] [PASSED] 0x4C9A (ROCKETLAKE)
[15:15:50] [PASSED] 0x4680 (ALDERLAKE_S)
[15:15:50] [PASSED] 0x4682 (ALDERLAKE_S)
[15:15:50] [PASSED] 0x4688 (ALDERLAKE_S)
[15:15:50] [PASSED] 0x468A (ALDERLAKE_S)
[15:15:50] [PASSED] 0x468B (ALDERLAKE_S)
[15:15:50] [PASSED] 0x4690 (ALDERLAKE_S)
[15:15:50] [PASSED] 0x4692 (ALDERLAKE_S)
[15:15:50] [PASSED] 0x4693 (ALDERLAKE_S)
[15:15:50] [PASSED] 0x46A0 (ALDERLAKE_P)
[15:15:50] [PASSED] 0x46A1 (ALDERLAKE_P)
[15:15:50] [PASSED] 0x46A2 (ALDERLAKE_P)
[15:15:50] [PASSED] 0x46A3 (ALDERLAKE_P)
[15:15:50] [PASSED] 0x46A6 (ALDERLAKE_P)
[15:15:50] [PASSED] 0x46A8 (ALDERLAKE_P)
[15:15:50] [PASSED] 0x46AA (ALDERLAKE_P)
[15:15:50] [PASSED] 0x462A (ALDERLAKE_P)
[15:15:50] [PASSED] 0x4626 (ALDERLAKE_P)
[15:15:50] [PASSED] 0x4628 (ALDERLAKE_P)
[15:15:50] [PASSED] 0x46B0 (ALDERLAKE_P)
[15:15:50] [PASSED] 0x46B1 (ALDERLAKE_P)
[15:15:50] [PASSED] 0x46B2 (ALDERLAKE_P)
[15:15:50] [PASSED] 0x46B3 (ALDERLAKE_P)
[15:15:50] [PASSED] 0x46C0 (ALDERLAKE_P)
[15:15:50] [PASSED] 0x46C1 (ALDERLAKE_P)
[15:15:50] [PASSED] 0x46C2 (ALDERLAKE_P)
[15:15:50] [PASSED] 0x46C3 (ALDERLAKE_P)
[15:15:50] [PASSED] 0x46D0 (ALDERLAKE_N)
[15:15:50] [PASSED] 0x46D1 (ALDERLAKE_N)
[15:15:50] [PASSED] 0x46D2 (ALDERLAKE_N)
[15:15:50] [PASSED] 0x46D3 (ALDERLAKE_N)
[15:15:50] [PASSED] 0x46D4 (ALDERLAKE_N)
[15:15:50] [PASSED] 0xA721 (ALDERLAKE_P)
[15:15:50] [PASSED] 0xA7A1 (ALDERLAKE_P)
[15:15:50] [PASSED] 0xA7A9 (ALDERLAKE_P)
[15:15:50] [PASSED] 0xA7AC (ALDERLAKE_P)
[15:15:50] [PASSED] 0xA7AD (ALDERLAKE_P)
[15:15:50] [PASSED] 0xA720 (ALDERLAKE_P)
[15:15:50] [PASSED] 0xA7A0 (ALDERLAKE_P)
[15:15:50] [PASSED] 0xA7A8 (ALDERLAKE_P)
[15:15:50] [PASSED] 0xA7AA (ALDERLAKE_P)
[15:15:50] [PASSED] 0xA7AB (ALDERLAKE_P)
[15:15:50] [PASSED] 0xA780 (ALDERLAKE_S)
[15:15:50] [PASSED] 0xA781 (ALDERLAKE_S)
[15:15:50] [PASSED] 0xA782 (ALDERLAKE_S)
[15:15:50] [PASSED] 0xA783 (ALDERLAKE_S)
[15:15:50] [PASSED] 0xA788 (ALDERLAKE_S)
[15:15:50] [PASSED] 0xA789 (ALDERLAKE_S)
[15:15:50] [PASSED] 0xA78A (ALDERLAKE_S)
[15:15:50] [PASSED] 0xA78B (ALDERLAKE_S)
[15:15:50] [PASSED] 0x4905 (DG1)
[15:15:50] [PASSED] 0x4906 (DG1)
[15:15:50] [PASSED] 0x4907 (DG1)
[15:15:50] [PASSED] 0x4908 (DG1)
[15:15:50] [PASSED] 0x4909 (DG1)
[15:15:50] [PASSED] 0x56C0 (DG2)
[15:15:50] [PASSED] 0x56C2 (DG2)
[15:15:50] [PASSED] 0x56C1 (DG2)
[15:15:50] [PASSED] 0x7D51 (METEORLAKE)
[15:15:50] [PASSED] 0x7DD1 (METEORLAKE)
[15:15:50] [PASSED] 0x7D41 (METEORLAKE)
[15:15:50] [PASSED] 0x7D67 (METEORLAKE)
[15:15:50] [PASSED] 0xB640 (METEORLAKE)
[15:15:50] [PASSED] 0x56A0 (DG2)
[15:15:50] [PASSED] 0x56A1 (DG2)
[15:15:50] [PASSED] 0x56A2 (DG2)
[15:15:50] [PASSED] 0x56BE (DG2)
[15:15:50] [PASSED] 0x56BF (DG2)
[15:15:50] [PASSED] 0x5690 (DG2)
[15:15:50] [PASSED] 0x5691 (DG2)
[15:15:50] [PASSED] 0x5692 (DG2)
[15:15:50] [PASSED] 0x56A5 (DG2)
[15:15:50] [PASSED] 0x56A6 (DG2)
[15:15:50] [PASSED] 0x56B0 (DG2)
[15:15:50] [PASSED] 0x56B1 (DG2)
[15:15:50] [PASSED] 0x56BA (DG2)
[15:15:50] [PASSED] 0x56BB (DG2)
[15:15:50] [PASSED] 0x56BC (DG2)
[15:15:50] [PASSED] 0x56BD (DG2)
[15:15:50] [PASSED] 0x5693 (DG2)
[15:15:50] [PASSED] 0x5694 (DG2)
[15:15:50] [PASSED] 0x5695 (DG2)
[15:15:50] [PASSED] 0x56A3 (DG2)
[15:15:50] [PASSED] 0x56A4 (DG2)
[15:15:50] [PASSED] 0x56B2 (DG2)
[15:15:50] [PASSED] 0x56B3 (DG2)
[15:15:50] [PASSED] 0x5696 (DG2)
[15:15:50] [PASSED] 0x5697 (DG2)
[15:15:50] [PASSED] 0xB69 (PVC)
[15:15:50] [PASSED] 0xB6E (PVC)
[15:15:50] [PASSED] 0xBD4 (PVC)
[15:15:50] [PASSED] 0xBD5 (PVC)
[15:15:50] [PASSED] 0xBD6 (PVC)
[15:15:50] [PASSED] 0xBD7 (PVC)
[15:15:50] [PASSED] 0xBD8 (PVC)
[15:15:50] [PASSED] 0xBD9 (PVC)
[15:15:50] [PASSED] 0xBDA (PVC)
[15:15:50] [PASSED] 0xBDB (PVC)
[15:15:50] [PASSED] 0xBE0 (PVC)
[15:15:50] [PASSED] 0xBE1 (PVC)
[15:15:50] [PASSED] 0xBE5 (PVC)
[15:15:50] [PASSED] 0x7D40 (METEORLAKE)
[15:15:50] [PASSED] 0x7D45 (METEORLAKE)
[15:15:50] [PASSED] 0x7D55 (METEORLAKE)
[15:15:50] [PASSED] 0x7D60 (METEORLAKE)
[15:15:50] [PASSED] 0x7DD5 (METEORLAKE)
[15:15:50] [PASSED] 0x6420 (LUNARLAKE)
[15:15:50] [PASSED] 0x64A0 (LUNARLAKE)
[15:15:50] [PASSED] 0x64B0 (LUNARLAKE)
[15:15:50] [PASSED] 0xE202 (BATTLEMAGE)
[15:15:50] [PASSED] 0xE209 (BATTLEMAGE)
[15:15:50] [PASSED] 0xE20B (BATTLEMAGE)
[15:15:50] [PASSED] 0xE20C (BATTLEMAGE)
[15:15:50] [PASSED] 0xE20D (BATTLEMAGE)
[15:15:50] [PASSED] 0xE210 (BATTLEMAGE)
[15:15:50] [PASSED] 0xE211 (BATTLEMAGE)
[15:15:50] [PASSED] 0xE212 (BATTLEMAGE)
[15:15:50] [PASSED] 0xE216 (BATTLEMAGE)
[15:15:50] [PASSED] 0xE220 (BATTLEMAGE)
[15:15:50] [PASSED] 0xE221 (BATTLEMAGE)
[15:15:50] [PASSED] 0xE222 (BATTLEMAGE)
[15:15:50] [PASSED] 0xE223 (BATTLEMAGE)
[15:15:50] [PASSED] 0xB080 (PANTHERLAKE)
[15:15:50] [PASSED] 0xB081 (PANTHERLAKE)
[15:15:50] [PASSED] 0xB082 (PANTHERLAKE)
[15:15:50] [PASSED] 0xB083 (PANTHERLAKE)
[15:15:50] [PASSED] 0xB084 (PANTHERLAKE)
[15:15:50] [PASSED] 0xB085 (PANTHERLAKE)
[15:15:50] [PASSED] 0xB086 (PANTHERLAKE)
[15:15:50] [PASSED] 0xB087 (PANTHERLAKE)
[15:15:50] [PASSED] 0xB08F (PANTHERLAKE)
[15:15:50] [PASSED] 0xB090 (PANTHERLAKE)
[15:15:50] [PASSED] 0xB0A0 (PANTHERLAKE)
[15:15:50] [PASSED] 0xB0B0 (PANTHERLAKE)
[15:15:50] [PASSED] 0xFD80 (PANTHERLAKE)
[15:15:50] [PASSED] 0xFD81 (PANTHERLAKE)
[15:15:50] [PASSED] 0xD740 (NOVALAKE_S)
[15:15:50] [PASSED] 0xD741 (NOVALAKE_S)
[15:15:50] [PASSED] 0xD742 (NOVALAKE_S)
[15:15:50] [PASSED] 0xD743 (NOVALAKE_S)
[15:15:50] [PASSED] 0xD744 (NOVALAKE_S)
[15:15:50] [PASSED] 0xD745 (NOVALAKE_S)
[15:15:50] [PASSED] 0x674C (CRESCENTISLAND)
[15:15:50] [PASSED] 0x674D (CRESCENTISLAND)
[15:15:50] [PASSED] 0x674E (CRESCENTISLAND)
[15:15:50] [PASSED] 0x674F (CRESCENTISLAND)
[15:15:50] [PASSED] 0x6750 (CRESCENTISLAND)
[15:15:50] [PASSED] 0xD750 (NOVALAKE_P)
[15:15:50] [PASSED] 0xD751 (NOVALAKE_P)
[15:15:50] [PASSED] 0xD752 (NOVALAKE_P)
[15:15:50] [PASSED] 0xD753 (NOVALAKE_P)
[15:15:50] [PASSED] 0xD754 (NOVALAKE_P)
[15:15:50] [PASSED] 0xD755 (NOVALAKE_P)
[15:15:50] [PASSED] 0xD756 (NOVALAKE_P)
[15:15:50] [PASSED] 0xD757 (NOVALAKE_P)
[15:15:50] [PASSED] 0xD75F (NOVALAKE_P)
[15:15:50] =============== [PASSED] check_platform_desc ===============
[15:15:50] ===================== [PASSED] xe_pci ======================
[15:15:50] =================== xe_rtp (3 subtests) ====================
[15:15:50] =================== xe_rtp_rules_tests  ====================
[15:15:50] [PASSED] no
[15:15:50] [PASSED] yes
[15:15:50] [PASSED] no-and-no
[15:15:50] [PASSED] no-and-yes
[15:15:50] [PASSED] yes-and-no
[15:15:50] [PASSED] yes-and-yes
[15:15:50] [PASSED] no-or-no
[15:15:50] [PASSED] no-or-yes
[15:15:50] [PASSED] yes-or-no
[15:15:50] [PASSED] yes-or-yes
[15:15:50] [PASSED] no-yes-or-yes-no
[15:15:50] [PASSED] no-yes-or-yes-yes
[15:15:50] [PASSED] yes-yes-or-no-yes
[15:15:50] [PASSED] yes-yes-or-yes-yes
[15:15:50] [PASSED] no-no-or-yes-or-no
[15:15:50] [PASSED] or
[15:15:50] [PASSED] or-yes
[15:15:50] [PASSED] or-no
[15:15:50] [PASSED] yes-or
[15:15:50] [PASSED] no-or
[15:15:50] [PASSED] no-or-or-yes
[15:15:50] [PASSED] yes-or-or-no
[15:15:50] [PASSED] no-or-or-no
[15:15:50] [PASSED] missing-context-engine-class
[15:15:50] [PASSED] missing-context-engine-class-or-yes
[15:15:50] [PASSED] missing-context-engine-class-or-or-yes
[15:15:50] =============== [PASSED] xe_rtp_rules_tests ================
[15:15:50] =============== xe_rtp_process_to_sr_tests  ================
[15:15:50] [PASSED] coalesce-same-reg
[15:15:50] [PASSED] no-match-no-add
[15:15:50] [PASSED] two-regs-two-entries
[15:15:50] [PASSED] clr-one-set-other
[15:15:50] [PASSED] set-field
[15:15:50] [PASSED] conflict-duplicate
[15:15:50] [PASSED] conflict-not-disjoint
[15:15:50] [PASSED] conflict-reg-type
[15:15:50] [PASSED] bad-mcr-reg-forced-to-regular
[15:15:50] [PASSED] bad-regular-reg-forced-to-mcr
[15:15:50] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[15:15:50] ================== xe_rtp_process_tests  ===================
[15:15:50] [PASSED] active1
[15:15:50] [PASSED] active2
[15:15:50] [PASSED] active-inactive
[15:15:50] [PASSED] inactive-active
[15:15:50] [PASSED] inactive-active-inactive
[15:15:50] [PASSED] inactive-inactive-inactive
[15:15:50] ============== [PASSED] xe_rtp_process_tests ===============
[15:15:50] ===================== [PASSED] xe_rtp ======================
[15:15:50] ==================== xe_wa (1 subtest) =====================
[15:15:50] ======================== xe_wa_gt  =========================
[15:15:50] [PASSED] TIGERLAKE B0
[15:15:50] [PASSED] DG1 A0
[15:15:50] [PASSED] DG1 B0
[15:15:50] [PASSED] ALDERLAKE_S A0
[15:15:50] [PASSED] ALDERLAKE_S B0
[15:15:50] [PASSED] ALDERLAKE_S C0
[15:15:50] [PASSED] ALDERLAKE_S D0
[15:15:50] [PASSED] ALDERLAKE_P A0
[15:15:50] [PASSED] ALDERLAKE_P B0
[15:15:50] [PASSED] ALDERLAKE_P C0
[15:15:50] [PASSED] ALDERLAKE_S RPLS D0
[15:15:50] [PASSED] ALDERLAKE_P RPLU E0
[15:15:50] [PASSED] DG2 G10 C0
[15:15:50] [PASSED] DG2 G11 B1
[15:15:50] [PASSED] DG2 G12 A1
[15:15:50] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[15:15:50] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[15:15:50] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[15:15:50] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[15:15:50] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[15:15:50] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[15:15:50] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[15:15:50] ==================== [PASSED] xe_wa_gt =====================
[15:15:50] ====================== [PASSED] xe_wa ======================
[15:15:50] ============================================================
[15:15:50] Testing complete. Ran 624 tests: passed: 606, skipped: 18
[15:15:50] Elapsed time: 36.513s total, 4.371s configuring, 31.476s building, 0.637s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[15:15:50] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:15:52] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[15:16:16] Starting KUnit Kernel (1/1)...
[15:16:16] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:16:16] ============ drm_test_pick_cmdline (2 subtests) ============
[15:16:16] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[15:16:16] =============== drm_test_pick_cmdline_named  ===============
[15:16:16] [PASSED] NTSC
[15:16:16] [PASSED] NTSC-J
[15:16:16] [PASSED] PAL
[15:16:16] [PASSED] PAL-M
[15:16:16] =========== [PASSED] drm_test_pick_cmdline_named ===========
[15:16:16] ============== [PASSED] drm_test_pick_cmdline ==============
[15:16:16] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[15:16:16] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[15:16:16] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[15:16:16] =========== drm_validate_clone_mode (2 subtests) ===========
[15:16:16] ============== drm_test_check_in_clone_mode  ===============
[15:16:16] [PASSED] in_clone_mode
[15:16:16] [PASSED] not_in_clone_mode
[15:16:16] ========== [PASSED] drm_test_check_in_clone_mode ===========
[15:16:16] =============== drm_test_check_valid_clones  ===============
[15:16:16] [PASSED] not_in_clone_mode
[15:16:16] [PASSED] valid_clone
[15:16:16] [PASSED] invalid_clone
[15:16:16] =========== [PASSED] drm_test_check_valid_clones ===========
[15:16:16] ============= [PASSED] drm_validate_clone_mode =============
[15:16:16] ============= drm_validate_modeset (1 subtest) =============
[15:16:16] [PASSED] drm_test_check_connector_changed_modeset
[15:16:16] ============== [PASSED] drm_validate_modeset ===============
[15:16:16] ====== drm_test_bridge_get_current_state (2 subtests) ======
[15:16:16] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[15:16:16] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[15:16:16] ======== [PASSED] drm_test_bridge_get_current_state ========
[15:16:16] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[15:16:16] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[15:16:16] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[15:16:16] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[15:16:16] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[15:16:16] ============== drm_bridge_alloc (2 subtests) ===============
[15:16:16] [PASSED] drm_test_drm_bridge_alloc_basic
[15:16:16] [PASSED] drm_test_drm_bridge_alloc_get_put
[15:16:16] ================ [PASSED] drm_bridge_alloc =================
[15:16:16] ============= drm_cmdline_parser (40 subtests) =============
[15:16:16] [PASSED] drm_test_cmdline_force_d_only
[15:16:16] [PASSED] drm_test_cmdline_force_D_only_dvi
[15:16:16] [PASSED] drm_test_cmdline_force_D_only_hdmi
[15:16:16] [PASSED] drm_test_cmdline_force_D_only_not_digital
[15:16:16] [PASSED] drm_test_cmdline_force_e_only
[15:16:16] [PASSED] drm_test_cmdline_res
[15:16:16] [PASSED] drm_test_cmdline_res_vesa
[15:16:16] [PASSED] drm_test_cmdline_res_vesa_rblank
[15:16:16] [PASSED] drm_test_cmdline_res_rblank
[15:16:16] [PASSED] drm_test_cmdline_res_bpp
[15:16:16] [PASSED] drm_test_cmdline_res_refresh
[15:16:16] [PASSED] drm_test_cmdline_res_bpp_refresh
[15:16:16] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[15:16:16] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[15:16:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[15:16:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[15:16:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[15:16:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[15:16:16] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[15:16:16] [PASSED] drm_test_cmdline_res_margins_force_on
[15:16:16] [PASSED] drm_test_cmdline_res_vesa_margins
[15:16:16] [PASSED] drm_test_cmdline_name
[15:16:16] [PASSED] drm_test_cmdline_name_bpp
[15:16:16] [PASSED] drm_test_cmdline_name_option
[15:16:16] [PASSED] drm_test_cmdline_name_bpp_option
[15:16:16] [PASSED] drm_test_cmdline_rotate_0
[15:16:16] [PASSED] drm_test_cmdline_rotate_90
[15:16:16] [PASSED] drm_test_cmdline_rotate_180
[15:16:16] [PASSED] drm_test_cmdline_rotate_270
[15:16:16] [PASSED] drm_test_cmdline_hmirror
[15:16:16] [PASSED] drm_test_cmdline_vmirror
[15:16:16] [PASSED] drm_test_cmdline_margin_options
[15:16:16] [PASSED] drm_test_cmdline_multiple_options
[15:16:16] [PASSED] drm_test_cmdline_bpp_extra_and_option
[15:16:16] [PASSED] drm_test_cmdline_extra_and_option
[15:16:16] [PASSED] drm_test_cmdline_freestanding_options
[15:16:16] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[15:16:16] [PASSED] drm_test_cmdline_panel_orientation
[15:16:16] ================ drm_test_cmdline_invalid  =================
[15:16:16] [PASSED] margin_only
[15:16:16] [PASSED] interlace_only
[15:16:16] [PASSED] res_missing_x
[15:16:16] [PASSED] res_missing_y
[15:16:16] [PASSED] res_bad_y
[15:16:16] [PASSED] res_missing_y_bpp
[15:16:16] [PASSED] res_bad_bpp
[15:16:16] [PASSED] res_bad_refresh
[15:16:16] [PASSED] res_bpp_refresh_force_on_off
[15:16:16] [PASSED] res_invalid_mode
[15:16:16] [PASSED] res_bpp_wrong_place_mode
[15:16:16] [PASSED] name_bpp_refresh
[15:16:16] [PASSED] name_refresh
[15:16:16] [PASSED] name_refresh_wrong_mode
[15:16:16] [PASSED] name_refresh_invalid_mode
[15:16:16] [PASSED] rotate_multiple
[15:16:16] [PASSED] rotate_invalid_val
[15:16:16] [PASSED] rotate_truncated
[15:16:16] [PASSED] invalid_option
[15:16:16] [PASSED] invalid_tv_option
[15:16:16] [PASSED] truncated_tv_option
[15:16:16] ============ [PASSED] drm_test_cmdline_invalid =============
[15:16:16] =============== drm_test_cmdline_tv_options  ===============
[15:16:16] [PASSED] NTSC
[15:16:16] [PASSED] NTSC_443
[15:16:16] [PASSED] NTSC_J
[15:16:16] [PASSED] PAL
[15:16:16] [PASSED] PAL_M
[15:16:16] [PASSED] PAL_N
[15:16:16] [PASSED] SECAM
[15:16:16] [PASSED] MONO_525
[15:16:16] [PASSED] MONO_625
[15:16:16] =========== [PASSED] drm_test_cmdline_tv_options ===========
[15:16:16] =============== [PASSED] drm_cmdline_parser ================
[15:16:16] ========== drmm_connector_hdmi_init (20 subtests) ==========
[15:16:16] [PASSED] drm_test_connector_hdmi_init_valid
[15:16:16] [PASSED] drm_test_connector_hdmi_init_bpc_8
[15:16:16] [PASSED] drm_test_connector_hdmi_init_bpc_10
[15:16:16] [PASSED] drm_test_connector_hdmi_init_bpc_12
[15:16:16] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[15:16:16] [PASSED] drm_test_connector_hdmi_init_bpc_null
[15:16:16] [PASSED] drm_test_connector_hdmi_init_formats_empty
[15:16:16] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[15:16:16] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[15:16:16] [PASSED] supported_formats=0x9 yuv420_allowed=1
[15:16:16] [PASSED] supported_formats=0x9 yuv420_allowed=0
[15:16:16] [PASSED] supported_formats=0x5 yuv420_allowed=1
[15:16:16] [PASSED] supported_formats=0x5 yuv420_allowed=0
[15:16:16] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[15:16:16] [PASSED] drm_test_connector_hdmi_init_null_ddc
[15:16:16] [PASSED] drm_test_connector_hdmi_init_null_product
[15:16:16] [PASSED] drm_test_connector_hdmi_init_null_vendor
[15:16:16] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[15:16:16] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[15:16:16] [PASSED] drm_test_connector_hdmi_init_product_valid
[15:16:16] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[15:16:16] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[15:16:16] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[15:16:16] ========= drm_test_connector_hdmi_init_type_valid  =========
[15:16:16] [PASSED] HDMI-A
[15:16:16] [PASSED] HDMI-B
[15:16:16] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[15:16:16] ======== drm_test_connector_hdmi_init_type_invalid  ========
[15:16:16] [PASSED] Unknown
[15:16:16] [PASSED] VGA
[15:16:16] [PASSED] DVI-I
[15:16:16] [PASSED] DVI-D
[15:16:16] [PASSED] DVI-A
[15:16:16] [PASSED] Composite
[15:16:16] [PASSED] SVIDEO
[15:16:16] [PASSED] LVDS
[15:16:16] [PASSED] Component
[15:16:16] [PASSED] DIN
[15:16:16] [PASSED] DP
[15:16:16] [PASSED] TV
[15:16:16] [PASSED] eDP
[15:16:16] [PASSED] Virtual
[15:16:16] [PASSED] DSI
[15:16:16] [PASSED] DPI
[15:16:16] [PASSED] Writeback
[15:16:16] [PASSED] SPI
[15:16:16] [PASSED] USB
[15:16:16] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[15:16:16] ============ [PASSED] drmm_connector_hdmi_init =============
[15:16:16] ============= drmm_connector_init (3 subtests) =============
[15:16:16] [PASSED] drm_test_drmm_connector_init
[15:16:16] [PASSED] drm_test_drmm_connector_init_null_ddc
[15:16:16] ========= drm_test_drmm_connector_init_type_valid  =========
[15:16:16] [PASSED] Unknown
[15:16:16] [PASSED] VGA
[15:16:16] [PASSED] DVI-I
[15:16:16] [PASSED] DVI-D
[15:16:16] [PASSED] DVI-A
[15:16:16] [PASSED] Composite
[15:16:16] [PASSED] SVIDEO
[15:16:16] [PASSED] LVDS
[15:16:16] [PASSED] Component
[15:16:16] [PASSED] DIN
[15:16:16] [PASSED] DP
[15:16:16] [PASSED] HDMI-A
[15:16:16] [PASSED] HDMI-B
[15:16:16] [PASSED] TV
[15:16:16] [PASSED] eDP
[15:16:16] [PASSED] Virtual
[15:16:16] [PASSED] DSI
[15:16:16] [PASSED] DPI
[15:16:16] [PASSED] Writeback
[15:16:16] [PASSED] SPI
[15:16:16] [PASSED] USB
[15:16:16] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[15:16:16] =============== [PASSED] drmm_connector_init ===============
[15:16:16] ========= drm_connector_dynamic_init (6 subtests) ==========
[15:16:16] [PASSED] drm_test_drm_connector_dynamic_init
[15:16:16] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[15:16:16] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[15:16:16] [PASSED] drm_test_drm_connector_dynamic_init_properties
[15:16:16] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[15:16:16] [PASSED] Unknown
[15:16:16] [PASSED] VGA
[15:16:16] [PASSED] DVI-I
[15:16:16] [PASSED] DVI-D
[15:16:16] [PASSED] DVI-A
[15:16:16] [PASSED] Composite
[15:16:16] [PASSED] SVIDEO
[15:16:16] [PASSED] LVDS
[15:16:16] [PASSED] Component
[15:16:16] [PASSED] DIN
[15:16:16] [PASSED] DP
[15:16:16] [PASSED] HDMI-A
[15:16:16] [PASSED] HDMI-B
[15:16:16] [PASSED] TV
[15:16:16] [PASSED] eDP
[15:16:16] [PASSED] Virtual
[15:16:16] [PASSED] DSI
[15:16:16] [PASSED] DPI
[15:16:16] [PASSED] Writeback
[15:16:16] [PASSED] SPI
[15:16:16] [PASSED] USB
[15:16:16] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[15:16:16] ======== drm_test_drm_connector_dynamic_init_name  =========
[15:16:16] [PASSED] Unknown
[15:16:16] [PASSED] VGA
[15:16:16] [PASSED] DVI-I
[15:16:16] [PASSED] DVI-D
[15:16:16] [PASSED] DVI-A
[15:16:16] [PASSED] Composite
[15:16:16] [PASSED] SVIDEO
[15:16:16] [PASSED] LVDS
[15:16:16] [PASSED] Component
[15:16:16] [PASSED] DIN
[15:16:16] [PASSED] DP
[15:16:16] [PASSED] HDMI-A
[15:16:16] [PASSED] HDMI-B
[15:16:16] [PASSED] TV
[15:16:16] [PASSED] eDP
[15:16:16] [PASSED] Virtual
[15:16:16] [PASSED] DSI
[15:16:16] [PASSED] DPI
[15:16:16] [PASSED] Writeback
[15:16:16] [PASSED] SPI
[15:16:16] [PASSED] USB
[15:16:16] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[15:16:16] =========== [PASSED] drm_connector_dynamic_init ============
[15:16:16] ==== drm_connector_dynamic_register_early (4 subtests) =====
[15:16:16] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[15:16:16] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[15:16:16] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[15:16:16] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[15:16:16] ====== [PASSED] drm_connector_dynamic_register_early =======
[15:16:16] ======= drm_connector_dynamic_register (7 subtests) ========
[15:16:16] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[15:16:16] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[15:16:16] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[15:16:16] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[15:16:16] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[15:16:16] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[15:16:16] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[15:16:16] ========= [PASSED] drm_connector_dynamic_register ==========
[15:16:16] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[15:16:16] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[15:16:16] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[15:16:16] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[15:16:16] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[15:16:16] ========== drm_test_get_tv_mode_from_name_valid  ===========
[15:16:16] [PASSED] NTSC
[15:16:16] [PASSED] NTSC-443
[15:16:16] [PASSED] NTSC-J
[15:16:16] [PASSED] PAL
[15:16:16] [PASSED] PAL-M
[15:16:16] [PASSED] PAL-N
[15:16:16] [PASSED] SECAM
[15:16:16] [PASSED] Mono
[15:16:16] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[15:16:16] [PASSED] drm_test_get_tv_mode_from_name_truncated
[15:16:16] ============ [PASSED] drm_get_tv_mode_from_name ============
[15:16:16] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[15:16:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[15:16:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[15:16:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[15:16:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[15:16:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[15:16:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[15:16:16] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[15:16:16] [PASSED] VIC 96
[15:16:16] [PASSED] VIC 97
[15:16:16] [PASSED] VIC 101
[15:16:16] [PASSED] VIC 102
[15:16:16] [PASSED] VIC 106
[15:16:16] [PASSED] VIC 107
[15:16:16] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[15:16:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[15:16:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[15:16:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[15:16:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[15:16:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[15:16:16] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[15:16:16] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[15:16:16] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[15:16:16] [PASSED] Automatic
[15:16:16] [PASSED] Full
[15:16:16] [PASSED] Limited 16:235
[15:16:16] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[15:16:16] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[15:16:16] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[15:16:16] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[15:16:16] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[15:16:16] [PASSED] RGB
[15:16:16] [PASSED] YUV 4:2:0
[15:16:16] [PASSED] YUV 4:2:2
[15:16:16] [PASSED] YUV 4:4:4
[15:16:16] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[15:16:16] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[15:16:16] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[15:16:16] ============= drm_damage_helper (21 subtests) ==============
[15:16:16] [PASSED] drm_test_damage_iter_no_damage
[15:16:16] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[15:16:16] [PASSED] drm_test_damage_iter_no_damage_src_moved
[15:16:16] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[15:16:16] [PASSED] drm_test_damage_iter_no_damage_not_visible
[15:16:16] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[15:16:16] [PASSED] drm_test_damage_iter_no_damage_no_fb
[15:16:16] [PASSED] drm_test_damage_iter_simple_damage
[15:16:16] [PASSED] drm_test_damage_iter_single_damage
[15:16:16] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[15:16:16] [PASSED] drm_test_damage_iter_single_damage_outside_src
[15:16:16] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[15:16:16] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[15:16:16] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[15:16:16] [PASSED] drm_test_damage_iter_single_damage_src_moved
[15:16:16] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[15:16:16] [PASSED] drm_test_damage_iter_damage
[15:16:16] [PASSED] drm_test_damage_iter_damage_one_intersect
[15:16:16] [PASSED] drm_test_damage_iter_damage_one_outside
[15:16:16] [PASSED] drm_test_damage_iter_damage_src_moved
[15:16:16] [PASSED] drm_test_damage_iter_damage_not_visible
[15:16:16] ================ [PASSED] drm_damage_helper ================
[15:16:16] ============== drm_dp_mst_helper (3 subtests) ==============
[15:16:16] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[15:16:16] [PASSED] Clock 154000 BPP 30 DSC disabled
[15:16:16] [PASSED] Clock 234000 BPP 30 DSC disabled
[15:16:16] [PASSED] Clock 297000 BPP 24 DSC disabled
[15:16:16] [PASSED] Clock 332880 BPP 24 DSC enabled
[15:16:16] [PASSED] Clock 324540 BPP 24 DSC enabled
[15:16:16] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[15:16:16] ============== drm_test_dp_mst_calc_pbn_div  ===============
[15:16:16] [PASSED] Link rate 2000000 lane count 4
[15:16:16] [PASSED] Link rate 2000000 lane count 2
[15:16:16] [PASSED] Link rate 2000000 lane count 1
[15:16:16] [PASSED] Link rate 1350000 lane count 4
[15:16:16] [PASSED] Link rate 1350000 lane count 2
[15:16:16] [PASSED] Link rate 1350000 lane count 1
[15:16:16] [PASSED] Link rate 1000000 lane count 4
[15:16:16] [PASSED] Link rate 1000000 lane count 2
[15:16:16] [PASSED] Link rate 1000000 lane count 1
[15:16:16] [PASSED] Link rate 810000 lane count 4
[15:16:16] [PASSED] Link rate 810000 lane count 2
[15:16:16] [PASSED] Link rate 810000 lane count 1
[15:16:16] [PASSED] Link rate 540000 lane count 4
[15:16:16] [PASSED] Link rate 540000 lane count 2
[15:16:16] [PASSED] Link rate 540000 lane count 1
[15:16:16] [PASSED] Link rate 270000 lane count 4
[15:16:16] [PASSED] Link rate 270000 lane count 2
[15:16:16] [PASSED] Link rate 270000 lane count 1
[15:16:16] [PASSED] Link rate 162000 lane count 4
[15:16:16] [PASSED] Link rate 162000 lane count 2
[15:16:16] [PASSED] Link rate 162000 lane count 1
[15:16:16] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[15:16:16] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[15:16:16] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[15:16:16] [PASSED] DP_POWER_UP_PHY with port number
[15:16:16] [PASSED] DP_POWER_DOWN_PHY with port number
[15:16:16] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[15:16:16] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[15:16:16] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[15:16:16] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[15:16:16] [PASSED] DP_QUERY_PAYLOAD with port number
[15:16:16] [PASSED] DP_QUERY_PAYLOAD with VCPI
[15:16:16] [PASSED] DP_REMOTE_DPCD_READ with port number
[15:16:16] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[15:16:16] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[15:16:16] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[15:16:16] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[15:16:16] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[15:16:16] [PASSED] DP_REMOTE_I2C_READ with port number
[15:16:16] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[15:16:16] [PASSED] DP_REMOTE_I2C_READ with transactions array
[15:16:16] [PASSED] DP_REMOTE_I2C_WRITE with port number
[15:16:16] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[15:16:16] [PASSED] DP_REMOTE_I2C_WRITE with data array
[15:16:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[15:16:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[15:16:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[15:16:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[15:16:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[15:16:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[15:16:16] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[15:16:16] ================ [PASSED] drm_dp_mst_helper ================
[15:16:16] ================== drm_exec (7 subtests) ===================
[15:16:16] [PASSED] sanitycheck
[15:16:16] [PASSED] test_lock
[15:16:16] [PASSED] test_lock_unlock
[15:16:16] [PASSED] test_duplicates
[15:16:16] [PASSED] test_prepare
[15:16:16] [PASSED] test_prepare_array
[15:16:16] [PASSED] test_multiple_loops
[15:16:16] ==================== [PASSED] drm_exec =====================
[15:16:16] =========== drm_format_helper_test (17 subtests) ===========
[15:16:16] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[15:16:16] [PASSED] single_pixel_source_buffer
[15:16:16] [PASSED] single_pixel_clip_rectangle
[15:16:16] [PASSED] well_known_colors
[15:16:16] [PASSED] destination_pitch
[15:16:16] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[15:16:16] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[15:16:16] [PASSED] single_pixel_source_buffer
[15:16:16] [PASSED] single_pixel_clip_rectangle
[15:16:16] [PASSED] well_known_colors
[15:16:16] [PASSED] destination_pitch
[15:16:16] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[15:16:16] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[15:16:16] [PASSED] single_pixel_source_buffer
[15:16:16] [PASSED] single_pixel_clip_rectangle
[15:16:16] [PASSED] well_known_colors
[15:16:16] [PASSED] destination_pitch
[15:16:16] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[15:16:16] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[15:16:16] [PASSED] single_pixel_source_buffer
[15:16:16] [PASSED] single_pixel_clip_rectangle
[15:16:16] [PASSED] well_known_colors
[15:16:16] [PASSED] destination_pitch
[15:16:16] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[15:16:16] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[15:16:16] [PASSED] single_pixel_source_buffer
[15:16:16] [PASSED] single_pixel_clip_rectangle
[15:16:16] [PASSED] well_known_colors
[15:16:16] [PASSED] destination_pitch
[15:16:16] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[15:16:16] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[15:16:16] [PASSED] single_pixel_source_buffer
[15:16:16] [PASSED] single_pixel_clip_rectangle
[15:16:16] [PASSED] well_known_colors
[15:16:16] [PASSED] destination_pitch
[15:16:16] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[15:16:16] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[15:16:16] [PASSED] single_pixel_source_buffer
[15:16:16] [PASSED] single_pixel_clip_rectangle
[15:16:16] [PASSED] well_known_colors
[15:16:16] [PASSED] destination_pitch
[15:16:16] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[15:16:16] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[15:16:16] [PASSED] single_pixel_source_buffer
[15:16:16] [PASSED] single_pixel_clip_rectangle
[15:16:16] [PASSED] well_known_colors
[15:16:16] [PASSED] destination_pitch
[15:16:16] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[15:16:16] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[15:16:16] [PASSED] single_pixel_source_buffer
[15:16:16] [PASSED] single_pixel_clip_rectangle
[15:16:16] [PASSED] well_known_colors
[15:16:16] [PASSED] destination_pitch
[15:16:16] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[15:16:16] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[15:16:16] [PASSED] single_pixel_source_buffer
[15:16:16] [PASSED] single_pixel_clip_rectangle
[15:16:16] [PASSED] well_known_colors
[15:16:16] [PASSED] destination_pitch
[15:16:16] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[15:16:16] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[15:16:16] [PASSED] single_pixel_source_buffer
[15:16:16] [PASSED] single_pixel_clip_rectangle
[15:16:16] [PASSED] well_known_colors
[15:16:16] [PASSED] destination_pitch
[15:16:16] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[15:16:16] ============== drm_test_fb_xrgb8888_to_mono  ===============
[15:16:16] [PASSED] single_pixel_source_buffer
[15:16:16] [PASSED] single_pixel_clip_rectangle
[15:16:16] [PASSED] well_known_colors
[15:16:16] [PASSED] destination_pitch
[15:16:16] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[15:16:16] ==================== drm_test_fb_swab  =====================
[15:16:16] [PASSED] single_pixel_source_buffer
[15:16:16] [PASSED] single_pixel_clip_rectangle
[15:16:16] [PASSED] well_known_colors
[15:16:16] [PASSED] destination_pitch
[15:16:16] ================ [PASSED] drm_test_fb_swab =================
[15:16:16] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[15:16:16] [PASSED] single_pixel_source_buffer
[15:16:16] [PASSED] single_pixel_clip_rectangle
[15:16:16] [PASSED] well_known_colors
[15:16:16] [PASSED] destination_pitch
[15:16:16] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[15:16:16] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[15:16:16] [PASSED] single_pixel_source_buffer
[15:16:16] [PASSED] single_pixel_clip_rectangle
[15:16:16] [PASSED] well_known_colors
[15:16:16] [PASSED] destination_pitch
[15:16:16] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[15:16:16] ================= drm_test_fb_clip_offset  =================
[15:16:16] [PASSED] pass through
[15:16:16] [PASSED] horizontal offset
[15:16:16] [PASSED] vertical offset
[15:16:16] [PASSED] horizontal and vertical offset
[15:16:16] [PASSED] horizontal offset (custom pitch)
[15:16:16] [PASSED] vertical offset (custom pitch)
[15:16:16] [PASSED] horizontal and vertical offset (custom pitch)
[15:16:16] ============= [PASSED] drm_test_fb_clip_offset =============
[15:16:16] =================== drm_test_fb_memcpy  ====================
[15:16:16] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[15:16:16] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[15:16:16] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[15:16:16] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[15:16:16] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[15:16:16] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[15:16:16] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[15:16:16] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[15:16:16] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[15:16:16] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[15:16:16] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[15:16:16] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[15:16:16] =============== [PASSED] drm_test_fb_memcpy ================
[15:16:16] ============= [PASSED] drm_format_helper_test ==============
[15:16:16] ================= drm_format (18 subtests) =================
[15:16:16] [PASSED] drm_test_format_block_width_invalid
[15:16:16] [PASSED] drm_test_format_block_width_one_plane
[15:16:16] [PASSED] drm_test_format_block_width_two_plane
[15:16:16] [PASSED] drm_test_format_block_width_three_plane
[15:16:16] [PASSED] drm_test_format_block_width_tiled
[15:16:16] [PASSED] drm_test_format_block_height_invalid
[15:16:16] [PASSED] drm_test_format_block_height_one_plane
[15:16:16] [PASSED] drm_test_format_block_height_two_plane
[15:16:16] [PASSED] drm_test_format_block_height_three_plane
[15:16:16] [PASSED] drm_test_format_block_height_tiled
[15:16:16] [PASSED] drm_test_format_min_pitch_invalid
[15:16:16] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[15:16:16] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[15:16:16] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[15:16:16] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[15:16:16] [PASSED] drm_test_format_min_pitch_two_plane
[15:16:16] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[15:16:16] [PASSED] drm_test_format_min_pitch_tiled
[15:16:16] =================== [PASSED] drm_format ====================
[15:16:16] ============== drm_framebuffer (10 subtests) ===============
[15:16:16] ========== drm_test_framebuffer_check_src_coords  ==========
[15:16:16] [PASSED] Success: source fits into fb
[15:16:16] [PASSED] Fail: overflowing fb with x-axis coordinate
[15:16:16] [PASSED] Fail: overflowing fb with y-axis coordinate
[15:16:16] [PASSED] Fail: overflowing fb with source width
[15:16:16] [PASSED] Fail: overflowing fb with source height
[15:16:16] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[15:16:16] [PASSED] drm_test_framebuffer_cleanup
[15:16:16] =============== drm_test_framebuffer_create  ===============
[15:16:16] [PASSED] ABGR8888 normal sizes
[15:16:16] [PASSED] ABGR8888 max sizes
[15:16:16] [PASSED] ABGR8888 pitch greater than min required
[15:16:16] [PASSED] ABGR8888 pitch less than min required
[15:16:16] [PASSED] ABGR8888 Invalid width
[15:16:16] [PASSED] ABGR8888 Invalid buffer handle
[15:16:16] [PASSED] No pixel format
[15:16:16] [PASSED] ABGR8888 Width 0
[15:16:16] [PASSED] ABGR8888 Height 0
[15:16:16] [PASSED] ABGR8888 Out of bound height * pitch combination
[15:16:16] [PASSED] ABGR8888 Large buffer offset
[15:16:16] [PASSED] ABGR8888 Buffer offset for inexistent plane
[15:16:16] [PASSED] ABGR8888 Invalid flag
[15:16:16] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[15:16:16] [PASSED] ABGR8888 Valid buffer modifier
[15:16:16] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[15:16:16] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[15:16:16] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[15:16:16] [PASSED] NV12 Normal sizes
[15:16:16] [PASSED] NV12 Max sizes
[15:16:16] [PASSED] NV12 Invalid pitch
[15:16:16] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[15:16:16] [PASSED] NV12 different  modifier per-plane
[15:16:16] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[15:16:16] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[15:16:16] [PASSED] NV12 Modifier for inexistent plane
[15:16:16] [PASSED] NV12 Handle for inexistent plane
[15:16:16] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[15:16:16] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[15:16:16] [PASSED] YVU420 Normal sizes
[15:16:16] [PASSED] YVU420 Max sizes
[15:16:16] [PASSED] YVU420 Invalid pitch
[15:16:16] [PASSED] YVU420 Different pitches
[15:16:16] [PASSED] YVU420 Different buffer offsets/pitches
[15:16:16] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[15:16:16] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[15:16:16] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[15:16:16] [PASSED] YVU420 Valid modifier
[15:16:16] [PASSED] YVU420 Different modifiers per plane
[15:16:16] [PASSED] YVU420 Modifier for inexistent plane
[15:16:16] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[15:16:16] [PASSED] X0L2 Normal sizes
[15:16:16] [PASSED] X0L2 Max sizes
[15:16:16] [PASSED] X0L2 Invalid pitch
[15:16:16] [PASSED] X0L2 Pitch greater than minimum required
[15:16:16] [PASSED] X0L2 Handle for inexistent plane
[15:16:16] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[15:16:16] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[15:16:16] [PASSED] X0L2 Valid modifier
[15:16:16] [PASSED] X0L2 Modifier for inexistent plane
[15:16:16] =========== [PASSED] drm_test_framebuffer_create ===========
[15:16:16] [PASSED] drm_test_framebuffer_free
[15:16:16] [PASSED] drm_test_framebuffer_init
[15:16:16] [PASSED] drm_test_framebuffer_init_bad_format
[15:16:16] [PASSED] drm_test_framebuffer_init_dev_mismatch
[15:16:16] [PASSED] drm_test_framebuffer_lookup
[15:16:16] [PASSED] drm_test_framebuffer_lookup_inexistent
[15:16:16] [PASSED] drm_test_framebuffer_modifiers_not_supported
[15:16:16] ================= [PASSED] drm_framebuffer =================
[15:16:16] ================ drm_gem_shmem (8 subtests) ================
[15:16:16] [PASSED] drm_gem_shmem_test_obj_create
[15:16:16] [PASSED] drm_gem_shmem_test_obj_create_private
[15:16:16] [PASSED] drm_gem_shmem_test_pin_pages
[15:16:16] [PASSED] drm_gem_shmem_test_vmap
[15:16:16] [PASSED] drm_gem_shmem_test_get_sg_table
[15:16:16] [PASSED] drm_gem_shmem_test_get_pages_sgt
[15:16:16] [PASSED] drm_gem_shmem_test_madvise
[15:16:16] [PASSED] drm_gem_shmem_test_purge
[15:16:16] ================== [PASSED] drm_gem_shmem ==================
[15:16:16] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[15:16:16] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[15:16:16] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[15:16:16] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[15:16:16] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[15:16:16] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[15:16:16] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[15:16:16] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[15:16:16] [PASSED] Automatic
[15:16:16] [PASSED] Full
[15:16:16] [PASSED] Limited 16:235
[15:16:16] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[15:16:16] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[15:16:16] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[15:16:16] [PASSED] drm_test_check_disable_connector
[15:16:16] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[15:16:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[15:16:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[15:16:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[15:16:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[15:16:16] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[15:16:16] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[15:16:16] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[15:16:16] [PASSED] drm_test_check_output_bpc_dvi
[15:16:16] [PASSED] drm_test_check_output_bpc_format_vic_1
[15:16:16] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[15:16:16] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[15:16:16] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[15:16:16] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[15:16:16] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[15:16:16] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[15:16:16] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[15:16:16] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[15:16:16] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[15:16:16] [PASSED] drm_test_check_broadcast_rgb_value
[15:16:16] [PASSED] drm_test_check_bpc_8_value
[15:16:16] [PASSED] drm_test_check_bpc_10_value
[15:16:16] [PASSED] drm_test_check_bpc_12_value
[15:16:16] [PASSED] drm_test_check_format_value
[15:16:16] [PASSED] drm_test_check_tmds_char_value
[15:16:16] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[15:16:16] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[15:16:16] [PASSED] drm_test_check_mode_valid
[15:16:16] [PASSED] drm_test_check_mode_valid_reject
[15:16:16] [PASSED] drm_test_check_mode_valid_reject_rate
[15:16:16] [PASSED] drm_test_check_mode_valid_reject_max_clock
[15:16:16] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[15:16:16] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[15:16:16] [PASSED] drm_test_check_infoframes
[15:16:16] [PASSED] drm_test_check_reject_avi_infoframe
[15:16:16] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[15:16:16] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[15:16:16] [PASSED] drm_test_check_reject_audio_infoframe
[15:16:16] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[15:16:16] ================= drm_managed (2 subtests) =================
[15:16:16] [PASSED] drm_test_managed_release_action
[15:16:16] [PASSED] drm_test_managed_run_action
[15:16:16] =================== [PASSED] drm_managed ===================
[15:16:16] =================== drm_mm (6 subtests) ====================
[15:16:16] [PASSED] drm_test_mm_init
[15:16:16] [PASSED] drm_test_mm_debug
[15:16:16] [PASSED] drm_test_mm_align32
[15:16:16] [PASSED] drm_test_mm_align64
[15:16:16] [PASSED] drm_test_mm_lowest
[15:16:16] [PASSED] drm_test_mm_highest
[15:16:16] ===================== [PASSED] drm_mm ======================
[15:16:16] ============= drm_modes_analog_tv (5 subtests) =============
[15:16:16] [PASSED] drm_test_modes_analog_tv_mono_576i
[15:16:16] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[15:16:16] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[15:16:16] [PASSED] drm_test_modes_analog_tv_pal_576i
[15:16:16] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[15:16:16] =============== [PASSED] drm_modes_analog_tv ===============
[15:16:16] ============== drm_plane_helper (2 subtests) ===============
[15:16:16] =============== drm_test_check_plane_state  ================
[15:16:16] [PASSED] clipping_simple
[15:16:16] [PASSED] clipping_rotate_reflect
[15:16:16] [PASSED] positioning_simple
[15:16:16] [PASSED] upscaling
[15:16:16] [PASSED] downscaling
[15:16:16] [PASSED] rounding1
[15:16:16] [PASSED] rounding2
[15:16:16] [PASSED] rounding3
[15:16:16] [PASSED] rounding4
[15:16:16] =========== [PASSED] drm_test_check_plane_state ============
[15:16:16] =========== drm_test_check_invalid_plane_state  ============
[15:16:16] [PASSED] positioning_invalid
[15:16:16] [PASSED] upscaling_invalid
[15:16:16] [PASSED] downscaling_invalid
[15:16:16] ======= [PASSED] drm_test_check_invalid_plane_state ========
[15:16:16] ================ [PASSED] drm_plane_helper =================
[15:16:16] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[15:16:16] ====== drm_test_connector_helper_tv_get_modes_check  =======
[15:16:16] [PASSED] None
[15:16:16] [PASSED] PAL
[15:16:16] [PASSED] NTSC
[15:16:16] [PASSED] Both, NTSC Default
[15:16:16] [PASSED] Both, PAL Default
[15:16:16] [PASSED] Both, NTSC Default, with PAL on command-line
[15:16:16] [PASSED] Both, PAL Default, with NTSC on command-line
[15:16:16] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[15:16:16] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[15:16:16] ================== drm_rect (9 subtests) ===================
[15:16:16] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[15:16:16] [PASSED] drm_test_rect_clip_scaled_not_clipped
[15:16:16] [PASSED] drm_test_rect_clip_scaled_clipped
[15:16:16] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[15:16:16] ================= drm_test_rect_intersect  =================
[15:16:16] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[15:16:16] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[15:16:16] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[15:16:16] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[15:16:16] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[15:16:16] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[15:16:16] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[15:16:16] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[15:16:16] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[15:16:16] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[15:16:16] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[15:16:16] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[15:16:16] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[15:16:16] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[15:16:16] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[15:16:16] ============= [PASSED] drm_test_rect_intersect =============
[15:16:16] ================ drm_test_rect_calc_hscale  ================
[15:16:16] [PASSED] normal use
[15:16:16] [PASSED] out of max range
[15:16:16] [PASSED] out of min range
[15:16:16] [PASSED] zero dst
[15:16:16] [PASSED] negative src
[15:16:16] [PASSED] negative dst
[15:16:16] ============ [PASSED] drm_test_rect_calc_hscale ============
[15:16:16] ================ drm_test_rect_calc_vscale  ================
[15:16:16] [PASSED] normal use
[15:16:16] [PASSED] out of max range
[15:16:16] [PASSED] out of min range
[15:16:16] [PASSED] zero dst
[15:16:16] [PASSED] negative src
[15:16:16] [PASSED] negative dst
[15:16:16] ============ [PASSED] drm_test_rect_calc_vscale ============
[15:16:16] ================== drm_test_rect_rotate  ===================
[15:16:16] [PASSED] reflect-x
[15:16:16] [PASSED] reflect-y
[15:16:16] [PASSED] rotate-0
[15:16:16] [PASSED] rotate-90
[15:16:16] [PASSED] rotate-180
[15:16:16] [PASSED] rotate-270
[15:16:16] ============== [PASSED] drm_test_rect_rotate ===============
[15:16:16] ================ drm_test_rect_rotate_inv  =================
[15:16:16] [PASSED] reflect-x
[15:16:16] [PASSED] reflect-y
[15:16:16] [PASSED] rotate-0
[15:16:16] [PASSED] rotate-90
[15:16:16] [PASSED] rotate-180
[15:16:16] [PASSED] rotate-270
[15:16:16] ============ [PASSED] drm_test_rect_rotate_inv =============
[15:16:16] ==================== [PASSED] drm_rect =====================
[15:16:16] ============ drm_sysfb_modeset_test (1 subtest) ============
[15:16:16] ============ drm_test_sysfb_build_fourcc_list  =============
[15:16:16] [PASSED] no native formats
[15:16:16] [PASSED] XRGB8888 as native format
[15:16:16] [PASSED] remove duplicates
[15:16:16] [PASSED] convert alpha formats
[15:16:16] [PASSED] random formats
[15:16:16] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[15:16:16] ============= [PASSED] drm_sysfb_modeset_test ==============
[15:16:16] ================== drm_fixp (2 subtests) ===================
[15:16:16] [PASSED] drm_test_int2fixp
[15:16:16] [PASSED] drm_test_sm2fixp
[15:16:16] ==================== [PASSED] drm_fixp =====================
[15:16:16] ============================================================
[15:16:16] Testing complete. Ran 621 tests: passed: 621
[15:16:17] Elapsed time: 26.153s total, 1.795s configuring, 24.191s building, 0.119s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[15:16:17] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:16:18] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[15:16:28] Starting KUnit Kernel (1/1)...
[15:16:28] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:16:28] ================= ttm_device (5 subtests) ==================
[15:16:28] [PASSED] ttm_device_init_basic
[15:16:28] [PASSED] ttm_device_init_multiple
[15:16:28] [PASSED] ttm_device_fini_basic
[15:16:28] [PASSED] ttm_device_init_no_vma_man
[15:16:28] ================== ttm_device_init_pools  ==================
[15:16:28] [PASSED] No DMA allocations, no DMA32 required
[15:16:28] [PASSED] DMA allocations, DMA32 required
[15:16:28] [PASSED] No DMA allocations, DMA32 required
[15:16:28] [PASSED] DMA allocations, no DMA32 required
[15:16:28] ============== [PASSED] ttm_device_init_pools ==============
[15:16:28] =================== [PASSED] ttm_device ====================
[15:16:28] ================== ttm_pool (8 subtests) ===================
[15:16:28] ================== ttm_pool_alloc_basic  ===================
[15:16:28] [PASSED] One page
[15:16:28] [PASSED] More than one page
[15:16:28] [PASSED] Above the allocation limit
[15:16:28] [PASSED] One page, with coherent DMA mappings enabled
[15:16:28] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:16:28] ============== [PASSED] ttm_pool_alloc_basic ===============
[15:16:28] ============== ttm_pool_alloc_basic_dma_addr  ==============
[15:16:28] [PASSED] One page
[15:16:28] [PASSED] More than one page
[15:16:28] [PASSED] Above the allocation limit
[15:16:28] [PASSED] One page, with coherent DMA mappings enabled
[15:16:28] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:16:28] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[15:16:28] [PASSED] ttm_pool_alloc_order_caching_match
[15:16:28] [PASSED] ttm_pool_alloc_caching_mismatch
[15:16:28] [PASSED] ttm_pool_alloc_order_mismatch
[15:16:28] [PASSED] ttm_pool_free_dma_alloc
[15:16:28] [PASSED] ttm_pool_free_no_dma_alloc
[15:16:28] [PASSED] ttm_pool_fini_basic
[15:16:28] ==================== [PASSED] ttm_pool =====================
[15:16:28] ================ ttm_resource (8 subtests) =================
[15:16:28] ================= ttm_resource_init_basic  =================
[15:16:28] [PASSED] Init resource in TTM_PL_SYSTEM
[15:16:28] [PASSED] Init resource in TTM_PL_VRAM
[15:16:28] [PASSED] Init resource in a private placement
[15:16:28] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[15:16:28] ============= [PASSED] ttm_resource_init_basic =============
[15:16:28] [PASSED] ttm_resource_init_pinned
[15:16:28] [PASSED] ttm_resource_fini_basic
[15:16:28] [PASSED] ttm_resource_manager_init_basic
[15:16:28] [PASSED] ttm_resource_manager_usage_basic
[15:16:28] [PASSED] ttm_resource_manager_set_used_basic
[15:16:28] [PASSED] ttm_sys_man_alloc_basic
[15:16:28] [PASSED] ttm_sys_man_free_basic
[15:16:28] ================== [PASSED] ttm_resource ===================
[15:16:28] =================== ttm_tt (15 subtests) ===================
[15:16:28] ==================== ttm_tt_init_basic  ====================
[15:16:28] [PASSED] Page-aligned size
[15:16:28] [PASSED] Extra pages requested
[15:16:28] ================ [PASSED] ttm_tt_init_basic ================
[15:16:28] [PASSED] ttm_tt_init_misaligned
[15:16:28] [PASSED] ttm_tt_fini_basic
[15:16:28] [PASSED] ttm_tt_fini_sg
[15:16:28] [PASSED] ttm_tt_fini_shmem
[15:16:28] [PASSED] ttm_tt_create_basic
[15:16:28] [PASSED] ttm_tt_create_invalid_bo_type
[15:16:28] [PASSED] ttm_tt_create_ttm_exists
[15:16:28] [PASSED] ttm_tt_create_failed
[15:16:28] [PASSED] ttm_tt_destroy_basic
[15:16:28] [PASSED] ttm_tt_populate_null_ttm
[15:16:28] [PASSED] ttm_tt_populate_populated_ttm
[15:16:28] [PASSED] ttm_tt_unpopulate_basic
[15:16:28] [PASSED] ttm_tt_unpopulate_empty_ttm
[15:16:28] [PASSED] ttm_tt_swapin_basic
[15:16:28] ===================== [PASSED] ttm_tt ======================
[15:16:28] =================== ttm_bo (14 subtests) ===================
[15:16:28] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[15:16:28] [PASSED] Cannot be interrupted and sleeps
[15:16:28] [PASSED] Cannot be interrupted, locks straight away
[15:16:28] [PASSED] Can be interrupted, sleeps
[15:16:28] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[15:16:28] [PASSED] ttm_bo_reserve_locked_no_sleep
[15:16:28] [PASSED] ttm_bo_reserve_no_wait_ticket
[15:16:28] [PASSED] ttm_bo_reserve_double_resv
[15:16:28] [PASSED] ttm_bo_reserve_interrupted
[15:16:28] [PASSED] ttm_bo_reserve_deadlock
[15:16:28] [PASSED] ttm_bo_unreserve_basic
[15:16:28] [PASSED] ttm_bo_unreserve_pinned
[15:16:28] [PASSED] ttm_bo_unreserve_bulk
[15:16:28] [PASSED] ttm_bo_fini_basic
[15:16:28] [PASSED] ttm_bo_fini_shared_resv
[15:16:28] [PASSED] ttm_bo_pin_basic
[15:16:28] [PASSED] ttm_bo_pin_unpin_resource
[15:16:28] [PASSED] ttm_bo_multiple_pin_one_unpin
[15:16:28] ===================== [PASSED] ttm_bo ======================
[15:16:28] ============== ttm_bo_validate (22 subtests) ===============
[15:16:28] ============== ttm_bo_init_reserved_sys_man  ===============
[15:16:28] [PASSED] Buffer object for userspace
[15:16:28] [PASSED] Kernel buffer object
[15:16:28] [PASSED] Shared buffer object
[15:16:28] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[15:16:28] ============== ttm_bo_init_reserved_mock_man  ==============
[15:16:28] [PASSED] Buffer object for userspace
[15:16:28] [PASSED] Kernel buffer object
[15:16:28] [PASSED] Shared buffer object
[15:16:28] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[15:16:28] [PASSED] ttm_bo_init_reserved_resv
[15:16:28] ================== ttm_bo_validate_basic  ==================
[15:16:28] [PASSED] Buffer object for userspace
[15:16:28] [PASSED] Kernel buffer object
[15:16:28] [PASSED] Shared buffer object
[15:16:28] ============== [PASSED] ttm_bo_validate_basic ==============
[15:16:28] [PASSED] ttm_bo_validate_invalid_placement
[15:16:28] ============= ttm_bo_validate_same_placement  ==============
[15:16:28] [PASSED] System manager
[15:16:28] [PASSED] VRAM manager
[15:16:28] ========= [PASSED] ttm_bo_validate_same_placement ==========
[15:16:28] [PASSED] ttm_bo_validate_failed_alloc
[15:16:28] [PASSED] ttm_bo_validate_pinned
[15:16:28] [PASSED] ttm_bo_validate_busy_placement
[15:16:28] ================ ttm_bo_validate_multihop  =================
[15:16:28] [PASSED] Buffer object for userspace
[15:16:28] [PASSED] Kernel buffer object
[15:16:28] [PASSED] Shared buffer object
[15:16:28] ============ [PASSED] ttm_bo_validate_multihop =============
[15:16:28] ========== ttm_bo_validate_no_placement_signaled  ==========
[15:16:28] [PASSED] Buffer object in system domain, no page vector
[15:16:28] [PASSED] Buffer object in system domain with an existing page vector
[15:16:28] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[15:16:28] ======== ttm_bo_validate_no_placement_not_signaled  ========
[15:16:28] [PASSED] Buffer object for userspace
[15:16:28] [PASSED] Kernel buffer object
[15:16:28] [PASSED] Shared buffer object
[15:16:28] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[15:16:28] [PASSED] ttm_bo_validate_move_fence_signaled
[15:16:28] ========= ttm_bo_validate_move_fence_not_signaled  =========
[15:16:28] [PASSED] Waits for GPU
[15:16:28] [PASSED] Tries to lock straight away
[15:16:28] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[15:16:28] [PASSED] ttm_bo_validate_swapout
[15:16:28] [PASSED] ttm_bo_validate_happy_evict
[15:16:28] [PASSED] ttm_bo_validate_all_pinned_evict
[15:16:28] [PASSED] ttm_bo_validate_allowed_only_evict
[15:16:28] [PASSED] ttm_bo_validate_deleted_evict
[15:16:28] [PASSED] ttm_bo_validate_busy_domain_evict
[15:16:28] [PASSED] ttm_bo_validate_evict_gutting
[15:16:28] [PASSED] ttm_bo_validate_recrusive_evict
[15:16:28] ================= [PASSED] ttm_bo_validate =================
[15:16:28] ============================================================
[15:16:28] Testing complete. Ran 102 tests: passed: 102
[15:16:28] Elapsed time: 11.600s total, 1.764s configuring, 9.621s building, 0.186s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] drm/i915/display: Refcount for fec enable/disable
  2026-06-01 14:29 [PATCH] drm/i915/display: Refcount for fec enable/disable Arun R Murthy
  2026-06-01 15:16 ` ✓ CI.KUnit: success for " Patchwork
@ 2026-06-02 10:46 ` Imre Deak
  2026-06-02 13:35   ` Murthy, Arun R
  1 sibling, 1 reply; 10+ messages in thread
From: Imre Deak @ 2026-06-02 10:46 UTC (permalink / raw)
  To: Arun R Murthy; +Cc: intel-gfx, intel-xe, Stephen Fuhry

On Mon, Jun 01, 2026 at 07:59:43PM +0530, Arun R Murthy wrote:
> The FEC_ENABLE bit is per port basis and is enabled/disabled on ddi
> pre_enable and post_disable. This fec is shared across the mst streams
> and can be enabled per stream basis as well.
> So have a refcount to track the usage of FEC and then enable/disable
> accordingly.
> 
> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16073
> Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
> Tested-by: Stephen Fuhry <fuhrysteve@gmail.com>
> ---
>  drivers/gpu/drm/i915/display/intel_ddi.c      | 66 +++++++++++++++++++
>  drivers/gpu/drm/i915/display/intel_ddi.h      |  1 +
>  .../drm/i915/display/intel_display_types.h    | 12 ++++
>  .../drm/i915/display/intel_modeset_setup.c    |  6 ++
>  4 files changed, 85 insertions(+)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c b/drivers/gpu/drm/i915/display/intel_ddi.c
> index 86520848892e..e12a3d6d6a67 100644
> --- a/drivers/gpu/drm/i915/display/intel_ddi.c
> +++ b/drivers/gpu/drm/i915/display/intel_ddi.c
> @@ -2096,6 +2096,47 @@ void intel_ddi_disable_clock(struct intel_encoder *encoder)
>  		encoder->disable_clock(encoder);
>  }
>  
> +/**
> + * intel_ddi_seed_fec_refcounts - Seed per-port FEC refcounts from active CRTCs
> + * @display: display device
> + *
> + * intel_digital_port::fec_active_streams is the per-port refcount that gates
> + * programming of the shared DP_TP_CTL_FEC_ENABLE bit. After initial HW state
> + * readout (driver load, resume, GPU reset takeover), the persistent
> + * crtc_state->fec_enable values reflect what HW currently has; we need to
> + * align the refcount with that so the first paired disable doesn't underflow
> + * and the next enable doesn't incorrectly skip programming the HW bit.
> + *
> + * Must be called once after intel_modeset_readout_hw_state(), before any new
> + * modeset commit can run.
> + */
> +void intel_ddi_seed_fec_refcounts(struct intel_display *display)
> +{
> +	struct intel_crtc *crtc;
> +
> +	for_each_intel_crtc(display->drm, crtc) {
> +		const struct intel_crtc_state *crtc_state =
> +			to_intel_crtc_state(crtc->base.state);
> +		struct intel_encoder *encoder;
> +
> +		if (!crtc_state->hw.active || !crtc_state->fec_enable)
> +			continue;
> +
> +		for_each_intel_encoder(display->drm, encoder) {
> +			struct intel_digital_port *dig_port;
> +
> +			if (encoder->base.crtc != &crtc->base)
> +				continue;
> +			if (!intel_encoder_is_dig_port(encoder))
> +				continue;
> +
> +			dig_port = enc_to_dig_port(encoder);
> +			dig_port->fec_active_streams++;
> +			break;
> +		}
> +	}
> +}
> +
>  void intel_ddi_sanitize_encoder_pll_mapping(struct intel_encoder *encoder)
>  {
>  	struct intel_display *display = to_intel_display(encoder);
> @@ -2413,12 +2454,22 @@ static void intel_ddi_enable_fec(struct intel_encoder *encoder,
>  				 const struct intel_crtc_state *crtc_state)
>  {
>  	struct intel_display *display = to_intel_display(encoder);
> +	struct intel_digital_port *dig_port = enc_to_dig_port(encoder);
>  	int i;
>  	int ret;
>  
>  	if (!crtc_state->fec_enable)
>  		return;
>  
> +	/*
> +	 * FEC is link-wide: DP_TP_CTL_FEC_ENABLE is per-port while
> +	 * crtc_state->fec_enable is per-stream. For DP MST, several streams
> +	 * on this port share the bit. Only program HW on the first stream
> +	 * needing FEC; subsequent streams just bump the refcount.
> +	 */
> +	if (dig_port->fec_active_streams++ > 0)
> +		return;

This doesn't make sense to me. FEC is enabled for the MST link and if
it's enabled then fec_enabled is set in the crtc_state for all the
streams in the MST topology. intel_ddi_enable_fec() will be called only
for the first MST stream being enabled and intel_ddi_disable_fec() will
be called only for the last MST stream being disabled. So I don't see
why the above refcounting would be needed.

> +
>  	intel_de_rmw(display, dp_tp_ctl_reg(encoder, crtc_state),
>  		     0, DP_TP_CTL_FEC_ENABLE);
>  
> @@ -2454,10 +2505,25 @@ static void intel_ddi_disable_fec(struct intel_encoder *encoder,
>  				  const struct intel_crtc_state *crtc_state)
>  {
>  	struct intel_display *display = to_intel_display(encoder);
> +	struct intel_digital_port *dig_port = enc_to_dig_port(encoder);
>  
>  	if (!crtc_state->fec_enable)
>  		return;
>  
> +	/*
> +	 * FEC is a link-wide property and DP_TP_CTL_FEC_ENABLE is a per-port
> +	 * register, but crtc_state->fec_enable is per-stream. For DP MST,
> +	 * multiple streams on the same port share this bit. Refcount the
> +	 * active FEC users on the port and only clear the HW bit when the
> +	 * last user goes away, otherwise tearing down one MST stream would
> +	 * disable FEC for sibling streams still using it.
> +	 */
> +	if (drm_WARN_ON(display->drm, dig_port->fec_active_streams <= 0))
> +		return;
> +
> +	if (--dig_port->fec_active_streams > 0)
> +		return;
> +
>  	intel_de_rmw(display, dp_tp_ctl_reg(encoder, crtc_state),
>  		     DP_TP_CTL_FEC_ENABLE, 0);
>  	intel_de_posting_read(display, dp_tp_ctl_reg(encoder, crtc_state));
> diff --git a/drivers/gpu/drm/i915/display/intel_ddi.h b/drivers/gpu/drm/i915/display/intel_ddi.h
> index 580ecb09b8b6..3678c28a0dc9 100644
> --- a/drivers/gpu/drm/i915/display/intel_ddi.h
> +++ b/drivers/gpu/drm/i915/display/intel_ddi.h
> @@ -78,6 +78,7 @@ int intel_ddi_toggle_hdcp_bits(struct intel_encoder *intel_encoder,
>  			       enum transcoder cpu_transcoder,
>  			       bool enable, u32 hdcp_mask);
>  void intel_ddi_sanitize_encoder_pll_mapping(struct intel_encoder *encoder);
> +void intel_ddi_seed_fec_refcounts(struct intel_display *display);
>  int intel_ddi_level(struct intel_encoder *encoder,
>  		    const struct intel_crtc_state *crtc_state,
>  		    int lane);
> diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
> index f44be5c689ae..84bd0d993197 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_types.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_types.h
> @@ -1987,6 +1987,18 @@ struct intel_digital_port {
>  	struct ref_tracker *ddi_io_wakeref;
>  	struct ref_tracker *aux_wakeref;
>  
> +	/*
> +	 * Number of active streams on this port currently using FEC.
> +	 *
> +	 * DP_TP_CTL_FEC_ENABLE is a per-port (link-wide) HW bit, but
> +	 * crtc_state->fec_enable is per-stream. For DP MST several streams
> +	 * share the same port and therefore the same FEC enable bit. Track
> +	 * how many active streams want FEC so that the HW bit is only
> +	 * programmed on the first enable and only cleared on the last
> +	 * disable. Modified under the modeset locks.
> +	 */
> +	int fec_active_streams;
> +
>  	struct intel_tc_port *tc;
>  
>  	struct {
> diff --git a/drivers/gpu/drm/i915/display/intel_modeset_setup.c b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> index e88082c8caac..14f038b8ef81 100644
> --- a/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> +++ b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> @@ -950,6 +950,12 @@ void intel_modeset_setup_hw_state(struct intel_display *display,
>  
>  	intel_modeset_readout_hw_state(display);
>  
> +	/*
> +	 * Seed per-port FEC refcounts from the just-populated active
> +	 * crtc_states before anything can issue an enable/disable.
> +	 */
> +	intel_ddi_seed_fec_refcounts(display);
> +
>  	/* HW state is read out, now we need to sanitize this mess. */
>  	get_encoder_power_domains(display);
>  
> -- 
> 2.25.1
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: [PATCH] drm/i915/display: Refcount for fec enable/disable
  2026-06-02 10:46 ` [PATCH] " Imre Deak
@ 2026-06-02 13:35   ` Murthy, Arun R
  2026-06-02 13:38     ` Imre Deak
  0 siblings, 1 reply; 10+ messages in thread
From: Murthy, Arun R @ 2026-06-02 13:35 UTC (permalink / raw)
  To: Deak, Imre
  Cc: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org,
	Stephen Fuhry


> -----Original Message-----
> From: Deak, Imre <imre.deak@intel.com>
> Sent: Tuesday, June 2, 2026 4:17 PM
> To: Murthy, Arun R <arun.r.murthy@intel.com>
> Cc: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org; Stephen
> Fuhry <fuhrysteve@gmail.com>
> Subject: Re: [PATCH] drm/i915/display: Refcount for fec enable/disable
> 
> On Mon, Jun 01, 2026 at 07:59:43PM +0530, Arun R Murthy wrote:
> > The FEC_ENABLE bit is per port basis and is enabled/disabled on ddi
> > pre_enable and post_disable. This fec is shared across the mst streams
> > and can be enabled per stream basis as well.
> > So have a refcount to track the usage of FEC and then enable/disable
> > accordingly.
> >
> > Closes:
> > https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16073
> > Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
> > Tested-by: Stephen Fuhry <fuhrysteve@gmail.com>
> > ---
> >  drivers/gpu/drm/i915/display/intel_ddi.c      | 66 +++++++++++++++++++
> >  drivers/gpu/drm/i915/display/intel_ddi.h      |  1 +
> >  .../drm/i915/display/intel_display_types.h    | 12 ++++
> >  .../drm/i915/display/intel_modeset_setup.c    |  6 ++
> >  4 files changed, 85 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c
> > b/drivers/gpu/drm/i915/display/intel_ddi.c
> > index 86520848892e..e12a3d6d6a67 100644
> > --- a/drivers/gpu/drm/i915/display/intel_ddi.c
> > +++ b/drivers/gpu/drm/i915/display/intel_ddi.c
> > @@ -2096,6 +2096,47 @@ void intel_ddi_disable_clock(struct intel_encoder
> *encoder)
> >  		encoder->disable_clock(encoder);
> >  }
> >
> > +/**
> > + * intel_ddi_seed_fec_refcounts - Seed per-port FEC refcounts from
> > +active CRTCs
> > + * @display: display device
> > + *
> > + * intel_digital_port::fec_active_streams is the per-port refcount
> > +that gates
> > + * programming of the shared DP_TP_CTL_FEC_ENABLE bit. After initial
> > +HW state
> > + * readout (driver load, resume, GPU reset takeover), the persistent
> > + * crtc_state->fec_enable values reflect what HW currently has; we
> > +need to
> > + * align the refcount with that so the first paired disable doesn't
> > +underflow
> > + * and the next enable doesn't incorrectly skip programming the HW bit.
> > + *
> > + * Must be called once after intel_modeset_readout_hw_state(), before
> > +any new
> > + * modeset commit can run.
> > + */
> > +void intel_ddi_seed_fec_refcounts(struct intel_display *display) {
> > +	struct intel_crtc *crtc;
> > +
> > +	for_each_intel_crtc(display->drm, crtc) {
> > +		const struct intel_crtc_state *crtc_state =
> > +			to_intel_crtc_state(crtc->base.state);
> > +		struct intel_encoder *encoder;
> > +
> > +		if (!crtc_state->hw.active || !crtc_state->fec_enable)
> > +			continue;
> > +
> > +		for_each_intel_encoder(display->drm, encoder) {
> > +			struct intel_digital_port *dig_port;
> > +
> > +			if (encoder->base.crtc != &crtc->base)
> > +				continue;
> > +			if (!intel_encoder_is_dig_port(encoder))
> > +				continue;
> > +
> > +			dig_port = enc_to_dig_port(encoder);
> > +			dig_port->fec_active_streams++;
> > +			break;
> > +		}
> > +	}
> > +}
> > +
> >  void intel_ddi_sanitize_encoder_pll_mapping(struct intel_encoder
> > *encoder)  {
> >  	struct intel_display *display = to_intel_display(encoder); @@
> > -2413,12 +2454,22 @@ static void intel_ddi_enable_fec(struct intel_encoder
> *encoder,
> >  				 const struct intel_crtc_state *crtc_state)  {
> >  	struct intel_display *display = to_intel_display(encoder);
> > +	struct intel_digital_port *dig_port = enc_to_dig_port(encoder);
> >  	int i;
> >  	int ret;
> >
> >  	if (!crtc_state->fec_enable)
> >  		return;
> >
> > +	/*
> > +	 * FEC is link-wide: DP_TP_CTL_FEC_ENABLE is per-port while
> > +	 * crtc_state->fec_enable is per-stream. For DP MST, several streams
> > +	 * on this port share the bit. Only program HW on the first stream
> > +	 * needing FEC; subsequent streams just bump the refcount.
> > +	 */
> > +	if (dig_port->fec_active_streams++ > 0)
> > +		return;
> 
> This doesn't make sense to me. FEC is enabled for the MST link and if it's
> enabled then fec_enabled is set in the crtc_state for all the streams in the MST
> topology. intel_ddi_enable_fec() will be called only for the first MST stream
> being enabled and intel_ddi_disable_fec() will be called only for the last MST
> stream being disabled. So I don't see why the above refcounting would be
> needed.
> 
The  logs mentioned in the above listed gitlab issue shows mismatch in fec enable/disable in the MST scenario. Hence added this refcount logic to overcome the mismatch.

Thanks and Regards,
Arun R Murthy
--------------------
> > +
> >  	intel_de_rmw(display, dp_tp_ctl_reg(encoder, crtc_state),
> >  		     0, DP_TP_CTL_FEC_ENABLE);
> >
> > @@ -2454,10 +2505,25 @@ static void intel_ddi_disable_fec(struct
> intel_encoder *encoder,
> >  				  const struct intel_crtc_state *crtc_state)  {
> >  	struct intel_display *display = to_intel_display(encoder);
> > +	struct intel_digital_port *dig_port = enc_to_dig_port(encoder);
> >
> >  	if (!crtc_state->fec_enable)
> >  		return;
> >
> > +	/*
> > +	 * FEC is a link-wide property and DP_TP_CTL_FEC_ENABLE is a per-port
> > +	 * register, but crtc_state->fec_enable is per-stream. For DP MST,
> > +	 * multiple streams on the same port share this bit. Refcount the
> > +	 * active FEC users on the port and only clear the HW bit when the
> > +	 * last user goes away, otherwise tearing down one MST stream would
> > +	 * disable FEC for sibling streams still using it.
> > +	 */
> > +	if (drm_WARN_ON(display->drm, dig_port->fec_active_streams <= 0))
> > +		return;
> > +
> > +	if (--dig_port->fec_active_streams > 0)
> > +		return;
> > +
> >  	intel_de_rmw(display, dp_tp_ctl_reg(encoder, crtc_state),
> >  		     DP_TP_CTL_FEC_ENABLE, 0);
> >  	intel_de_posting_read(display, dp_tp_ctl_reg(encoder, crtc_state));
> > diff --git a/drivers/gpu/drm/i915/display/intel_ddi.h
> > b/drivers/gpu/drm/i915/display/intel_ddi.h
> > index 580ecb09b8b6..3678c28a0dc9 100644
> > --- a/drivers/gpu/drm/i915/display/intel_ddi.h
> > +++ b/drivers/gpu/drm/i915/display/intel_ddi.h
> > @@ -78,6 +78,7 @@ int intel_ddi_toggle_hdcp_bits(struct intel_encoder
> *intel_encoder,
> >  			       enum transcoder cpu_transcoder,
> >  			       bool enable, u32 hdcp_mask);  void
> > intel_ddi_sanitize_encoder_pll_mapping(struct intel_encoder *encoder);
> > +void intel_ddi_seed_fec_refcounts(struct intel_display *display);
> >  int intel_ddi_level(struct intel_encoder *encoder,
> >  		    const struct intel_crtc_state *crtc_state,
> >  		    int lane);
> > diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h
> > b/drivers/gpu/drm/i915/display/intel_display_types.h
> > index f44be5c689ae..84bd0d993197 100644
> > --- a/drivers/gpu/drm/i915/display/intel_display_types.h
> > +++ b/drivers/gpu/drm/i915/display/intel_display_types.h
> > @@ -1987,6 +1987,18 @@ struct intel_digital_port {
> >  	struct ref_tracker *ddi_io_wakeref;
> >  	struct ref_tracker *aux_wakeref;
> >
> > +	/*
> > +	 * Number of active streams on this port currently using FEC.
> > +	 *
> > +	 * DP_TP_CTL_FEC_ENABLE is a per-port (link-wide) HW bit, but
> > +	 * crtc_state->fec_enable is per-stream. For DP MST several streams
> > +	 * share the same port and therefore the same FEC enable bit. Track
> > +	 * how many active streams want FEC so that the HW bit is only
> > +	 * programmed on the first enable and only cleared on the last
> > +	 * disable. Modified under the modeset locks.
> > +	 */
> > +	int fec_active_streams;
> > +
> >  	struct intel_tc_port *tc;
> >
> >  	struct {
> > diff --git a/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > index e88082c8caac..14f038b8ef81 100644
> > --- a/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > +++ b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > @@ -950,6 +950,12 @@ void intel_modeset_setup_hw_state(struct
> > intel_display *display,
> >
> >  	intel_modeset_readout_hw_state(display);
> >
> > +	/*
> > +	 * Seed per-port FEC refcounts from the just-populated active
> > +	 * crtc_states before anything can issue an enable/disable.
> > +	 */
> > +	intel_ddi_seed_fec_refcounts(display);
> > +
> >  	/* HW state is read out, now we need to sanitize this mess. */
> >  	get_encoder_power_domains(display);
> >
> > --
> > 2.25.1
> >

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] drm/i915/display: Refcount for fec enable/disable
  2026-06-02 13:35   ` Murthy, Arun R
@ 2026-06-02 13:38     ` Imre Deak
  2026-06-02 15:33       ` Stephen Fuhry
  2026-06-16  5:46       ` Murthy, Arun R
  0 siblings, 2 replies; 10+ messages in thread
From: Imre Deak @ 2026-06-02 13:38 UTC (permalink / raw)
  To: Murthy, Arun R
  Cc: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org,
	Stephen Fuhry

On Tue, Jun 02, 2026 at 04:35:42PM +0300, Murthy, Arun R wrote:
> 
> > -----Original Message-----
> > From: Deak, Imre <imre.deak@intel.com>
> > Sent: Tuesday, June 2, 2026 4:17 PM
> > To: Murthy, Arun R <arun.r.murthy@intel.com>
> > Cc: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org; Stephen
> > Fuhry <fuhrysteve@gmail.com>
> > Subject: Re: [PATCH] drm/i915/display: Refcount for fec enable/disable
> > 
> > On Mon, Jun 01, 2026 at 07:59:43PM +0530, Arun R Murthy wrote:
> > > The FEC_ENABLE bit is per port basis and is enabled/disabled on ddi
> > > pre_enable and post_disable. This fec is shared across the mst streams
> > > and can be enabled per stream basis as well.
> > > So have a refcount to track the usage of FEC and then enable/disable
> > > accordingly.
> > >
> > > Closes:
> > > https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16073
> > > Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
> > > Tested-by: Stephen Fuhry <fuhrysteve@gmail.com>
> > > ---
> > >  drivers/gpu/drm/i915/display/intel_ddi.c      | 66 +++++++++++++++++++
> > >  drivers/gpu/drm/i915/display/intel_ddi.h      |  1 +
> > >  .../drm/i915/display/intel_display_types.h    | 12 ++++
> > >  .../drm/i915/display/intel_modeset_setup.c    |  6 ++
> > >  4 files changed, 85 insertions(+)
> > >
> > > diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c
> > > b/drivers/gpu/drm/i915/display/intel_ddi.c
> > > index 86520848892e..e12a3d6d6a67 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_ddi.c
> > > +++ b/drivers/gpu/drm/i915/display/intel_ddi.c
> > > @@ -2096,6 +2096,47 @@ void intel_ddi_disable_clock(struct intel_encoder
> > *encoder)
> > >  		encoder->disable_clock(encoder);
> > >  }
> > >
> > > +/**
> > > + * intel_ddi_seed_fec_refcounts - Seed per-port FEC refcounts from
> > > +active CRTCs
> > > + * @display: display device
> > > + *
> > > + * intel_digital_port::fec_active_streams is the per-port refcount
> > > +that gates
> > > + * programming of the shared DP_TP_CTL_FEC_ENABLE bit. After initial
> > > +HW state
> > > + * readout (driver load, resume, GPU reset takeover), the persistent
> > > + * crtc_state->fec_enable values reflect what HW currently has; we
> > > +need to
> > > + * align the refcount with that so the first paired disable doesn't
> > > +underflow
> > > + * and the next enable doesn't incorrectly skip programming the HW bit.
> > > + *
> > > + * Must be called once after intel_modeset_readout_hw_state(), before
> > > +any new
> > > + * modeset commit can run.
> > > + */
> > > +void intel_ddi_seed_fec_refcounts(struct intel_display *display) {
> > > +	struct intel_crtc *crtc;
> > > +
> > > +	for_each_intel_crtc(display->drm, crtc) {
> > > +		const struct intel_crtc_state *crtc_state =
> > > +			to_intel_crtc_state(crtc->base.state);
> > > +		struct intel_encoder *encoder;
> > > +
> > > +		if (!crtc_state->hw.active || !crtc_state->fec_enable)
> > > +			continue;
> > > +
> > > +		for_each_intel_encoder(display->drm, encoder) {
> > > +			struct intel_digital_port *dig_port;
> > > +
> > > +			if (encoder->base.crtc != &crtc->base)
> > > +				continue;
> > > +			if (!intel_encoder_is_dig_port(encoder))
> > > +				continue;
> > > +
> > > +			dig_port = enc_to_dig_port(encoder);
> > > +			dig_port->fec_active_streams++;
> > > +			break;
> > > +		}
> > > +	}
> > > +}
> > > +
> > >  void intel_ddi_sanitize_encoder_pll_mapping(struct intel_encoder
> > > *encoder)  {
> > >  	struct intel_display *display = to_intel_display(encoder); @@
> > > -2413,12 +2454,22 @@ static void intel_ddi_enable_fec(struct intel_encoder
> > *encoder,
> > >  				 const struct intel_crtc_state *crtc_state)  {
> > >  	struct intel_display *display = to_intel_display(encoder);
> > > +	struct intel_digital_port *dig_port = enc_to_dig_port(encoder);
> > >  	int i;
> > >  	int ret;
> > >
> > >  	if (!crtc_state->fec_enable)
> > >  		return;
> > >
> > > +	/*
> > > +	 * FEC is link-wide: DP_TP_CTL_FEC_ENABLE is per-port while
> > > +	 * crtc_state->fec_enable is per-stream. For DP MST, several streams
> > > +	 * on this port share the bit. Only program HW on the first stream
> > > +	 * needing FEC; subsequent streams just bump the refcount.
> > > +	 */
> > > +	if (dig_port->fec_active_streams++ > 0)
> > > +		return;
> > 
> > This doesn't make sense to me. FEC is enabled for the MST link and if it's
> > enabled then fec_enabled is set in the crtc_state for all the streams in the MST
> > topology. intel_ddi_enable_fec() will be called only for the first MST stream
> > being enabled and intel_ddi_disable_fec() will be called only for the last MST
> > stream being disabled. So I don't see why the above refcounting would be
> > needed.
>
> The  logs mentioned in the above listed gitlab issue shows mismatch in
> fec enable/disable in the MST scenario. Hence added this refcount
> logic to overcome the mismatch.

The root cause for the mismatch should be better understood then. I
still think that it's something else than the lack of refcounting.

> Thanks and Regards,
> Arun R Murthy
> --------------------
> > > +
> > >  	intel_de_rmw(display, dp_tp_ctl_reg(encoder, crtc_state),
> > >  		     0, DP_TP_CTL_FEC_ENABLE);
> > >
> > > @@ -2454,10 +2505,25 @@ static void intel_ddi_disable_fec(struct
> > intel_encoder *encoder,
> > >  				  const struct intel_crtc_state *crtc_state)  {
> > >  	struct intel_display *display = to_intel_display(encoder);
> > > +	struct intel_digital_port *dig_port = enc_to_dig_port(encoder);
> > >
> > >  	if (!crtc_state->fec_enable)
> > >  		return;
> > >
> > > +	/*
> > > +	 * FEC is a link-wide property and DP_TP_CTL_FEC_ENABLE is a per-port
> > > +	 * register, but crtc_state->fec_enable is per-stream. For DP MST,
> > > +	 * multiple streams on the same port share this bit. Refcount the
> > > +	 * active FEC users on the port and only clear the HW bit when the
> > > +	 * last user goes away, otherwise tearing down one MST stream would
> > > +	 * disable FEC for sibling streams still using it.
> > > +	 */
> > > +	if (drm_WARN_ON(display->drm, dig_port->fec_active_streams <= 0))
> > > +		return;
> > > +
> > > +	if (--dig_port->fec_active_streams > 0)
> > > +		return;
> > > +
> > >  	intel_de_rmw(display, dp_tp_ctl_reg(encoder, crtc_state),
> > >  		     DP_TP_CTL_FEC_ENABLE, 0);
> > >  	intel_de_posting_read(display, dp_tp_ctl_reg(encoder, crtc_state));
> > > diff --git a/drivers/gpu/drm/i915/display/intel_ddi.h
> > > b/drivers/gpu/drm/i915/display/intel_ddi.h
> > > index 580ecb09b8b6..3678c28a0dc9 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_ddi.h
> > > +++ b/drivers/gpu/drm/i915/display/intel_ddi.h
> > > @@ -78,6 +78,7 @@ int intel_ddi_toggle_hdcp_bits(struct intel_encoder
> > *intel_encoder,
> > >  			       enum transcoder cpu_transcoder,
> > >  			       bool enable, u32 hdcp_mask);  void
> > > intel_ddi_sanitize_encoder_pll_mapping(struct intel_encoder *encoder);
> > > +void intel_ddi_seed_fec_refcounts(struct intel_display *display);
> > >  int intel_ddi_level(struct intel_encoder *encoder,
> > >  		    const struct intel_crtc_state *crtc_state,
> > >  		    int lane);
> > > diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h
> > > b/drivers/gpu/drm/i915/display/intel_display_types.h
> > > index f44be5c689ae..84bd0d993197 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_display_types.h
> > > +++ b/drivers/gpu/drm/i915/display/intel_display_types.h
> > > @@ -1987,6 +1987,18 @@ struct intel_digital_port {
> > >  	struct ref_tracker *ddi_io_wakeref;
> > >  	struct ref_tracker *aux_wakeref;
> > >
> > > +	/*
> > > +	 * Number of active streams on this port currently using FEC.
> > > +	 *
> > > +	 * DP_TP_CTL_FEC_ENABLE is a per-port (link-wide) HW bit, but
> > > +	 * crtc_state->fec_enable is per-stream. For DP MST several streams
> > > +	 * share the same port and therefore the same FEC enable bit. Track
> > > +	 * how many active streams want FEC so that the HW bit is only
> > > +	 * programmed on the first enable and only cleared on the last
> > > +	 * disable. Modified under the modeset locks.
> > > +	 */
> > > +	int fec_active_streams;
> > > +
> > >  	struct intel_tc_port *tc;
> > >
> > >  	struct {
> > > diff --git a/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > > b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > > index e88082c8caac..14f038b8ef81 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > > +++ b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > > @@ -950,6 +950,12 @@ void intel_modeset_setup_hw_state(struct
> > > intel_display *display,
> > >
> > >  	intel_modeset_readout_hw_state(display);
> > >
> > > +	/*
> > > +	 * Seed per-port FEC refcounts from the just-populated active
> > > +	 * crtc_states before anything can issue an enable/disable.
> > > +	 */
> > > +	intel_ddi_seed_fec_refcounts(display);
> > > +
> > >  	/* HW state is read out, now we need to sanitize this mess. */
> > >  	get_encoder_power_domains(display);
> > >
> > > --
> > > 2.25.1
> > >

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] drm/i915/display: Refcount for fec enable/disable
  2026-06-02 13:38     ` Imre Deak
@ 2026-06-02 15:33       ` Stephen Fuhry
  2026-06-02 16:37         ` Imre Deak
  2026-06-16  5:46       ` Murthy, Arun R
  1 sibling, 1 reply; 10+ messages in thread
From: Stephen Fuhry @ 2026-06-02 15:33 UTC (permalink / raw)
  To: imre.deak
  Cc: Murthy, Arun R, intel-gfx@lists.freedesktop.org,
	intel-xe@lists.freedesktop.org

[-- Attachment #1: Type: text/plain, Size: 12540 bytes --]

I can share some observations from the debug logs captured on the affected
system (drm.debug=0x10e, Alder Lake-P [8086:46a6], ThinkPad dock, 1080p on
pipe B + 4K DSC on pipe C) that may help clarify the root cause.

Imre's assertion about the enable/disable gating appears to be correct from
the logs. The active_links sequence across every modeset cycle in the
captured trace is always clean:

  disable: 2 -> 1 -> 0  (intel_mst_disable_dp, intel_encoders_post_disable)
  enable:  0 -> 1 -> 2  (intel_mst_pre_enable_dp, intel_mst_enable_dp)

No interleaving, no double-calls. intel_ddi_enable_fec and
intel_ddi_disable_fec are each called exactly once per link per modeset
cycle, as expected.

The mismatch and cascade are instead driven by repeated failures in the
fastset check. In the cable-unplug log, 8 "fastset requirement not met,
forcing full modeset" messages fire for both pipes between t=110.803s and
t=110.899s -- before a single active_links change occurs. After replug,
there are dozens more at ~20ms intervals (t=125.5s to t=126.3s) as the
driver re-probes the dock, each one attempting and failing to commit a
modeset.

The direction of the first mismatch after dock connect is notable. The
very first fastset failure shows:

  [CRTC:186:pipe C] fastset requirement not met in fec_enable
                    (expected no, found yes)
  [CRTC:186:pipe C] fastset requirement not met in
hw.pipe_mode.crtc_hdisplay
                    (expected 1920, found 3840)
  [CRTC:186:pipe C] fastset requirement not met in dsc.config.pic_width
                    (expected 0, found 3840)

The SW computed state has pipe C at 1920x1080 with no DSC and no FEC, while
HW has it at 3840x2160 with DSC and FEC active (from the previous
session/firmware state). The modeset that follows clears FEC. The next
compute correctly selects DSC (and therefore FEC), triggering the opposite
mismatch ("expected yes, found no"). This back-and-forth drives the cascade.

The question of why the first SW compute produces fec_enable=no for pipe C
when DSC is needed seems to be where the actual root cause lies -- whether
that's a mode-negotiation timing issue (compositor requesting 1080p before
4K+DSC is negotiated) or something in the compute ordering in
intel_dp_mst_compute_config.

Full log (drm.debug=0x10e, cable unplug/replug) is attached to issue #16303
if useful.

Stephen Fuhry

On Tue, Jun 2, 2026 at 9:39 AM Imre Deak <imre.deak@intel.com> wrote:

> On Tue, Jun 02, 2026 at 04:35:42PM +0300, Murthy, Arun R wrote:
> >
> > > -----Original Message-----
> > > From: Deak, Imre <imre.deak@intel.com>
> > > Sent: Tuesday, June 2, 2026 4:17 PM
> > > To: Murthy, Arun R <arun.r.murthy@intel.com>
> > > Cc: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org;
> Stephen
> > > Fuhry <fuhrysteve@gmail.com>
> > > Subject: Re: [PATCH] drm/i915/display: Refcount for fec enable/disable
> > >
> > > On Mon, Jun 01, 2026 at 07:59:43PM +0530, Arun R Murthy wrote:
> > > > The FEC_ENABLE bit is per port basis and is enabled/disabled on ddi
> > > > pre_enable and post_disable. This fec is shared across the mst
> streams
> > > > and can be enabled per stream basis as well.
> > > > So have a refcount to track the usage of FEC and then enable/disable
> > > > accordingly.
> > > >
> > > > Closes:
> > > > https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16073
> > > > Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
> > > > Tested-by: Stephen Fuhry <fuhrysteve@gmail.com>
> > > > ---
> > > >  drivers/gpu/drm/i915/display/intel_ddi.c      | 66
> +++++++++++++++++++
> > > >  drivers/gpu/drm/i915/display/intel_ddi.h      |  1 +
> > > >  .../drm/i915/display/intel_display_types.h    | 12 ++++
> > > >  .../drm/i915/display/intel_modeset_setup.c    |  6 ++
> > > >  4 files changed, 85 insertions(+)
> > > >
> > > > diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c
> > > > b/drivers/gpu/drm/i915/display/intel_ddi.c
> > > > index 86520848892e..e12a3d6d6a67 100644
> > > > --- a/drivers/gpu/drm/i915/display/intel_ddi.c
> > > > +++ b/drivers/gpu/drm/i915/display/intel_ddi.c
> > > > @@ -2096,6 +2096,47 @@ void intel_ddi_disable_clock(struct
> intel_encoder
> > > *encoder)
> > > >           encoder->disable_clock(encoder);
> > > >  }
> > > >
> > > > +/**
> > > > + * intel_ddi_seed_fec_refcounts - Seed per-port FEC refcounts from
> > > > +active CRTCs
> > > > + * @display: display device
> > > > + *
> > > > + * intel_digital_port::fec_active_streams is the per-port refcount
> > > > +that gates
> > > > + * programming of the shared DP_TP_CTL_FEC_ENABLE bit. After initial
> > > > +HW state
> > > > + * readout (driver load, resume, GPU reset takeover), the persistent
> > > > + * crtc_state->fec_enable values reflect what HW currently has; we
> > > > +need to
> > > > + * align the refcount with that so the first paired disable doesn't
> > > > +underflow
> > > > + * and the next enable doesn't incorrectly skip programming the HW
> bit.
> > > > + *
> > > > + * Must be called once after intel_modeset_readout_hw_state(),
> before
> > > > +any new
> > > > + * modeset commit can run.
> > > > + */
> > > > +void intel_ddi_seed_fec_refcounts(struct intel_display *display) {
> > > > + struct intel_crtc *crtc;
> > > > +
> > > > + for_each_intel_crtc(display->drm, crtc) {
> > > > +         const struct intel_crtc_state *crtc_state =
> > > > +                 to_intel_crtc_state(crtc->base.state);
> > > > +         struct intel_encoder *encoder;
> > > > +
> > > > +         if (!crtc_state->hw.active || !crtc_state->fec_enable)
> > > > +                 continue;
> > > > +
> > > > +         for_each_intel_encoder(display->drm, encoder) {
> > > > +                 struct intel_digital_port *dig_port;
> > > > +
> > > > +                 if (encoder->base.crtc != &crtc->base)
> > > > +                         continue;
> > > > +                 if (!intel_encoder_is_dig_port(encoder))
> > > > +                         continue;
> > > > +
> > > > +                 dig_port = enc_to_dig_port(encoder);
> > > > +                 dig_port->fec_active_streams++;
> > > > +                 break;
> > > > +         }
> > > > + }
> > > > +}
> > > > +
> > > >  void intel_ddi_sanitize_encoder_pll_mapping(struct intel_encoder
> > > > *encoder)  {
> > > >   struct intel_display *display = to_intel_display(encoder); @@
> > > > -2413,12 +2454,22 @@ static void intel_ddi_enable_fec(struct
> intel_encoder
> > > *encoder,
> > > >                            const struct intel_crtc_state
> *crtc_state)  {
> > > >   struct intel_display *display = to_intel_display(encoder);
> > > > + struct intel_digital_port *dig_port = enc_to_dig_port(encoder);
> > > >   int i;
> > > >   int ret;
> > > >
> > > >   if (!crtc_state->fec_enable)
> > > >           return;
> > > >
> > > > + /*
> > > > +  * FEC is link-wide: DP_TP_CTL_FEC_ENABLE is per-port while
> > > > +  * crtc_state->fec_enable is per-stream. For DP MST, several
> streams
> > > > +  * on this port share the bit. Only program HW on the first stream
> > > > +  * needing FEC; subsequent streams just bump the refcount.
> > > > +  */
> > > > + if (dig_port->fec_active_streams++ > 0)
> > > > +         return;
> > >
> > > This doesn't make sense to me. FEC is enabled for the MST link and if
> it's
> > > enabled then fec_enabled is set in the crtc_state for all the streams
> in the MST
> > > topology. intel_ddi_enable_fec() will be called only for the first MST
> stream
> > > being enabled and intel_ddi_disable_fec() will be called only for the
> last MST
> > > stream being disabled. So I don't see why the above refcounting would
> be
> > > needed.
> >
> > The  logs mentioned in the above listed gitlab issue shows mismatch in
> > fec enable/disable in the MST scenario. Hence added this refcount
> > logic to overcome the mismatch.
>
> The root cause for the mismatch should be better understood then. I
> still think that it's something else than the lack of refcounting.
>
> > Thanks and Regards,
> > Arun R Murthy
> > --------------------
> > > > +
> > > >   intel_de_rmw(display, dp_tp_ctl_reg(encoder, crtc_state),
> > > >                0, DP_TP_CTL_FEC_ENABLE);
> > > >
> > > > @@ -2454,10 +2505,25 @@ static void intel_ddi_disable_fec(struct
> > > intel_encoder *encoder,
> > > >                             const struct intel_crtc_state
> *crtc_state)  {
> > > >   struct intel_display *display = to_intel_display(encoder);
> > > > + struct intel_digital_port *dig_port = enc_to_dig_port(encoder);
> > > >
> > > >   if (!crtc_state->fec_enable)
> > > >           return;
> > > >
> > > > + /*
> > > > +  * FEC is a link-wide property and DP_TP_CTL_FEC_ENABLE is a
> per-port
> > > > +  * register, but crtc_state->fec_enable is per-stream. For DP MST,
> > > > +  * multiple streams on the same port share this bit. Refcount the
> > > > +  * active FEC users on the port and only clear the HW bit when the
> > > > +  * last user goes away, otherwise tearing down one MST stream would
> > > > +  * disable FEC for sibling streams still using it.
> > > > +  */
> > > > + if (drm_WARN_ON(display->drm, dig_port->fec_active_streams <= 0))
> > > > +         return;
> > > > +
> > > > + if (--dig_port->fec_active_streams > 0)
> > > > +         return;
> > > > +
> > > >   intel_de_rmw(display, dp_tp_ctl_reg(encoder, crtc_state),
> > > >                DP_TP_CTL_FEC_ENABLE, 0);
> > > >   intel_de_posting_read(display, dp_tp_ctl_reg(encoder, crtc_state));
> > > > diff --git a/drivers/gpu/drm/i915/display/intel_ddi.h
> > > > b/drivers/gpu/drm/i915/display/intel_ddi.h
> > > > index 580ecb09b8b6..3678c28a0dc9 100644
> > > > --- a/drivers/gpu/drm/i915/display/intel_ddi.h
> > > > +++ b/drivers/gpu/drm/i915/display/intel_ddi.h
> > > > @@ -78,6 +78,7 @@ int intel_ddi_toggle_hdcp_bits(struct intel_encoder
> > > *intel_encoder,
> > > >                          enum transcoder cpu_transcoder,
> > > >                          bool enable, u32 hdcp_mask);  void
> > > > intel_ddi_sanitize_encoder_pll_mapping(struct intel_encoder
> *encoder);
> > > > +void intel_ddi_seed_fec_refcounts(struct intel_display *display);
> > > >  int intel_ddi_level(struct intel_encoder *encoder,
> > > >               const struct intel_crtc_state *crtc_state,
> > > >               int lane);
> > > > diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h
> > > > b/drivers/gpu/drm/i915/display/intel_display_types.h
> > > > index f44be5c689ae..84bd0d993197 100644
> > > > --- a/drivers/gpu/drm/i915/display/intel_display_types.h
> > > > +++ b/drivers/gpu/drm/i915/display/intel_display_types.h
> > > > @@ -1987,6 +1987,18 @@ struct intel_digital_port {
> > > >   struct ref_tracker *ddi_io_wakeref;
> > > >   struct ref_tracker *aux_wakeref;
> > > >
> > > > + /*
> > > > +  * Number of active streams on this port currently using FEC.
> > > > +  *
> > > > +  * DP_TP_CTL_FEC_ENABLE is a per-port (link-wide) HW bit, but
> > > > +  * crtc_state->fec_enable is per-stream. For DP MST several streams
> > > > +  * share the same port and therefore the same FEC enable bit. Track
> > > > +  * how many active streams want FEC so that the HW bit is only
> > > > +  * programmed on the first enable and only cleared on the last
> > > > +  * disable. Modified under the modeset locks.
> > > > +  */
> > > > + int fec_active_streams;
> > > > +
> > > >   struct intel_tc_port *tc;
> > > >
> > > >   struct {
> > > > diff --git a/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > > > b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > > > index e88082c8caac..14f038b8ef81 100644
> > > > --- a/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > > > +++ b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > > > @@ -950,6 +950,12 @@ void intel_modeset_setup_hw_state(struct
> > > > intel_display *display,
> > > >
> > > >   intel_modeset_readout_hw_state(display);
> > > >
> > > > + /*
> > > > +  * Seed per-port FEC refcounts from the just-populated active
> > > > +  * crtc_states before anything can issue an enable/disable.
> > > > +  */
> > > > + intel_ddi_seed_fec_refcounts(display);
> > > > +
> > > >   /* HW state is read out, now we need to sanitize this mess. */
> > > >   get_encoder_power_domains(display);
> > > >
> > > > --
> > > > 2.25.1
> > > >
>

[-- Attachment #2: Type: text/html, Size: 16157 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] drm/i915/display: Refcount for fec enable/disable
  2026-06-02 15:33       ` Stephen Fuhry
@ 2026-06-02 16:37         ` Imre Deak
  2026-06-02 16:41           ` Stephen Fuhry
  2026-06-11 16:01           ` [Intel-gfx] " Stephen Fuhry
  0 siblings, 2 replies; 10+ messages in thread
From: Imre Deak @ 2026-06-02 16:37 UTC (permalink / raw)
  To: Stephen Fuhry
  Cc: Murthy, Arun R, intel-gfx@lists.freedesktop.org,
	intel-xe@lists.freedesktop.org

On Tue, Jun 02, 2026 at 11:33:09AM -0400, Stephen Fuhry wrote:
> I can share some observations from the debug logs captured on the affected
> system (drm.debug=0x10e, Alder Lake-P [8086:46a6], ThinkPad dock, 1080p on
> pipe B + 4K DSC on pipe C) that may help clarify the root cause.
> 
> Imre's assertion about the enable/disable gating appears to be correct from
> the logs. The active_links sequence across every modeset cycle in the
> captured trace is always clean:
> 
>   disable: 2 -> 1 -> 0  (intel_mst_disable_dp, intel_encoders_post_disable)
>   enable:  0 -> 1 -> 2  (intel_mst_pre_enable_dp, intel_mst_enable_dp)
> 
> No interleaving, no double-calls. intel_ddi_enable_fec and
> intel_ddi_disable_fec are each called exactly once per link per modeset
> cycle, as expected.
> 
> The mismatch and cascade are instead driven by repeated failures in the
> fastset check. In the cable-unplug log, 8 "fastset requirement not met,
> forcing full modeset" messages fire for both pipes between t=110.803s and
> t=110.899s -- before a single active_links change occurs. After replug,
> there are dozens more at ~20ms intervals (t=125.5s to t=126.3s) as the
> driver re-probes the dock, each one attempting and failing to commit a
> modeset.
> 
> The direction of the first mismatch after dock connect is notable. The
> very first fastset failure shows:
> 
>   [CRTC:186:pipe C] fastset requirement not met in fec_enable
>                     (expected no, found yes)
>   [CRTC:186:pipe C] fastset requirement not met in
> hw.pipe_mode.crtc_hdisplay
>                     (expected 1920, found 3840)
>   [CRTC:186:pipe C] fastset requirement not met in dsc.config.pic_width
>                     (expected 0, found 3840)
> 
> The SW computed state has pipe C at 1920x1080 with no DSC and no FEC, while
> HW has it at 3840x2160 with DSC and FEC active (from the previous
> session/firmware state). The modeset that follows clears FEC. The next
> compute correctly selects DSC (and therefore FEC), triggering the opposite
> mismatch ("expected yes, found no"). This back-and-forth drives the cascade.
> 
> The question of why the first SW compute produces fec_enable=no for pipe C
> when DSC is needed seems to be where the actual root cause lies -- whether
> that's a mode-negotiation timing issue (compositor requesting 1080p before
> 4K+DSC is negotiated) or something in the compute ordering in
> intel_dp_mst_compute_config.
> 
> Full log (drm.debug=0x10e, cable unplug/replug) is attached to issue #16303
> if useful.

I found drm-debug-dmesg-fec-patch.txt on the ticket. This seems to be a
6.12 kernel, with the change in this patch applied. There is a strange
delay at boot-up between 13.894595 and 148.167 when nothing seems to
happen.

I see indeed multiple disconnect/reconnect events for the dock starting
like:

[  159.428600] usb 3-6: USB disconnect, device number 10
[  159.428605] usb 3-6.3: USB disconnect, device number 11
[  159.428607] usb 3-6.3.2: USB disconnect, device number 12
[  159.431529] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008a88, pins 0x00000800, long 0x00000800
[  159.440423] usb 3-6.3.3: USB disconnect, device number 13
[  159.440430] usb 3-6.3.3.1: USB disconnect, device number 14
[  159.442548] usb 3-6.3.3.2: USB disconnect, device number 15
[  159.452345] usb 2-3: USB disconnect, device number 6
[  159.452352] r8152-cfgselector 2-3.1: USB disconnect, device number 7
[  159.521344] usb 3-6.3.3.4: USB disconnect, device number 16
[  159.544816] usb 2-3.3: USB disconnect, device number 8
[  165.839439] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008a88, pins 0x00000800, long 0x00000800

repeated about 5 times start at 159.428. At first look this seems like a
non-display related issue leading to the disconnection of the whole dock
with all the USB device on it.

To get a better understanding of the root cause could you please provide
a log with the latest drm-tip kernel without any patch applied as I
requested on the ticket?

Thanks.

> 
> Stephen Fuhry
> 
> On Tue, Jun 2, 2026 at 9:39 AM Imre Deak <imre.deak@intel.com> wrote:
> 
> > On Tue, Jun 02, 2026 at 04:35:42PM +0300, Murthy, Arun R wrote:
> > >
> > > > -----Original Message-----
> > > > From: Deak, Imre <imre.deak@intel.com>
> > > > Sent: Tuesday, June 2, 2026 4:17 PM
> > > > To: Murthy, Arun R <arun.r.murthy@intel.com>
> > > > Cc: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org;
> > Stephen
> > > > Fuhry <fuhrysteve@gmail.com>
> > > > Subject: Re: [PATCH] drm/i915/display: Refcount for fec enable/disable
> > > >
> > > > On Mon, Jun 01, 2026 at 07:59:43PM +0530, Arun R Murthy wrote:
> > > > > The FEC_ENABLE bit is per port basis and is enabled/disabled on ddi
> > > > > pre_enable and post_disable. This fec is shared across the mst
> > streams
> > > > > and can be enabled per stream basis as well.
> > > > > So have a refcount to track the usage of FEC and then enable/disable
> > > > > accordingly.
> > > > >
> > > > > Closes:
> > > > > https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16073
> > > > > Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
> > > > > Tested-by: Stephen Fuhry <fuhrysteve@gmail.com>
> > > > > ---
> > > > >  drivers/gpu/drm/i915/display/intel_ddi.c      | 66
> > +++++++++++++++++++
> > > > >  drivers/gpu/drm/i915/display/intel_ddi.h      |  1 +
> > > > >  .../drm/i915/display/intel_display_types.h    | 12 ++++
> > > > >  .../drm/i915/display/intel_modeset_setup.c    |  6 ++
> > > > >  4 files changed, 85 insertions(+)
> > > > >
> > > > > diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c
> > > > > b/drivers/gpu/drm/i915/display/intel_ddi.c
> > > > > index 86520848892e..e12a3d6d6a67 100644
> > > > > --- a/drivers/gpu/drm/i915/display/intel_ddi.c
> > > > > +++ b/drivers/gpu/drm/i915/display/intel_ddi.c
> > > > > @@ -2096,6 +2096,47 @@ void intel_ddi_disable_clock(struct
> > intel_encoder
> > > > *encoder)
> > > > >           encoder->disable_clock(encoder);
> > > > >  }
> > > > >
> > > > > +/**
> > > > > + * intel_ddi_seed_fec_refcounts - Seed per-port FEC refcounts from
> > > > > +active CRTCs
> > > > > + * @display: display device
> > > > > + *
> > > > > + * intel_digital_port::fec_active_streams is the per-port refcount
> > > > > +that gates
> > > > > + * programming of the shared DP_TP_CTL_FEC_ENABLE bit. After initial
> > > > > +HW state
> > > > > + * readout (driver load, resume, GPU reset takeover), the persistent
> > > > > + * crtc_state->fec_enable values reflect what HW currently has; we
> > > > > +need to
> > > > > + * align the refcount with that so the first paired disable doesn't
> > > > > +underflow
> > > > > + * and the next enable doesn't incorrectly skip programming the HW
> > bit.
> > > > > + *
> > > > > + * Must be called once after intel_modeset_readout_hw_state(),
> > before
> > > > > +any new
> > > > > + * modeset commit can run.
> > > > > + */
> > > > > +void intel_ddi_seed_fec_refcounts(struct intel_display *display) {
> > > > > + struct intel_crtc *crtc;
> > > > > +
> > > > > + for_each_intel_crtc(display->drm, crtc) {
> > > > > +         const struct intel_crtc_state *crtc_state =
> > > > > +                 to_intel_crtc_state(crtc->base.state);
> > > > > +         struct intel_encoder *encoder;
> > > > > +
> > > > > +         if (!crtc_state->hw.active || !crtc_state->fec_enable)
> > > > > +                 continue;
> > > > > +
> > > > > +         for_each_intel_encoder(display->drm, encoder) {
> > > > > +                 struct intel_digital_port *dig_port;
> > > > > +
> > > > > +                 if (encoder->base.crtc != &crtc->base)
> > > > > +                         continue;
> > > > > +                 if (!intel_encoder_is_dig_port(encoder))
> > > > > +                         continue;
> > > > > +
> > > > > +                 dig_port = enc_to_dig_port(encoder);
> > > > > +                 dig_port->fec_active_streams++;
> > > > > +                 break;
> > > > > +         }
> > > > > + }
> > > > > +}
> > > > > +
> > > > >  void intel_ddi_sanitize_encoder_pll_mapping(struct intel_encoder
> > > > > *encoder)  {
> > > > >   struct intel_display *display = to_intel_display(encoder); @@
> > > > > -2413,12 +2454,22 @@ static void intel_ddi_enable_fec(struct
> > intel_encoder
> > > > *encoder,
> > > > >                            const struct intel_crtc_state
> > *crtc_state)  {
> > > > >   struct intel_display *display = to_intel_display(encoder);
> > > > > + struct intel_digital_port *dig_port = enc_to_dig_port(encoder);
> > > > >   int i;
> > > > >   int ret;
> > > > >
> > > > >   if (!crtc_state->fec_enable)
> > > > >           return;
> > > > >
> > > > > + /*
> > > > > +  * FEC is link-wide: DP_TP_CTL_FEC_ENABLE is per-port while
> > > > > +  * crtc_state->fec_enable is per-stream. For DP MST, several
> > streams
> > > > > +  * on this port share the bit. Only program HW on the first stream
> > > > > +  * needing FEC; subsequent streams just bump the refcount.
> > > > > +  */
> > > > > + if (dig_port->fec_active_streams++ > 0)
> > > > > +         return;
> > > >
> > > > This doesn't make sense to me. FEC is enabled for the MST link and if
> > it's
> > > > enabled then fec_enabled is set in the crtc_state for all the streams
> > in the MST
> > > > topology. intel_ddi_enable_fec() will be called only for the first MST
> > stream
> > > > being enabled and intel_ddi_disable_fec() will be called only for the
> > last MST
> > > > stream being disabled. So I don't see why the above refcounting would
> > be
> > > > needed.
> > >
> > > The  logs mentioned in the above listed gitlab issue shows mismatch in
> > > fec enable/disable in the MST scenario. Hence added this refcount
> > > logic to overcome the mismatch.
> >
> > The root cause for the mismatch should be better understood then. I
> > still think that it's something else than the lack of refcounting.
> >
> > > Thanks and Regards,
> > > Arun R Murthy
> > > --------------------
> > > > > +
> > > > >   intel_de_rmw(display, dp_tp_ctl_reg(encoder, crtc_state),
> > > > >                0, DP_TP_CTL_FEC_ENABLE);
> > > > >
> > > > > @@ -2454,10 +2505,25 @@ static void intel_ddi_disable_fec(struct
> > > > intel_encoder *encoder,
> > > > >                             const struct intel_crtc_state
> > *crtc_state)  {
> > > > >   struct intel_display *display = to_intel_display(encoder);
> > > > > + struct intel_digital_port *dig_port = enc_to_dig_port(encoder);
> > > > >
> > > > >   if (!crtc_state->fec_enable)
> > > > >           return;
> > > > >
> > > > > + /*
> > > > > +  * FEC is a link-wide property and DP_TP_CTL_FEC_ENABLE is a
> > per-port
> > > > > +  * register, but crtc_state->fec_enable is per-stream. For DP MST,
> > > > > +  * multiple streams on the same port share this bit. Refcount the
> > > > > +  * active FEC users on the port and only clear the HW bit when the
> > > > > +  * last user goes away, otherwise tearing down one MST stream would
> > > > > +  * disable FEC for sibling streams still using it.
> > > > > +  */
> > > > > + if (drm_WARN_ON(display->drm, dig_port->fec_active_streams <= 0))
> > > > > +         return;
> > > > > +
> > > > > + if (--dig_port->fec_active_streams > 0)
> > > > > +         return;
> > > > > +
> > > > >   intel_de_rmw(display, dp_tp_ctl_reg(encoder, crtc_state),
> > > > >                DP_TP_CTL_FEC_ENABLE, 0);
> > > > >   intel_de_posting_read(display, dp_tp_ctl_reg(encoder, crtc_state));
> > > > > diff --git a/drivers/gpu/drm/i915/display/intel_ddi.h
> > > > > b/drivers/gpu/drm/i915/display/intel_ddi.h
> > > > > index 580ecb09b8b6..3678c28a0dc9 100644
> > > > > --- a/drivers/gpu/drm/i915/display/intel_ddi.h
> > > > > +++ b/drivers/gpu/drm/i915/display/intel_ddi.h
> > > > > @@ -78,6 +78,7 @@ int intel_ddi_toggle_hdcp_bits(struct intel_encoder
> > > > *intel_encoder,
> > > > >                          enum transcoder cpu_transcoder,
> > > > >                          bool enable, u32 hdcp_mask);  void
> > > > > intel_ddi_sanitize_encoder_pll_mapping(struct intel_encoder
> > *encoder);
> > > > > +void intel_ddi_seed_fec_refcounts(struct intel_display *display);
> > > > >  int intel_ddi_level(struct intel_encoder *encoder,
> > > > >               const struct intel_crtc_state *crtc_state,
> > > > >               int lane);
> > > > > diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h
> > > > > b/drivers/gpu/drm/i915/display/intel_display_types.h
> > > > > index f44be5c689ae..84bd0d993197 100644
> > > > > --- a/drivers/gpu/drm/i915/display/intel_display_types.h
> > > > > +++ b/drivers/gpu/drm/i915/display/intel_display_types.h
> > > > > @@ -1987,6 +1987,18 @@ struct intel_digital_port {
> > > > >   struct ref_tracker *ddi_io_wakeref;
> > > > >   struct ref_tracker *aux_wakeref;
> > > > >
> > > > > + /*
> > > > > +  * Number of active streams on this port currently using FEC.
> > > > > +  *
> > > > > +  * DP_TP_CTL_FEC_ENABLE is a per-port (link-wide) HW bit, but
> > > > > +  * crtc_state->fec_enable is per-stream. For DP MST several streams
> > > > > +  * share the same port and therefore the same FEC enable bit. Track
> > > > > +  * how many active streams want FEC so that the HW bit is only
> > > > > +  * programmed on the first enable and only cleared on the last
> > > > > +  * disable. Modified under the modeset locks.
> > > > > +  */
> > > > > + int fec_active_streams;
> > > > > +
> > > > >   struct intel_tc_port *tc;
> > > > >
> > > > >   struct {
> > > > > diff --git a/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > > > > b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > > > > index e88082c8caac..14f038b8ef81 100644
> > > > > --- a/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > > > > +++ b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > > > > @@ -950,6 +950,12 @@ void intel_modeset_setup_hw_state(struct
> > > > > intel_display *display,
> > > > >
> > > > >   intel_modeset_readout_hw_state(display);
> > > > >
> > > > > + /*
> > > > > +  * Seed per-port FEC refcounts from the just-populated active
> > > > > +  * crtc_states before anything can issue an enable/disable.
> > > > > +  */
> > > > > + intel_ddi_seed_fec_refcounts(display);
> > > > > +
> > > > >   /* HW state is read out, now we need to sanitize this mess. */
> > > > >   get_encoder_power_domains(display);
> > > > >
> > > > > --
> > > > > 2.25.1
> > > > >
> >

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] drm/i915/display: Refcount for fec enable/disable
  2026-06-02 16:37         ` Imre Deak
@ 2026-06-02 16:41           ` Stephen Fuhry
  2026-06-11 16:01           ` [Intel-gfx] " Stephen Fuhry
  1 sibling, 0 replies; 10+ messages in thread
From: Stephen Fuhry @ 2026-06-02 16:41 UTC (permalink / raw)
  To: imre.deak
  Cc: Murthy, Arun R, intel-gfx@lists.freedesktop.org,
	intel-xe@lists.freedesktop.org

[-- Attachment #1: Type: text/plain, Size: 16428 bytes --]

Thanks for looking into this. I'll build and boot an unpatched drm-tip
kernel
and send the log -- should have it to you within the next day or so.

One thing worth noting on the USB disconnects: those are caused by a
separate
issue with the dock's hub controllers (17ef:a391 and 17ef:a392) triggering
repeated U1/U2 link power management transitions. There's a fix for that
already -- USB_QUIRK_NO_LPM for those device IDs -- which Greg KH accepted
into usb-linus last week. On the patched kernel (USB quirk applied), the USB
disconnect cascade is gone entirely and the dock reconnects cleanly.

Without the USB quirk, the repeated USB-level disconnects are what drive the
HPD cascade and the fec_enable mismatches. So there are really two separate
issues at play here.

Stephen Fuhry

On Tue, Jun 2, 2026 at 12:37 PM Imre Deak <imre.deak@intel.com> wrote:

> On Tue, Jun 02, 2026 at 11:33:09AM -0400, Stephen Fuhry wrote:
> > I can share some observations from the debug logs captured on the
> affected
> > system (drm.debug=0x10e, Alder Lake-P [8086:46a6], ThinkPad dock, 1080p
> on
> > pipe B + 4K DSC on pipe C) that may help clarify the root cause.
> >
> > Imre's assertion about the enable/disable gating appears to be correct
> from
> > the logs. The active_links sequence across every modeset cycle in the
> > captured trace is always clean:
> >
> >   disable: 2 -> 1 -> 0  (intel_mst_disable_dp,
> intel_encoders_post_disable)
> >   enable:  0 -> 1 -> 2  (intel_mst_pre_enable_dp, intel_mst_enable_dp)
> >
> > No interleaving, no double-calls. intel_ddi_enable_fec and
> > intel_ddi_disable_fec are each called exactly once per link per modeset
> > cycle, as expected.
> >
> > The mismatch and cascade are instead driven by repeated failures in the
> > fastset check. In the cable-unplug log, 8 "fastset requirement not met,
> > forcing full modeset" messages fire for both pipes between t=110.803s and
> > t=110.899s -- before a single active_links change occurs. After replug,
> > there are dozens more at ~20ms intervals (t=125.5s to t=126.3s) as the
> > driver re-probes the dock, each one attempting and failing to commit a
> > modeset.
> >
> > The direction of the first mismatch after dock connect is notable. The
> > very first fastset failure shows:
> >
> >   [CRTC:186:pipe C] fastset requirement not met in fec_enable
> >                     (expected no, found yes)
> >   [CRTC:186:pipe C] fastset requirement not met in
> > hw.pipe_mode.crtc_hdisplay
> >                     (expected 1920, found 3840)
> >   [CRTC:186:pipe C] fastset requirement not met in dsc.config.pic_width
> >                     (expected 0, found 3840)
> >
> > The SW computed state has pipe C at 1920x1080 with no DSC and no FEC,
> while
> > HW has it at 3840x2160 with DSC and FEC active (from the previous
> > session/firmware state). The modeset that follows clears FEC. The next
> > compute correctly selects DSC (and therefore FEC), triggering the
> opposite
> > mismatch ("expected yes, found no"). This back-and-forth drives the
> cascade.
> >
> > The question of why the first SW compute produces fec_enable=no for pipe
> C
> > when DSC is needed seems to be where the actual root cause lies --
> whether
> > that's a mode-negotiation timing issue (compositor requesting 1080p
> before
> > 4K+DSC is negotiated) or something in the compute ordering in
> > intel_dp_mst_compute_config.
> >
> > Full log (drm.debug=0x10e, cable unplug/replug) is attached to issue
> #16303
> > if useful.
>
> I found drm-debug-dmesg-fec-patch.txt on the ticket. This seems to be a
> 6.12 kernel, with the change in this patch applied. There is a strange
> delay at boot-up between 13.894595 and 148.167 when nothing seems to
> happen.
>
> I see indeed multiple disconnect/reconnect events for the dock starting
> like:
>
> [  159.428600] usb 3-6: USB disconnect, device number 10
> [  159.428605] usb 3-6.3: USB disconnect, device number 11
> [  159.428607] usb 3-6.3.2: USB disconnect, device number 12
> [  159.431529] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]]
> hotplug event received, stat 0x00040000, dig 0x00008a88, pins 0x00000800,
> long 0x00000800
> [  159.440423] usb 3-6.3.3: USB disconnect, device number 13
> [  159.440430] usb 3-6.3.3.1: USB disconnect, device number 14
> [  159.442548] usb 3-6.3.3.2: USB disconnect, device number 15
> [  159.452345] usb 2-3: USB disconnect, device number 6
> [  159.452352] r8152-cfgselector 2-3.1: USB disconnect, device number 7
> [  159.521344] usb 3-6.3.3.4: USB disconnect, device number 16
> [  159.544816] usb 2-3.3: USB disconnect, device number 8
> [  165.839439] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]]
> hotplug event received, stat 0x00040000, dig 0x00008a88, pins 0x00000800,
> long 0x00000800
>
> repeated about 5 times start at 159.428. At first look this seems like a
> non-display related issue leading to the disconnection of the whole dock
> with all the USB device on it.
>
> To get a better understanding of the root cause could you please provide
> a log with the latest drm-tip kernel without any patch applied as I
> requested on the ticket?
>
> Thanks.
>
> >
> > Stephen Fuhry
> >
> > On Tue, Jun 2, 2026 at 9:39 AM Imre Deak <imre.deak@intel.com> wrote:
> >
> > > On Tue, Jun 02, 2026 at 04:35:42PM +0300, Murthy, Arun R wrote:
> > > >
> > > > > -----Original Message-----
> > > > > From: Deak, Imre <imre.deak@intel.com>
> > > > > Sent: Tuesday, June 2, 2026 4:17 PM
> > > > > To: Murthy, Arun R <arun.r.murthy@intel.com>
> > > > > Cc: intel-gfx@lists.freedesktop.org;
> intel-xe@lists.freedesktop.org;
> > > Stephen
> > > > > Fuhry <fuhrysteve@gmail.com>
> > > > > Subject: Re: [PATCH] drm/i915/display: Refcount for fec
> enable/disable
> > > > >
> > > > > On Mon, Jun 01, 2026 at 07:59:43PM +0530, Arun R Murthy wrote:
> > > > > > The FEC_ENABLE bit is per port basis and is enabled/disabled on
> ddi
> > > > > > pre_enable and post_disable. This fec is shared across the mst
> > > streams
> > > > > > and can be enabled per stream basis as well.
> > > > > > So have a refcount to track the usage of FEC and then
> enable/disable
> > > > > > accordingly.
> > > > > >
> > > > > > Closes:
> > > > > >
> https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16073
> > > > > > Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
> > > > > > Tested-by: Stephen Fuhry <fuhrysteve@gmail.com>
> > > > > > ---
> > > > > >  drivers/gpu/drm/i915/display/intel_ddi.c      | 66
> > > +++++++++++++++++++
> > > > > >  drivers/gpu/drm/i915/display/intel_ddi.h      |  1 +
> > > > > >  .../drm/i915/display/intel_display_types.h    | 12 ++++
> > > > > >  .../drm/i915/display/intel_modeset_setup.c    |  6 ++
> > > > > >  4 files changed, 85 insertions(+)
> > > > > >
> > > > > > diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c
> > > > > > b/drivers/gpu/drm/i915/display/intel_ddi.c
> > > > > > index 86520848892e..e12a3d6d6a67 100644
> > > > > > --- a/drivers/gpu/drm/i915/display/intel_ddi.c
> > > > > > +++ b/drivers/gpu/drm/i915/display/intel_ddi.c
> > > > > > @@ -2096,6 +2096,47 @@ void intel_ddi_disable_clock(struct
> > > intel_encoder
> > > > > *encoder)
> > > > > >           encoder->disable_clock(encoder);
> > > > > >  }
> > > > > >
> > > > > > +/**
> > > > > > + * intel_ddi_seed_fec_refcounts - Seed per-port FEC refcounts
> from
> > > > > > +active CRTCs
> > > > > > + * @display: display device
> > > > > > + *
> > > > > > + * intel_digital_port::fec_active_streams is the per-port
> refcount
> > > > > > +that gates
> > > > > > + * programming of the shared DP_TP_CTL_FEC_ENABLE bit. After
> initial
> > > > > > +HW state
> > > > > > + * readout (driver load, resume, GPU reset takeover), the
> persistent
> > > > > > + * crtc_state->fec_enable values reflect what HW currently has;
> we
> > > > > > +need to
> > > > > > + * align the refcount with that so the first paired disable
> doesn't
> > > > > > +underflow
> > > > > > + * and the next enable doesn't incorrectly skip programming the
> HW
> > > bit.
> > > > > > + *
> > > > > > + * Must be called once after intel_modeset_readout_hw_state(),
> > > before
> > > > > > +any new
> > > > > > + * modeset commit can run.
> > > > > > + */
> > > > > > +void intel_ddi_seed_fec_refcounts(struct intel_display
> *display) {
> > > > > > + struct intel_crtc *crtc;
> > > > > > +
> > > > > > + for_each_intel_crtc(display->drm, crtc) {
> > > > > > +         const struct intel_crtc_state *crtc_state =
> > > > > > +                 to_intel_crtc_state(crtc->base.state);
> > > > > > +         struct intel_encoder *encoder;
> > > > > > +
> > > > > > +         if (!crtc_state->hw.active || !crtc_state->fec_enable)
> > > > > > +                 continue;
> > > > > > +
> > > > > > +         for_each_intel_encoder(display->drm, encoder) {
> > > > > > +                 struct intel_digital_port *dig_port;
> > > > > > +
> > > > > > +                 if (encoder->base.crtc != &crtc->base)
> > > > > > +                         continue;
> > > > > > +                 if (!intel_encoder_is_dig_port(encoder))
> > > > > > +                         continue;
> > > > > > +
> > > > > > +                 dig_port = enc_to_dig_port(encoder);
> > > > > > +                 dig_port->fec_active_streams++;
> > > > > > +                 break;
> > > > > > +         }
> > > > > > + }
> > > > > > +}
> > > > > > +
> > > > > >  void intel_ddi_sanitize_encoder_pll_mapping(struct intel_encoder
> > > > > > *encoder)  {
> > > > > >   struct intel_display *display = to_intel_display(encoder); @@
> > > > > > -2413,12 +2454,22 @@ static void intel_ddi_enable_fec(struct
> > > intel_encoder
> > > > > *encoder,
> > > > > >                            const struct intel_crtc_state
> > > *crtc_state)  {
> > > > > >   struct intel_display *display = to_intel_display(encoder);
> > > > > > + struct intel_digital_port *dig_port = enc_to_dig_port(encoder);
> > > > > >   int i;
> > > > > >   int ret;
> > > > > >
> > > > > >   if (!crtc_state->fec_enable)
> > > > > >           return;
> > > > > >
> > > > > > + /*
> > > > > > +  * FEC is link-wide: DP_TP_CTL_FEC_ENABLE is per-port while
> > > > > > +  * crtc_state->fec_enable is per-stream. For DP MST, several
> > > streams
> > > > > > +  * on this port share the bit. Only program HW on the first
> stream
> > > > > > +  * needing FEC; subsequent streams just bump the refcount.
> > > > > > +  */
> > > > > > + if (dig_port->fec_active_streams++ > 0)
> > > > > > +         return;
> > > > >
> > > > > This doesn't make sense to me. FEC is enabled for the MST link and
> if
> > > it's
> > > > > enabled then fec_enabled is set in the crtc_state for all the
> streams
> > > in the MST
> > > > > topology. intel_ddi_enable_fec() will be called only for the first
> MST
> > > stream
> > > > > being enabled and intel_ddi_disable_fec() will be called only for
> the
> > > last MST
> > > > > stream being disabled. So I don't see why the above refcounting
> would
> > > be
> > > > > needed.
> > > >
> > > > The  logs mentioned in the above listed gitlab issue shows mismatch
> in
> > > > fec enable/disable in the MST scenario. Hence added this refcount
> > > > logic to overcome the mismatch.
> > >
> > > The root cause for the mismatch should be better understood then. I
> > > still think that it's something else than the lack of refcounting.
> > >
> > > > Thanks and Regards,
> > > > Arun R Murthy
> > > > --------------------
> > > > > > +
> > > > > >   intel_de_rmw(display, dp_tp_ctl_reg(encoder, crtc_state),
> > > > > >                0, DP_TP_CTL_FEC_ENABLE);
> > > > > >
> > > > > > @@ -2454,10 +2505,25 @@ static void intel_ddi_disable_fec(struct
> > > > > intel_encoder *encoder,
> > > > > >                             const struct intel_crtc_state
> > > *crtc_state)  {
> > > > > >   struct intel_display *display = to_intel_display(encoder);
> > > > > > + struct intel_digital_port *dig_port = enc_to_dig_port(encoder);
> > > > > >
> > > > > >   if (!crtc_state->fec_enable)
> > > > > >           return;
> > > > > >
> > > > > > + /*
> > > > > > +  * FEC is a link-wide property and DP_TP_CTL_FEC_ENABLE is a
> > > per-port
> > > > > > +  * register, but crtc_state->fec_enable is per-stream. For DP
> MST,
> > > > > > +  * multiple streams on the same port share this bit. Refcount
> the
> > > > > > +  * active FEC users on the port and only clear the HW bit when
> the
> > > > > > +  * last user goes away, otherwise tearing down one MST stream
> would
> > > > > > +  * disable FEC for sibling streams still using it.
> > > > > > +  */
> > > > > > + if (drm_WARN_ON(display->drm, dig_port->fec_active_streams <=
> 0))
> > > > > > +         return;
> > > > > > +
> > > > > > + if (--dig_port->fec_active_streams > 0)
> > > > > > +         return;
> > > > > > +
> > > > > >   intel_de_rmw(display, dp_tp_ctl_reg(encoder, crtc_state),
> > > > > >                DP_TP_CTL_FEC_ENABLE, 0);
> > > > > >   intel_de_posting_read(display, dp_tp_ctl_reg(encoder,
> crtc_state));
> > > > > > diff --git a/drivers/gpu/drm/i915/display/intel_ddi.h
> > > > > > b/drivers/gpu/drm/i915/display/intel_ddi.h
> > > > > > index 580ecb09b8b6..3678c28a0dc9 100644
> > > > > > --- a/drivers/gpu/drm/i915/display/intel_ddi.h
> > > > > > +++ b/drivers/gpu/drm/i915/display/intel_ddi.h
> > > > > > @@ -78,6 +78,7 @@ int intel_ddi_toggle_hdcp_bits(struct
> intel_encoder
> > > > > *intel_encoder,
> > > > > >                          enum transcoder cpu_transcoder,
> > > > > >                          bool enable, u32 hdcp_mask);  void
> > > > > > intel_ddi_sanitize_encoder_pll_mapping(struct intel_encoder
> > > *encoder);
> > > > > > +void intel_ddi_seed_fec_refcounts(struct intel_display
> *display);
> > > > > >  int intel_ddi_level(struct intel_encoder *encoder,
> > > > > >               const struct intel_crtc_state *crtc_state,
> > > > > >               int lane);
> > > > > > diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h
> > > > > > b/drivers/gpu/drm/i915/display/intel_display_types.h
> > > > > > index f44be5c689ae..84bd0d993197 100644
> > > > > > --- a/drivers/gpu/drm/i915/display/intel_display_types.h
> > > > > > +++ b/drivers/gpu/drm/i915/display/intel_display_types.h
> > > > > > @@ -1987,6 +1987,18 @@ struct intel_digital_port {
> > > > > >   struct ref_tracker *ddi_io_wakeref;
> > > > > >   struct ref_tracker *aux_wakeref;
> > > > > >
> > > > > > + /*
> > > > > > +  * Number of active streams on this port currently using FEC.
> > > > > > +  *
> > > > > > +  * DP_TP_CTL_FEC_ENABLE is a per-port (link-wide) HW bit, but
> > > > > > +  * crtc_state->fec_enable is per-stream. For DP MST several
> streams
> > > > > > +  * share the same port and therefore the same FEC enable bit.
> Track
> > > > > > +  * how many active streams want FEC so that the HW bit is only
> > > > > > +  * programmed on the first enable and only cleared on the last
> > > > > > +  * disable. Modified under the modeset locks.
> > > > > > +  */
> > > > > > + int fec_active_streams;
> > > > > > +
> > > > > >   struct intel_tc_port *tc;
> > > > > >
> > > > > >   struct {
> > > > > > diff --git a/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > > > > > b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > > > > > index e88082c8caac..14f038b8ef81 100644
> > > > > > --- a/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > > > > > +++ b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > > > > > @@ -950,6 +950,12 @@ void intel_modeset_setup_hw_state(struct
> > > > > > intel_display *display,
> > > > > >
> > > > > >   intel_modeset_readout_hw_state(display);
> > > > > >
> > > > > > + /*
> > > > > > +  * Seed per-port FEC refcounts from the just-populated active
> > > > > > +  * crtc_states before anything can issue an enable/disable.
> > > > > > +  */
> > > > > > + intel_ddi_seed_fec_refcounts(display);
> > > > > > +
> > > > > >   /* HW state is read out, now we need to sanitize this mess. */
> > > > > >   get_encoder_power_domains(display);
> > > > > >
> > > > > > --
> > > > > > 2.25.1
> > > > > >
> > >
>

[-- Attachment #2: Type: text/html, Size: 21760 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Intel-gfx] [PATCH] drm/i915/display: Refcount for fec enable/disable
  2026-06-02 16:37         ` Imre Deak
  2026-06-02 16:41           ` Stephen Fuhry
@ 2026-06-11 16:01           ` Stephen Fuhry
  1 sibling, 0 replies; 10+ messages in thread
From: Stephen Fuhry @ 2026-06-11 16:01 UTC (permalink / raw)
  To: imre.deak; +Cc: arun.r.murthy, fuhrysteve, intel-gfx, intel-xe

[-- Attachment #1: Type: text/plain, Size: 1329 bytes --]

Attaching the log captured on drm-tip (commit 1e5fbf0d6, 2026-05-26
integration manifest) with no patches applied, drm.debug=0x10e,
log_buf_len=16M, ignore_loglevel. The log covers from kernel start through
dock plug-in and cascade stabilization.

The dock was plugged in at approximately t=78s. The fec_enable mismatches
begin at t=79.8s and stop at t=82.9s (~3 seconds total). All 40 mismatches
are at the fastset check level (expected no, found yes on both pipe B and
pipe C) -- none escalated to ERROR level, and there are no active_links
changes, meaning no full modeset ran during this particular cascade. The
monitors came up without a prolonged cycling episode.

A note on the USB disconnect behaviour you observed in the earlier log: the
repeated dock USB disconnects (3-6, 3-6.3, etc.) that trigger the HPD
cascade are caused by the dock's hub controllers (17ef:a391, 17ef:a392)
cycling through U1/U2 LPM states. There is a separate fix for this --
USB_QUIRK_NO_LPM for those device IDs -- that Greg KH accepted into
usb-linus:

  https://lore.kernel.org/linux-usb/20260513171419.44849-1-fuhrysteve@gmail.com/

The drm-tip build doesn't include that fix since it's in a different tree,
so the USB cycling is still present here. On a kernel with both fixes
applied, the USB cascade is eliminated entirely.

Stephen Fuhry

[-- Attachment #2: drm-tip-nopatch-boot.txt --]
[-- Type: application/octet-stream, Size: 3814873 bytes --]

[    0.000000] Linux version 7.1.0-rc5-drm-tip (fuhrysteve@debian-t14-gen1-fuhrysteve) (gcc (Debian 14.2.0-19) 14.2.0, GNU ld (GNU Binutils for Debian) 2.44) #3 SMP PREEMPT_DYNAMIC Tue Jun  2 12:43:07 EDT 2026
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-7.1.0-rc5-drm-tip root=/dev/mapper/debian--t14--gen1--fuhrysteve--vg-root ro snd-intel-dspcfg.dsp_driver=1 drm.debug=0x10e log_buf_len=16M ignore_loglevel
[    0.000000] x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff]  System RAM
[    0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff]  device reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000008e36efff]  System RAM
[    0.000000] BIOS-e820: [mem 0x000000008e36f000-0x000000009332efff]  device reserved
[    0.000000] BIOS-e820: [mem 0x000000009332f000-0x0000000093f2efff]  ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000093f2f000-0x0000000093ffefff]  ACPI data
[    0.000000] BIOS-e820: [mem 0x0000000093fff000-0x0000000093ffffff]  System RAM
[    0.000000] BIOS-e820: [mem 0x0000000094000000-0x0000000097ffffff]  device reserved
[    0.000000] BIOS-e820: [gap 0x0000000098000000-0x00000000981fffff]
[    0.000000] BIOS-e820: [mem 0x0000000098200000-0x00000000983fffff]  device reserved
[    0.000000] BIOS-e820: [gap 0x0000000098400000-0x0000000098bfffff]
[    0.000000] BIOS-e820: [mem 0x0000000098c00000-0x00000000a07fffff]  device reserved
[    0.000000] BIOS-e820: [gap 0x00000000a0800000-0x00000000bfffffff]
[    0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff]  device reserved
[    0.000000] BIOS-e820: [gap 0x00000000d0000000-0x00000000fed1ffff]
[    0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff]  device reserved
[    0.000000] BIOS-e820: [gap 0x00000000fed80000-0x00000000ffffffff]
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000a5f7fffff]  System RAM
[    0.000000] printk: debug: ignoring loglevel setting.
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Lenovo
[    0.000000] efi: ACPI=0x93ffe000 ACPI 2.0=0x93ffe014 TPMFinalLog=0x93e8e000 SMBIOS=0x900af000 SMBIOS 3.0=0x900a2000 MEMATTR=0x8a160018 ESRT=0x8a16e418 MOKvar=0x8e7d1000 INITRD=0x6351e718 RNG=0x93ffd018 TPMEventLog=0x93ff0018 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem79: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
[    0.000000] e820: remove [mem 0xc0000000-0xcfffffff] device reserved
[    0.000000] DMI: SMBIOS 3.4.0 present.
[    0.000000] DMI: LENOVO 21AH00BSUS/21AH00BSUS, BIOS N3MET28W (1.27 ) 03/17/2026
[    0.000000] DMI: Memory slots populated: 2/8
[    0.000000] tsc: Detected 2500.000 MHz processor
[    0.000000] tsc: Detected 2496.000 MHz TSC
[    0.000008] e820: update [mem 0x00000000-0x00000fff] System RAM ==> device reserved
[    0.000012] e820: remove [mem 0x000a0000-0x000fffff] System RAM
[    0.000020] last_pfn = 0xa5f800 max_arch_pfn = 0x400000000
[    0.000026] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
[    0.000028] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000745] last_pfn = 0x94000 max_arch_pfn = 0x400000000
[    0.010747] esrt: Reserving ESRT space from 0x000000008a16e418 to 0x000000008a16e6d0.
[    0.010754] e820: update [mem 0x8a16e000-0x8a16efff] System RAM ==> device reserved
[    0.010775] Using GB pages for direct mapping
[    0.025470] printk: log buffer data + meta data: 16777216 + 71303168 = 88080384 bytes
[    0.025473] printk: early log buf free: 127688(97%)
[    0.025475] Secure boot disabled
[    0.025475] RAMDISK: [mem 0x48ae7000-0x51ce4fff]
[    0.025912] ACPI: Early table checksum verification disabled
[    0.025916] ACPI: RSDP 0x0000000093FFE014 000024 (v02 LENOVO)
[    0.025921] ACPI: XSDT 0x0000000093FFC188 000134 (v01 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025927] ACPI: FACP 0x0000000090092000 000114 (v06 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025933] ACPI: DSDT 0x0000000090044000 049618 (v02 LENOVO ICL      00000002      01000013)
[    0.025936] ACPI: FACS 0x0000000093E73000 000040
[    0.025939] ACPI: SSDT 0x000000009014A000 00038C (v02 LENOVO Pmax_Dev 00000001 INTL 20200717)
[    0.025942] ACPI: SSDT 0x0000000090132000 005D2C (v02 LENOVO CpuSsdt  00003000 INTL 20200717)
[    0.025945] ACPI: SSDT 0x0000000090131000 00059B (v02 LENOVO CtdpB    00001000 INTL 20200717)
[    0.025948] ACPI: SSDT 0x00000000900C2000 003203 (v02 LENOVO DptfTabl 00001000 INTL 20200717)
[    0.025951] ACPI: SSDT 0x0000000090094000 00060E (v02 LENOVO Tpm2Tabl 00001000 INTL 20200717)
[    0.025953] ACPI: TPM2 0x0000000090093000 00004C (v04 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025956] ACPI: HPET 0x0000000090091000 000038 (v01 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025959] ACPI: APIC 0x0000000090090000 0001DC (v05 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025962] ACPI: MCFG 0x000000009008F000 00003C (v01 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025964] ACPI: ECDT 0x000000009008E000 000053 (v01 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025967] ACPI: SSDT 0x0000000090041000 00258E (v02 LENOVO AdlP_Rvp 00001000 INTL 20200717)
[    0.025970] ACPI: SSDT 0x0000000090040000 000083 (v02 LENOVO PID0Ssdt 00000010 INTL 20200717)
[    0.025973] ACPI: SSDT 0x000000009003C000 003F55 (v02 LENOVO ProjSsdt 00000010 INTL 20200717)
[    0.025975] ACPI: SSDT 0x0000000090038000 002B22 (v02 LENOVO SaSsdt   00003000 INTL 20200717)
[    0.025979] ACPI: SSDT 0x0000000090034000 0035CE (v02 LENOVO IgfxSsdt 00003000 INTL 20200717)
[    0.025981] ACPI: SSDT 0x0000000090026000 00D676 (v02 LENOVO TcssSsdt 00001000 INTL 20200717)
[    0.025984] ACPI: LPIT 0x0000000090025000 0000CC (v01 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025987] ACPI: WSMT 0x0000000090024000 000028 (v01 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025990] ACPI: SSDT 0x0000000090021000 0026B4 (v02 LENOVO TbtTypeC 00000000 INTL 20200717)
[    0.025992] ACPI: DBGP 0x0000000090020000 000034 (v01 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025995] ACPI: DBG2 0x000000009001F000 000054 (v00 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025998] ACPI: NHLT 0x000000009001D000 001B64 (v00 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.026001] ACPI: MSDM 0x000000009001C000 000055 (v03 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.026003] ACPI: SSDT 0x0000000090006000 000E54 (v02 LENOVO UsbCTabl 00001000 INTL 20200717)
[    0.026006] ACPI: BATB 0x0000000090005000 00004A (v02 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.026009] ACPI: DMAR 0x000000008E803000 000088 (v02 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.026012] ACPI: SSDT 0x000000008E801000 00129A (v02 LENOVO SocGpe   00003000 INTL 20200717)
[    0.026015] ACPI: SSDT 0x000000008E7FD000 0039DA (v02 LENOVO SocCmn   00003000 INTL 20200717)
[    0.026017] ACPI: SSDT 0x000000008E7FC000 000144 (v02 LENOVO ADebTabl 00001000 INTL 20200717)
[    0.026020] ACPI: BGRT 0x0000000090007000 000038 (v01 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.026023] ACPI: PHAT 0x000000008E7D5000 000598 (v01 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.026026] ACPI: UEFI 0x0000000093E24000 000076 (v01 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.026028] ACPI: FPDT 0x000000008E7D3000 000034 (v01 LENOVO TP-N3M   00001270 PTEC 00001270)
[    0.026031] ACPI: Reserving FACP table memory at [mem 0x90092000-0x90092113]
[    0.026033] ACPI: Reserving DSDT table memory at [mem 0x90044000-0x9008d617]
[    0.026034] ACPI: Reserving FACS table memory at [mem 0x93e73000-0x93e7303f]
[    0.026035] ACPI: Reserving SSDT table memory at [mem 0x9014a000-0x9014a38b]
[    0.026036] ACPI: Reserving SSDT table memory at [mem 0x90132000-0x90137d2b]
[    0.026037] ACPI: Reserving SSDT table memory at [mem 0x90131000-0x9013159a]
[    0.026038] ACPI: Reserving SSDT table memory at [mem 0x900c2000-0x900c5202]
[    0.026038] ACPI: Reserving SSDT table memory at [mem 0x90094000-0x9009460d]
[    0.026039] ACPI: Reserving TPM2 table memory at [mem 0x90093000-0x9009304b]
[    0.026040] ACPI: Reserving HPET table memory at [mem 0x90091000-0x90091037]
[    0.026041] ACPI: Reserving APIC table memory at [mem 0x90090000-0x900901db]
[    0.026042] ACPI: Reserving MCFG table memory at [mem 0x9008f000-0x9008f03b]
[    0.026042] ACPI: Reserving ECDT table memory at [mem 0x9008e000-0x9008e052]
[    0.026043] ACPI: Reserving SSDT table memory at [mem 0x90041000-0x9004358d]
[    0.026044] ACPI: Reserving SSDT table memory at [mem 0x90040000-0x90040082]
[    0.026045] ACPI: Reserving SSDT table memory at [mem 0x9003c000-0x9003ff54]
[    0.026046] ACPI: Reserving SSDT table memory at [mem 0x90038000-0x9003ab21]
[    0.026046] ACPI: Reserving SSDT table memory at [mem 0x90034000-0x900375cd]
[    0.026047] ACPI: Reserving SSDT table memory at [mem 0x90026000-0x90033675]
[    0.026048] ACPI: Reserving LPIT table memory at [mem 0x90025000-0x900250cb]
[    0.026049] ACPI: Reserving WSMT table memory at [mem 0x90024000-0x90024027]
[    0.026050] ACPI: Reserving SSDT table memory at [mem 0x90021000-0x900236b3]
[    0.026050] ACPI: Reserving DBGP table memory at [mem 0x90020000-0x90020033]
[    0.026051] ACPI: Reserving DBG2 table memory at [mem 0x9001f000-0x9001f053]
[    0.026052] ACPI: Reserving NHLT table memory at [mem 0x9001d000-0x9001eb63]
[    0.026053] ACPI: Reserving MSDM table memory at [mem 0x9001c000-0x9001c054]
[    0.026054] ACPI: Reserving SSDT table memory at [mem 0x90006000-0x90006e53]
[    0.026054] ACPI: Reserving BATB table memory at [mem 0x90005000-0x90005049]
[    0.026055] ACPI: Reserving DMAR table memory at [mem 0x8e803000-0x8e803087]
[    0.026056] ACPI: Reserving SSDT table memory at [mem 0x8e801000-0x8e802299]
[    0.026057] ACPI: Reserving SSDT table memory at [mem 0x8e7fd000-0x8e8009d9]
[    0.026057] ACPI: Reserving SSDT table memory at [mem 0x8e7fc000-0x8e7fc143]
[    0.026058] ACPI: Reserving BGRT table memory at [mem 0x90007000-0x90007037]
[    0.026059] ACPI: Reserving PHAT table memory at [mem 0x8e7d5000-0x8e7d5597]
[    0.026060] ACPI: Reserving UEFI table memory at [mem 0x93e24000-0x93e24075]
[    0.026061] ACPI: Reserving FPDT table memory at [mem 0x8e7d3000-0x8e7d3033]
[    0.026424] No NUMA configuration found
[    0.026425] Faking a node at [mem 0x0000000000000000-0x0000000a5f7fffff]
[    0.026435] NODE_DATA(0) allocated [mem 0xa5a3d5200-0xa5a3fffff]
[    0.026733] Reserving Intel graphics memory at [mem 0x9c800000-0xa07fffff]
[    0.028019] ACPI: PM-Timer IO Port: 0x1808
[    0.028029] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.028031] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.028032] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.028033] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.028033] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.028034] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.028035] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.028035] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.028036] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.028037] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.028037] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.028038] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.028039] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.028040] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.028040] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.028041] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.028042] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.028043] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.028043] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.028044] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.028045] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.028046] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.028046] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.028047] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.028091] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.028094] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.028096] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.028100] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.028102] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.028110] e820: update [mem 0x89396000-0x89426fff] System RAM ==> device reserved
[    0.028120] TSC deadline timer available
[    0.028123] CPU topo: Max. logical packages:   1
[    0.028124] CPU topo: Max. logical nodes:      1
[    0.028125] CPU topo: Num. nodes per package:  1
[    0.028127] CPU topo: Max. logical dies:       1
[    0.028128] CPU topo: Max. dies per package:   1
[    0.028131] CPU topo: Max. threads per core:   2
[    0.028132] CPU topo: Num. cores per package:    12
[    0.028133] CPU topo: Num. threads per package:  16
[    0.028133] CPU topo: Allowing 16 present CPUs plus 0 hotplug CPUs
[    0.028148] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.028150] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    0.028152] PM: hibernation: Registered nosave memory: [mem 0x89396000-0x89426fff]
[    0.028154] PM: hibernation: Registered nosave memory: [mem 0x8a16e000-0x8a16efff]
[    0.028155] PM: hibernation: Registered nosave memory: [mem 0x8e36f000-0x93ffefff]
[    0.028157] PM: hibernation: Registered nosave memory: [mem 0x94000000-0xffffffff]
[    0.028158] [gap 0xa0800000-0xfed1ffff] available for PCI devices
[    0.028160] Booting paravirtualized kernel on bare hardware
[    0.028162] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.035706] Zone ranges:
[    0.035707]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.035709]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.035711]   Normal   [mem 0x0000000100000000-0x0000000a5f7fffff]
[    0.035712]   Device   empty
[    0.035713] Movable zone start for each node
[    0.035715] Early memory node ranges
[    0.035716]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.035717]   node   0: [mem 0x0000000000100000-0x000000008e36efff]
[    0.035718]   node   0: [mem 0x0000000093fff000-0x0000000093ffffff]
[    0.035719]   node   0: [mem 0x0000000100000000-0x0000000a5f7fffff]
[    0.035723] Initmem setup node 0 [mem 0x0000000000001000-0x0000000a5f7fffff]
[    0.035730] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.035753] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.039235] On node 0, zone DMA32: 23696 pages in unavailable ranges
[    0.039609] On node 0, zone Normal: 16384 pages in unavailable ranges
[    0.039623] On node 0, zone Normal: 2048 pages in unavailable ranges
[    0.039633] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
[    0.040251] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    0.040258] pcpu-alloc: s217088 r8192 d28672 u262144 alloc=1*2097152
[    0.040260] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.040285] Kernel command line: BOOT_IMAGE=/vmlinuz-7.1.0-rc5-drm-tip root=/dev/mapper/debian--t14--gen1--fuhrysteve--vg-root ro snd-intel-dspcfg.dsp_driver=1 drm.debug=0x10e log_buf_len=16M ignore_loglevel
[    0.046303] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear)
[    0.049248] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.049475] software IO TLB: area num 16.
[    0.061360] Fallback order for Node 0: 0 
[    0.061367] Built 1 zonelists, mobility grouping on.  Total pages: 10410766
[    0.061368] Policy zone: Normal
[    0.061377] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[    0.073345] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[    0.080552] ftrace: allocating 47538 entries in 188 pages
[    0.080554] ftrace: allocated 188 pages with 5 groups
[    0.081025] Dynamic Preempt: lazy
[    0.081109] rcu: Preemptible hierarchical RCU implementation.
[    0.081110] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
[    0.081112] 	Trampoline variant of Tasks RCU enabled.
[    0.081113] 	Rude variant of Tasks RCU enabled.
[    0.081113] 	Tracing variant of Tasks RCU enabled.
[    0.081114] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.081115] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
[    0.081127] RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
[    0.081130] RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
[    0.087207] NR_IRQS: 524544, nr_irqs: 2184, preallocated irqs: 16
[    0.087589] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.088035] Console: colour dummy device 80x25
[    0.088038] printk: legacy console [tty0] enabled
[    0.088385] ACPI: Core revision 20251212
[    0.088725] hpet: HPET dysfunctional in PC10. Force disabled.
[    0.088815] APIC: Switch to symmetric I/O mode setup
[    0.088819] DMAR: Host address width 39
[    0.088821] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.088828] DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
[    0.088833] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.088839] DMAR: dmar1: reg_base_addr fed91000 ver 5:0 cap d2008c40660462 ecap f050da
[    0.088843] DMAR: RMRR base: 0x0000009c000000 end: 0x000000a07fffff
[    0.088847] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
[    0.088851] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.088853] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.092915] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.092920] x2apic enabled
[    0.093007] APIC: Switched APIC routing to: cluster x2apic
[    0.104407] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x23fa772cf26, max_idle_ns: 440795269835 ns
[    0.104417] Calibrating delay loop (skipped), value calculated using timer frequency.. 4992.00 BogoMIPS (lpj=9984000)
[    0.104495] CPU0: Thermal monitoring enabled (TM1)
[    0.104498] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.104641] CET detected: Indirect Branch Tracking enabled
[    0.104644] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.104646] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.104660] process: using mwait in idle threads
[    0.104665] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
[    0.104672] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.104676] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[    0.104678] Register File Data Sampling: Mitigation: Clear Register File
[    0.104681] VMSCAPE: Mitigation: IBPB before exit to userspace
[    0.104683] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.104686] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[    0.104690] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.104706] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.104710] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.104712] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.104715] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.104718] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    0.104720] x86/fpu: Supporting XSAVE feature 0x1000: 'Control-flow Kernel registers (KVM only)'
[    0.104724] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.104727] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    0.104729] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    0.104732] x86/fpu: xstate_offset[12]:  856, xstate_sizes[12]:   24
[    0.104735] x86/fpu: Enabled xstate features 0x1a07, context size is 880 bytes, using 'compacted' format.
[    0.108414] pid_max: default: 32768 minimum: 301
[    0.108414] landlock: Up and running.
[    0.108414] Yama: becoming mindful.
[    0.108414] AppArmor: AppArmor initialized
[    0.108414] TOMOYO Linux initialized
[    0.108414] LSM support for eBPF active
[    0.108414] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.108414] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.108414] VFS: Finished mounting rootfs on nullfs
[    0.108414] smpboot: CPU0: 12th Gen Intel(R) Core(TM) i7-1260P (family: 0x6, model: 0x9a, stepping: 0x3)
[    0.108414] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline,  AnyThread deprecated, Alderlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.108414] core: cpu_core PMU driver: 
[    0.108414] ... version:                   5
[    0.108414] ... bit width:                 48
[    0.108414] ... generic counters:          8
[    0.108414] ... generic bitmap:            00000000000000ff
[    0.108414] ... fixed-purpose counters:    4
[    0.108414] ... fixed-purpose bitmap:      000000000000000f
[    0.108414] ... value mask:                0000ffffffffffff
[    0.108414] ... max period:                00007fffffffffff
[    0.108414] ... global_ctrl mask:          0001000f000000ff
[    0.108414] signal: max sigframe size: 3632
[    0.108414] Estimated ratio of average max frequency by base frequency (times 1024): 1556
[    0.108414] rcu: Hierarchical SRCU implementation.
[    0.108414] rcu: 	Max phase no-delay instances is 1000.
[    0.108414] Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
[    0.108414] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.108414] smp: Bringing up secondary CPUs ...
[    0.108414] smpboot: x86: Booting SMP configuration:
[    0.108414] .... node  #0, CPUs:        #2  #4  #6  #8  #9 #10 #11 #12 #13 #14 #15
[    0.020446] core: cpu_atom PMU driver: 
[    0.020446] ... version:                   5
[    0.020446] ... bit width:                 48
[    0.020446] ... generic counters:          6
[    0.020446] ... generic bitmap:            000000000000003f
[    0.020446] ... fixed-purpose counters:    3
[    0.020446] ... fixed-purpose bitmap:      0000000000000007
[    0.020446] ... value mask:                0000ffffffffffff
[    0.020446] ... max period:                00007fffffffffff
[    0.020446] ... global_ctrl mask:          000000070000003f
[    0.112516]   #1  #3  #5  #7
[    0.118339] smp: Brought up 1 node, 16 CPUs
[    0.118339] smpboot: Total of 16 processors activated (79872.00 BogoMIPS)
[    0.171036] node 0 deferred pages initialised in 48ms
[    0.171036] Memory: 40397164K/41643064K available (16402K kernel code, 2595K rwdata, 12548K rodata, 4380K init, 4276K bss, 1225996K reserved, 0K cma-reserved)
[    0.172504] devtmpfs: initialized
[    0.172504] x86/mm: Memory block size: 128MB
[    0.175953] ACPI: PM: Registering ACPI NVS region [mem 0x9332f000-0x93f2efff] (12582912 bytes)
[    0.175953] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.175953] posixtimers hash table entries: 8192 (order: 5, 131072 bytes, linear)
[    0.175953] futex hash table entries: 4096 (262144 bytes on 1 NUMA nodes, total 256 KiB, linear).
[    0.177176] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.177820] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.178231] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.178639] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.178650] audit: initializing netlink subsys (disabled)
[    0.178658] audit: type=2000 audit(1780575368.072:1): state=initialized audit_enabled=0 res=1
[    0.178658] thermal_sys: Registered thermal governor 'fair_share'
[    0.178658] thermal_sys: Registered thermal governor 'bang_bang'
[    0.178658] thermal_sys: Registered thermal governor 'step_wise'
[    0.178658] thermal_sys: Registered thermal governor 'user_space'
[    0.178658] thermal_sys: Registered thermal governor 'power_allocator'
[    0.178658] cpuidle: using governor ladder
[    0.178658] cpuidle: using governor menu
[    0.178658] Freeing SMP alternatives memory: 44K
[    0.184313] efi: Freeing EFI boot services memory: 117744K
[    0.184318] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.184878] PCI: ECAM [mem 0xc0000000-0xcfffffff] (base 0xc0000000) for domain 0000 [bus 00-ff]
[    0.184898] PCI: Using configuration type 1 for base access
[    0.184974] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.184974] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.184974] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.184974] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.184974] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.184993] ACPI: Added _OSI(Module Device)
[    0.184997] ACPI: Added _OSI(Processor Device)
[    0.184999] ACPI: Added _OSI(Processor Aggregator Device)
[    0.325466] ACPI: 17 ACPI AML tables successfully acquired and loaded
[    0.326755] ACPI: EC: EC started
[    0.326758] ACPI: EC: interrupt blocked
[    0.327524] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.327527] ACPI: EC: Boot ECDT EC used to handle transactions
[    0.329557] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.364546] ACPI: \_SB_: platform _OSC: OS support mask [002e7eff]
[    0.368419] ACPI: \_SB_: platform _OSC: OS control mask [002e7eff]
[    0.369095] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
[    0.369098] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
[    0.369663] ACPI: Dynamic OEM Table Load:
[    0.369675] ACPI: SSDT 0xFFFF8C0581E13400 000394 (v02 PmRef  Cpu0Cst  00003001 INTL 20200717)
[    0.370613] ACPI: Dynamic OEM Table Load:
[    0.370620] ACPI: SSDT 0xFFFF8C0582905000 0005E4 (v02 PmRef  Cpu0Ist  00003000 INTL 20200717)
[    0.371545] ACPI: Dynamic OEM Table Load:
[    0.371551] ACPI: SSDT 0xFFFF8C058198C000 0001AB (v02 PmRef  Cpu0Psd  00003000 INTL 20200717)
[    0.372423] ACPI: Dynamic OEM Table Load:
[    0.372430] ACPI: SSDT 0xFFFF8C0582902000 0004BA (v02 PmRef  Cpu0Hwp  00003000 INTL 20200717)
[    0.376435] ACPI: Dynamic OEM Table Load:
[    0.376435] ACPI: SSDT 0xFFFF8C058141C000 001BAF (v02 PmRef  ApIst    00003000 INTL 20200717)
[    0.376435] ACPI: Dynamic OEM Table Load:
[    0.376435] ACPI: SSDT 0xFFFF8C0581418000 001038 (v02 PmRef  ApHwp    00003000 INTL 20200717)
[    0.376435] ACPI: Dynamic OEM Table Load:
[    0.376435] ACPI: SSDT 0xFFFF8C058291E000 001349 (v02 PmRef  ApPsd    00003000 INTL 20200717)
[    0.377452] ACPI: Dynamic OEM Table Load:
[    0.377461] ACPI: SSDT 0xFFFF8C058290A000 000FBB (v02 PmRef  ApCst    00003000 INTL 20200717)
[    0.383541] ACPI: Interpreter enabled
[    0.383600] ACPI: PM: (supports S0 S4 S5)
[    0.383602] ACPI: Using IOAPIC for interrupt routing
[    0.383646] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.383649] PCI: Ignoring E820 reservations for host bridge windows
[    0.384123] ACPI: Enabled 10 GPEs in block 00 to 7F
[    0.385041] ACPI: \_SB_.PC00.PEG0.PXP_: New power resource
[    0.388618] ACPI: \_SB_.PC00.LPCB.EC__.PUBS: New power resource
[    0.390941] ACPI: \_SB_.PC00.XHCI.RHUB.HS02.WWPR: New power resource
[    0.391519] ACPI: \_SB_.PC00.XHCI.RHUB.HS10.BTRT: New power resource
[    0.394829] ACPI: \_SB_.PC00.CNVW.WRST: New power resource
[    0.395013] ACPI: \_SB_.PC00.RP01.PXP_: New power resource
[    0.405861] ACPI: \_SB_.PC00.TBT0: New power resource
[    0.406195] ACPI: \_SB_.PC00.TBT1: New power resource
[    0.406519] ACPI: \_SB_.PC00.D3C_: New power resource
[    0.692435] ACPI: \PIN_: New power resource
[    0.692435] ACPI: \PINP: New power resource
[    0.692435] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-fe])
[    0.692435] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.692528] acpi PNP0A08:00: _OSC: platform does not support [AER]
[    0.695700] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR]
[    0.699708] PCI host bridge to bus 0000:00
[    0.699713] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.699716] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.699719] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.699721] pci_bus 0000:00: root bus resource [mem 0xa0800000-0xbfffffff window]
[    0.699724] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[    0.699727] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.700071] pci 0000:00:00.0: [8086:4621] type 00 class 0x060000 conventional PCI endpoint
[    0.700358] pci 0000:00:02.0: [8086:46a6] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
[    0.700377] pci 0000:00:02.0: BAR 0 [mem 0x603c000000-0x603cffffff 64bit]
[    0.700381] pci 0000:00:02.0: BAR 2 [mem 0x4000000000-0x400fffffff 64bit pref]
[    0.700384] pci 0000:00:02.0: BAR 4 [io  0x2000-0x203f]
[    0.700395] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
[    0.700399] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.704416] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x00ffffff 64bit]
[    0.704416] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x06ffffff 64bit]: contains BAR 0 for 7 VFs
[    0.704416] pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0x1fffffff 64bit pref]
[    0.704416] pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0xdfffffff 64bit pref]: contains BAR 2 for 7 VFs
[    0.704422] pci 0000:00:04.0: [8086:461d] type 00 class 0x118000 conventional PCI endpoint
[    0.704422] pci 0000:00:04.0: BAR 0 [mem 0x603d180000-0x603d19ffff 64bit]
[    0.704422] pci 0000:00:06.0: [8086:464d] type 01 class 0x060400 PCIe Root Port
[    0.704422] pci 0000:00:06.0: PCI bridge to [bus 02]
[    0.704422] pci 0000:00:06.0:   bridge window [mem 0xbc200000-0xbc2fffff]
[    0.704422] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[    0.704422] pci 0000:00:07.0: [8086:466e] type 01 class 0x060400 PCIe Root Port
[    0.704422] pci 0000:00:07.0: PCI bridge to [bus 20-49]
[    0.704422] pci 0000:00:07.0:   bridge window [mem 0xb0000000-0xbc1fffff]
[    0.704422] pci 0000:00:07.0:   bridge window [mem 0x6000000000-0x601bffffff 64bit pref]
[    0.704422] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[    0.704422] pci 0000:00:07.2: [8086:462f] type 01 class 0x060400 PCIe Root Port
[    0.704422] pci 0000:00:07.2: PCI bridge to [bus 50-79]
[    0.704422] pci 0000:00:07.2:   bridge window [mem 0xa2000000-0xae1fffff]
[    0.704422] pci 0000:00:07.2:   bridge window [mem 0x6020000000-0x603bffffff 64bit pref]
[    0.704422] pci 0000:00:07.2: PME# supported from D0 D3hot D3cold
[    0.705535] pci 0000:00:0a.0: [8086:467d] type 00 class 0x118000 PCIe Root Complex Integrated Endpoint
[    0.705553] pci 0000:00:0a.0: BAR 0 [mem 0x603d1c0000-0x603d1c7fff 64bit]
[    0.705561] pci 0000:00:0a.0: enabling Extended Tags
[    0.705676] pci 0000:00:0d.0: [8086:461e] type 00 class 0x0c0330 conventional PCI endpoint
[    0.705699] pci 0000:00:0d.0: BAR 0 [mem 0x603d1b0000-0x603d1bffff 64bit]
[    0.705726] pci 0000:00:0d.0: PME# supported from D3hot D3cold
[    0.707464] pci 0000:00:0d.2: [8086:463e] type 00 class 0x0c0340 conventional PCI endpoint
[    0.707487] pci 0000:00:0d.2: BAR 0 [mem 0x603d140000-0x603d17ffff 64bit]
[    0.707490] pci 0000:00:0d.2: BAR 2 [mem 0x603d1d9000-0x603d1d9fff 64bit]
[    0.707514] pci 0000:00:0d.2: supports D1 D2
[    0.707516] pci 0000:00:0d.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.707605] pci 0000:00:0d.3: [8086:466d] type 00 class 0x0c0340 conventional PCI endpoint
[    0.707627] pci 0000:00:0d.3: BAR 0 [mem 0x603d100000-0x603d13ffff 64bit]
[    0.707631] pci 0000:00:0d.3: BAR 2 [mem 0x603d1d8000-0x603d1d8fff 64bit]
[    0.707654] pci 0000:00:0d.3: supports D1 D2
[    0.707656] pci 0000:00:0d.3: PME# supported from D0 D1 D2 D3hot D3cold
[    0.707896] pci 0000:00:14.0: [8086:51ed] type 00 class 0x0c0330 conventional PCI endpoint
[    0.707957] pci 0000:00:14.0: BAR 0 [mem 0x603d1a0000-0x603d1affff 64bit]
[    0.708025] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.709805] pci 0000:00:14.2: [8086:51ef] type 00 class 0x050000 conventional PCI endpoint
[    0.709870] pci 0000:00:14.2: BAR 0 [mem 0x603d1d0000-0x603d1d3fff 64bit]
[    0.709877] pci 0000:00:14.2: BAR 2 [mem 0x603d1d7000-0x603d1d7fff 64bit]
[    0.710088] pci 0000:00:14.3: [8086:51f0] type 00 class 0x028000 PCIe Root Complex Integrated Endpoint
[    0.710179] pci 0000:00:14.3: BAR 0 [mem 0x603d1cc000-0x603d1cffff 64bit]
[    0.710339] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
[    0.711149] pci 0000:00:15.0: [8086:51e8] type 00 class 0x0c8000 conventional PCI endpoint
[    0.712950] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[    0.728780] pci 0000:00:16.0: [8086:51e0] type 00 class 0x078000 conventional PCI endpoint
[    0.728844] pci 0000:00:16.0: BAR 0 [mem 0x603d1d5000-0x603d1d5fff 64bit]
[    0.728914] pci 0000:00:16.0: PME# supported from D3hot
[    0.729352] pci 0000:00:1f.0: [8086:5182] type 00 class 0x060100 conventional PCI endpoint
[    0.729748] pci 0000:00:1f.3: [8086:51c8] type 00 class 0x040380 conventional PCI endpoint
[    0.729918] pci 0000:00:1f.3: BAR 0 [mem 0x603d1c8000-0x603d1cbfff 64bit]
[    0.729935] pci 0000:00:1f.3: BAR 4 [mem 0x603d000000-0x603d0fffff 64bit]
[    0.730079] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.730368] pci 0000:00:1f.4: [8086:51a3] type 00 class 0x0c0500 conventional PCI endpoint
[    0.730437] pci 0000:00:1f.4: BAR 0 [mem 0x603d1d4000-0x603d1d40ff 64bit]
[    0.730451] pci 0000:00:1f.4: BAR 4 [io  0xefa0-0xefbf]
[    0.730714] pci 0000:00:1f.5: [8086:51a4] type 00 class 0x0c8000 conventional PCI endpoint
[    0.730784] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[    0.730907] pci 0000:00:1f.6: [8086:1a1f] type 00 class 0x020000 conventional PCI endpoint
[    0.731065] pci 0000:00:1f.6: BAR 0 [mem 0xbc300000-0xbc31ffff]
[    0.731208] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
[    0.732240] pci 0000:02:00.0: [144d:a809] type 00 class 0x010802 PCIe Endpoint
[    0.732276] pci 0000:02:00.0: BAR 0 [mem 0xbc200000-0xbc203fff 64bit]
[    0.732488] pci 0000:00:06.0: PCI bridge to [bus 02]
[    0.732525] pci 0000:00:07.0: PCI bridge to [bus 20-49]
[    0.732559] pci 0000:00:07.2: PCI bridge to [bus 50-79]
[    0.741328] ACPI: \_SB_.PEPD: Duplicate LPS0 _DSM functions (mask: 0x79)
[    0.741333] Low-power S0 idle used by default for system suspend
[    0.743282] ACPI: EC: interrupt unblocked
[    0.743285] ACPI: EC: event unblocked
[    0.743316] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.743318] ACPI: EC: GPE=0x6e
[    0.743320] ACPI: \_SB_.PC00.LPCB.EC__: Boot ECDT EC initialization complete
[    0.743322] ACPI: \_SB_.PC00.LPCB.EC__: EC: Used to handle transactions and events
[    0.743399] iommu: Default domain type: Translated
[    0.743399] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.743399] pps_core: LinuxPPS API ver. 1 registered
[    0.743399] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.743399] PTP clock support registered
[    0.743399] EDAC MC: Ver: 3.0.0
[    0.744624] efivars: Registered efivars operations
[    0.744679] NetLabel: Initializing
[    0.744681] NetLabel:  domain hash size = 128
[    0.744683] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.744701] NetLabel:  unlabeled traffic allowed by default
[    0.744706] PCI: Using ACPI for IRQ routing
[    0.820741] PCI: pci_cache_line_size set to 64 bytes
[    0.821584] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
[    0.822420] e820: register RAM buffer resource [mem 0x0009f000-0x0009ffff]
[    0.822422] e820: register RAM buffer resource [mem 0x89396000-0x8bffffff]
[    0.822424] e820: register RAM buffer resource [mem 0x8a16e000-0x8bffffff]
[    0.822426] e820: register RAM buffer resource [mem 0x8e36f000-0x8fffffff]
[    0.822428] e820: register RAM buffer resource [mem 0xa5f800000-0xa5fffffff]
[    0.822454] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.822454] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.822454] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=mem,locks=none
[    0.822454] vgaarb: loaded
[    0.822454] clocksource: Switched to clocksource tsc-early
[    0.822454] VFS: Disk quotas dquot_6.6.0
[    0.822454] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.822454] AppArmor: AppArmor Filesystem Enabled
[    0.822454] acpi PNP0C02:00: Skipped [io  0x002e-0x002f]
[    0.822454] acpi PNP0C02:00: Skipped [io  0x004e-0x004f]
[    0.822454] acpi PNP0C02:00: Skipped [io  0x0061]
[    0.822454] acpi PNP0C02:00: Skipped [io  0x0063]
[    0.822454] acpi PNP0C02:00: Skipped [io  0x0065]
[    0.822454] acpi PNP0C02:00: Skipped [io  0x0067]
[    0.822454] acpi PNP0C02:00: Skipped [io  0x0070]
[    0.822454] acpi PNP0C02:00: Skipped [io  0x0080]
[    0.822454] acpi PNP0C02:00: Skipped [io  0x0092]
[    0.822454] acpi PNP0C02:00: Skipped [io  0x00b2-0x00b3]
[    0.822454] acpi PNP0C02:00: Reserved [io  0x0680-0x069f]
[    0.822454] acpi PNP0C02:00: Reserved [io  0x164e-0x164f]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x0010-0x001f]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x0090-0x009f]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x0024-0x0025]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x0028-0x0029]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x002c-0x002d]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x0030-0x0031]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x0034-0x0035]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x0038-0x0039]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x003c-0x003d]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x00a4-0x00a5]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x00a8-0x00a9]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x00ac-0x00ad]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x00b0-0x00b5]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x00b8-0x00b9]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x00bc-0x00bd]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x0050-0x0053]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x0072-0x0077]
[    0.822454] acpi PNP0C02:01: Could not reserve [io  0x1800-0x189f]
[    0.822454] acpi PNP0C02:01: Reserved [io  0x0800-0x087f]
[    0.822454] acpi PNP0C02:01: Reserved [io  0x0880-0x08ff]
[    0.822454] acpi PNP0C02:01: Reserved [io  0x0900-0x097f]
[    0.822454] acpi PNP0C02:01: Reserved [io  0x0980-0x09ff]
[    0.822454] acpi PNP0C02:01: Reserved [io  0x0a00-0x0a7f]
[    0.822454] acpi PNP0C02:01: Reserved [io  0x0a80-0x0aff]
[    0.822454] acpi PNP0C02:01: Reserved [io  0x0b00-0x0b7f]
[    0.822454] acpi PNP0C02:01: Reserved [io  0x0b80-0x0bff]
[    0.822454] acpi PNP0C02:01: Reserved [io  0x15e0-0x15ef]
[    0.822454] acpi PNP0C02:01: Could not reserve [io  0x1600-0x167f]
[    0.822454] acpi PNP0C02:01: Could not reserve [io  0x1640-0x165f]
[    0.822454] acpi PNP0C02:01: Reserved [mem 0xc0000000-0xcfffffff]
[    0.822454] acpi PNP0C02:01: Reserved [mem 0xfed10000-0xfed13fff]
[    0.822454] acpi PNP0C02:01: Reserved [mem 0xfed18000-0xfed18fff]
[    0.822454] acpi PNP0C02:01: Reserved [mem 0xfed19000-0xfed19fff]
[    0.822454] acpi PNP0C02:01: Reserved [mem 0xfeb00000-0xfebfffff]
[    0.822454] acpi PNP0C02:01: Reserved [mem 0xfed20000-0xfed3ffff]
[    0.822454] acpi PNP0C02:01: Could not reserve [mem 0xfed90000-0xfed93fff]
[    0.822454] acpi PNP0C02:02: Reserved [mem 0xfedc0000-0xfedc7fff]
[    0.822454] acpi PNP0C02:02: Reserved [mem 0xfeda0000-0xfeda0fff]
[    0.822454] acpi PNP0C02:02: Reserved [mem 0xfeda1000-0xfeda1fff]
[    0.822454] acpi PNP0C02:02: Reserved [mem 0xc0000000-0xcfffffff]
[    0.822454] acpi PNP0C02:02: Could not reserve [mem 0xfed20000-0xfed7ffff]
[    0.822454] acpi PNP0C02:02: Could not reserve [mem 0xfed90000-0xfed93fff]
[    0.822454] acpi PNP0C02:02: Could not reserve [mem 0xfed45000-0xfed8ffff]
[    0.822454] acpi PNP0C02:02: Reserved [mem 0xfee00000-0xfeefffff]
[    0.822454] acpi PNP0C02:03: Reserved [mem 0xfe000000-0xfe01ffff]
[    0.822454] acpi PNP0C02:03: Reserved [mem 0xfe04c000-0xfe04ffff]
[    0.822454] acpi PNP0C02:03: Reserved [mem 0xfe050000-0xfe0affff]
[    0.822454] acpi PNP0C02:03: Reserved [mem 0xfe0d0000-0xfe0fffff]
[    0.822454] acpi PNP0C02:03: Reserved [mem 0xfe200000-0xfe7fffff]
[    0.822454] acpi PNP0C02:03: Reserved [mem 0xff000000-0xffffffff]
[    0.822454] acpi PNP0C02:03: Could not reserve [io  0x1800-0x18fe]
[    0.822454] acpi PNP0C02:03: Reserved [mem 0xfd000000-0xfd68ffff]
[    0.822454] acpi PNP0C02:03: Reserved [mem 0xfd6b0000-0xfd6cffff]
[    0.822454] acpi PNP0C02:03: Reserved [mem 0xfd6f0000-0xfdffffff]
[    0.822454] acpi PNP0C02:04: Reserved [io  0xff00-0xfffe]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0x00000000-0x0009ffff]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0x000c0000-0x000c3fff]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0x000c8000-0x000cbfff]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0x000d0000-0x000d3fff]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0x000d8000-0x000dbfff]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0x000e0000-0x000e3fff]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0x000e8000-0x000ebfff]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0x000f0000-0x000fffff]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0x00100000-0xa07fffff]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0xfec00000-0xfed3ffff]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0xfed4c000-0xffffffff]
[    0.822454] pnp: PnP ACPI init
[    0.827182] pnp: PnP ACPI: found 2 devices
[    0.832691] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.832755] NET: Registered PF_INET protocol family
[    0.832990] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.845226] tcp_listen_portaddr_hash hash table entries: 32768 (order: 7, 524288 bytes, linear)
[    0.845274] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.845620] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.846164] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.846298] TCP: Hash tables configured (established 524288 bind 65536)
[    0.846576] MPTCP token hash table entries: 65536 (order: 9, 1572864 bytes, linear)
[    0.846836] UDP hash table entries: 32768 (order: 9, 2097152 bytes, linear)
[    0.847029] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.847037] NET: Registered PF_XDP protocol family
[    0.847045] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    0.847056] pci 0000:00:02.0: VF BAR 2 [mem 0x4020000000-0x40ffffffff 64bit pref]: assigned
[    0.847062] pci 0000:00:02.0: VF BAR 0 [mem 0x4010000000-0x4016ffffff 64bit]: assigned
[    0.847067] pci 0000:00:07.0: bridge window [io  0x3000-0x3fff]: assigned
[    0.847070] pci 0000:00:07.2: bridge window [io  0x4000-0x4fff]: assigned
[    0.847073] pci 0000:00:15.0: BAR 0 [mem 0x4017000000-0x4017000fff 64bit]: assigned
[    0.847122] pci 0000:00:1f.5: BAR 0 [mem 0xa0800000-0xa0800fff]: assigned
[    0.847139] pci 0000:00:06.0: PCI bridge to [bus 02]
[    0.847165] pci 0000:00:06.0:   bridge window [mem 0xbc200000-0xbc2fffff]
[    0.847199] pci 0000:00:07.0: PCI bridge to [bus 20-49]
[    0.847202] pci 0000:00:07.0:   bridge window [io  0x3000-0x3fff]
[    0.847205] pci 0000:00:07.0:   bridge window [mem 0xb0000000-0xbc1fffff]
[    0.847208] pci 0000:00:07.0:   bridge window [mem 0x6000000000-0x601bffffff 64bit pref]
[    0.847213] pci 0000:00:07.2: PCI bridge to [bus 50-79]
[    0.847215] pci 0000:00:07.2:   bridge window [io  0x4000-0x4fff]
[    0.847219] pci 0000:00:07.2:   bridge window [mem 0xa2000000-0xae1fffff]
[    0.847222] pci 0000:00:07.2:   bridge window [mem 0x6020000000-0x603bffffff 64bit pref]
[    0.847227] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.847229] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.847231] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.847233] pci_bus 0000:00: resource 7 [mem 0xa0800000-0xbfffffff window]
[    0.847235] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
[    0.847237] pci_bus 0000:02: resource 1 [mem 0xbc200000-0xbc2fffff]
[    0.847239] pci_bus 0000:20: resource 0 [io  0x3000-0x3fff]
[    0.847241] pci_bus 0000:20: resource 1 [mem 0xb0000000-0xbc1fffff]
[    0.847243] pci_bus 0000:20: resource 2 [mem 0x6000000000-0x601bffffff 64bit pref]
[    0.847245] pci_bus 0000:50: resource 0 [io  0x4000-0x4fff]
[    0.847247] pci_bus 0000:50: resource 1 [mem 0xa2000000-0xae1fffff]
[    0.847249] pci_bus 0000:50: resource 2 [mem 0x6020000000-0x603bffffff 64bit pref]
[    0.848517] PCI: CLS 0 bytes, default 64
[    0.848601] DMAR: Intel-IOMMU force enabled due to platform opt in
[    0.848607] DMAR: No ATSR found
[    0.848608] DMAR: No SATC found
[    0.848610] DMAR: dmar0: Using Queued invalidation
[    0.848613] DMAR: dmar1: Using Queued invalidation
[    0.848904] Trying to unpack rootfs image as initramfs...
[    0.848914] pci 0000:00:02.0: Adding to iommu group 0
[    0.848973] pci 0000:00:00.0: Adding to iommu group 1
[    0.848981] pci 0000:00:04.0: Adding to iommu group 2
[    0.849040] pci 0000:00:06.0: Adding to iommu group 3
[    0.849049] pci 0000:00:07.0: Adding to iommu group 4
[    0.849060] pci 0000:00:07.2: Adding to iommu group 5
[    0.849068] pci 0000:00:0a.0: Adding to iommu group 6
[    0.849082] pci 0000:00:0d.0: Adding to iommu group 7
[    0.849089] pci 0000:00:0d.2: Adding to iommu group 7
[    0.849096] pci 0000:00:0d.3: Adding to iommu group 7
[    0.849112] pci 0000:00:14.0: Adding to iommu group 8
[    0.849119] pci 0000:00:14.2: Adding to iommu group 8
[    0.849127] pci 0000:00:14.3: Adding to iommu group 9
[    0.849136] pci 0000:00:15.0: Adding to iommu group 10
[    0.849147] pci 0000:00:16.0: Adding to iommu group 11
[    0.849165] pci 0000:00:1f.0: Adding to iommu group 12
[    0.849173] pci 0000:00:1f.3: Adding to iommu group 12
[    0.849181] pci 0000:00:1f.4: Adding to iommu group 12
[    0.849188] pci 0000:00:1f.5: Adding to iommu group 12
[    0.849197] pci 0000:00:1f.6: Adding to iommu group 12
[    0.849227] pci 0000:02:00.0: Adding to iommu group 13
[    0.849421] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    0.849423] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.849425] software IO TLB: mapped [mem 0x0000000085396000-0x0000000089396000] (64MB)
[    0.849465] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x23fa772cf26, max_idle_ns: 440795269835 ns
[    0.850037] clocksource: Switched to clocksource tsc
[    0.850075] platform rtc_cmos: registered fallback platform RTC device
[    0.852381] Initialise system trusted keyrings
[    0.852397] Key type blacklist registered
[    0.852629] workingset: timestamp_bits=36 (anon: 32) max_order=24 bucket_order=0 (anon: 0)
[    0.852809] fuse: init (API version 7.45)
[    0.853671] integrity: Platform Keyring initialized
[    0.853679] integrity: Machine keyring initialized
[    0.861236] Key type asymmetric registered
[    0.861240] Asymmetric key parser 'x509' registered
[    0.861271] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    0.861527] io scheduler mq-deadline registered
[    0.871559] ledtrig-cpu: registered to indicate activity on CPUs
[    0.871986] pcieport 0000:00:06.0: PME: Signaling with IRQ 122
[    0.872287] pcieport 0000:00:07.0: PME: Signaling with IRQ 123
[    0.872306] pcieport 0000:00:07.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.872772] pcieport 0000:00:07.2: PME: Signaling with IRQ 124
[    0.872794] pcieport 0000:00:07.2: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.873298] Monitor-Mwait will be used to enter C-1 state
[    0.873317] Monitor-Mwait will be used to enter C-2 state
[    0.873325] Monitor-Mwait will be used to enter C-3 state
[    0.881425] acpi LNXTHERM:00: registered as thermal_zone0
[    0.881432] ACPI: thermal: Thermal Zone [THM0] (47 C)
[    0.881602] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.882393] hpet_acpi_probe: no address or irqs in _CRS
[    0.885109] tpm_tis STM0177:00: 2.0 TPM (device-id 0x0, rev-id 78)
[    0.901035] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[    0.901418] i8042: Warning: Keylock active
[    0.903595] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.903600] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.903718] mousedev: PS/2 mouse device common for all mice
[    0.903745] rtc_cmos rtc_cmos: RTC can wake from S4
[    0.905637] rtc_cmos rtc_cmos: registered as rtc0
[    0.905990] rtc_cmos rtc_cmos: setting system clock to 2026-06-04T12:16:09 UTC (1780575369)
[    0.906024] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
[    0.906726] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    0.908708] intel_pstate: Intel P-state driver initializing
[    0.910777] intel_pstate: HWP enabled
[    0.911039] efifb: probing for efifb
[    0.911049] efifb: framebuffer at 0x4000000000, using 9000k, total 9000k
[    0.911051] efifb: mode is 1920x1200x32, linelength=7680, pages=1
[    0.911054] efifb: scrolling: redraw
[    0.911055] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.912892] Console: switching to colour frame buffer device 240x75
[    0.914530] fb0: EFI VGA frame buffer device
[    0.914718] NET: Registered PF_INET6 protocol family
[    0.915120] Segment Routing with IPv6
[    0.915133] In-situ OAM (IOAM) with IPv6
[    0.915155] mip6: Mobile IPv6
[    0.915162] NET: Registered PF_PACKET protocol family
[    0.915196] mpls_gso: MPLS GSO support
[    0.920112] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.922642] microcode: Current revision: 0x0000043b
[    0.924658] IPI shorthand broadcast: enabled
[    0.925561] sched_clock: Marking stable (908349812, 16446452)->(964221836, -39425572)
[    0.926554] registered taskstats version 1
[    0.926670] Loading compiled-in X.509 certificates
[    0.927249] Loaded X.509 cert 'Build time autogenerated kernel key: 5a60e7241aaebc912e5b763bb2b6721f8f5b5e7f'
[    0.928143] Demotion targets for Node 0: null
[    0.928433] Key type .fscrypt registered
[    0.928438] Key type fscrypt-provisioning registered
[    1.064667] Freeing initrd memory: 149496K
[    1.077645] Key type encrypted registered
[    1.077692] AppArmor: AppArmor sha256 policy hashing enabled
[    1.077702] ima: Allocated hash algorithm: sha256
[    1.108748] ima: No architecture policies found
[    1.108806] evm: Initialising EVM extended attributes:
[    1.108819] evm: security.selinux
[    1.108829] evm: security.SMACK64 (disabled)
[    1.108840] evm: security.SMACK64EXEC (disabled)
[    1.108852] evm: security.SMACK64TRANSMUTE (disabled)
[    1.108864] evm: security.SMACK64MMAP (disabled)
[    1.108875] evm: security.apparmor
[    1.108884] evm: security.ima
[    1.108891] evm: security.capability
[    1.108901] evm: HMAC attrs: 0x1
[    1.110555] integrity: Loading X.509 certificate: UEFI:db
[    1.110626] integrity: Loaded X.509 cert 'Lenovo Ltd.: ThinkPad Product CA 2012: 838b1f54c1550463f45f98700640f11069265949'
[    1.110652] integrity: Loading X.509 certificate: UEFI:db
[    1.110684] integrity: Loaded X.509 cert 'Lenovo UEFI CA 2014: 4b91a68732eaefdd2c8ffffc6b027ec3449e9c8f'
[    1.110704] integrity: Loading X.509 certificate: UEFI:db
[    1.110742] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    1.112581] blacklist: Duplicate blacklisted hash bin:80b4d96931bf0d02fd91a61e19d14f1da452e66db2408ca8604d411f92659f0a
[    1.112616] blacklist: Duplicate blacklisted hash bin:f52f83a3fa9cfbd6920f722824dbe4034534d25b8507246b3b957dac6e1bce7a
[    1.112640] blacklist: Duplicate blacklisted hash bin:c5d9d8a186e2c82d09afaa2a6f7f2e73870d3e64f72c4e08ef67796a840f0fbd
[    1.112663] blacklist: Duplicate blacklisted hash bin:1aec84b84b6c65a51220a9be7181965230210d62d6d33c48999c6b295a2b0a06
[    1.112685] blacklist: Duplicate blacklisted hash bin:c3a99a460da464a057c3586d83cef5f4ae08b7103979ed8932742df0ed530c66
[    1.112708] blacklist: Duplicate blacklisted hash bin:58fb941aef95a25943b3fb5f2510a0df3fe44c58c95e0ab80487297568ab9771
[    1.112731] blacklist: Duplicate blacklisted hash bin:5391c3a2fb112102a6aa1edc25ae77e19f5d6f09cd09eeb2509922bfcd5992ea
[    1.112754] blacklist: Duplicate blacklisted hash bin:d626157e1d6a718bc124ab8da27cbb65072ca03a7b6b257dbdcbbd60f65ef3d1
[    1.112776] blacklist: Duplicate blacklisted hash bin:d063ec28f67eba53f1642dbf7dff33c6a32add869f6013fe162e2c32f1cbe56d
[    1.112801] blacklist: Duplicate blacklisted hash bin:29c6eb52b43c3aa18b2cd8ed6ea8607cef3cfae1bafe1165755cf2e614844a44
[    1.112823] blacklist: Duplicate blacklisted hash bin:90fbe70e69d633408d3e170c6832dbb2d209e0272527dfb63d49d29572a6f44c
[    1.112845] blacklist: Duplicate blacklisted hash bin:106faceacfecfd4e303b74f480a08098e2d0802b936f8ec774ce21f31686689c
[    1.113680] blacklist: Duplicate blacklisted hash bin:174e3a0b5b43c6a607bbd3404f05341e3dcf396267ce94f8b50e2e23a9da920c
[    1.114450] blacklist: Duplicate blacklisted hash bin:2b99cf26422e92fe365fbf4bc30d27086c9ee14b7a6fff44fb2f6b9001699939
[    1.115088] blacklist: Duplicate blacklisted hash bin:2e70916786a6f773511fa7181fab0f1d70b557c6322ea923b2a8d3b92b51af7d
[    1.115634] blacklist: Duplicate blacklisted hash bin:3fce9b9fdf3ef09d5452b0f95ee481c2b7f06d743a737971558e70136ace3e73
[    1.116175] blacklist: Duplicate blacklisted hash bin:47cc086127e2069a86e03a6bef2cd410f8c55a6d6bdb362168c31b2ce32a5adf
[    1.116711] blacklist: Duplicate blacklisted hash bin:71f2906fd222497e54a34662ab2497fcc81020770ff51368e9e3d9bfcbfd6375
[    1.117253] blacklist: Duplicate blacklisted hash bin:82db3bceb4f60843ce9d97c3d187cd9b5941cd3de8100e586f2bda5637575f67
[    1.117764] blacklist: Duplicate blacklisted hash bin:8ad64859f195b5f58dafaa940b6a6167acd67a886e8f469364177221c55945b9
[    1.118277] blacklist: Duplicate blacklisted hash bin:8d8ea289cfe70a1c07ab7365cb28ee51edd33cf2506de888fbadd60ebf80481c
[    1.118800] blacklist: Duplicate blacklisted hash bin:aeebae3151271273ed95aa2e671139ed31a98567303a332298f83709a9d55aa1
[    1.119298] blacklist: Duplicate blacklisted hash bin:c409bdac4775add8db92aa22b5b718fb8c94a1462c1fe9a416b95d8a3388c2fc
[    1.119792] blacklist: Duplicate blacklisted hash bin:c617c1a8b1ee2a811c28b5a81b4c83d7c98b5b0c27281d610207ebe692c2967f
[    1.120285] blacklist: Duplicate blacklisted hash bin:c90f336617b8e7f983975413c997f10b73eb267fd8a10cb9e3bdbfc667abdb8b
[    1.120806] blacklist: Duplicate blacklisted hash bin:64575bd912789a2e14ad56f6341f52af6bf80cf94400785975e9f04e2d64d745
[    1.121291] blacklist: Duplicate blacklisted hash bin:45c7c8ae750acfbb48fc37527d6412dd644daed8913ccd8a24c94d856967df8e
[    1.121883] blacklist: Duplicate blacklisted hash bin:47ff1b63b140b6fc04ed79131331e651da5b2e2f170f5daef4153dc2fbc532b1
[    1.122384] blacklist: Duplicate blacklisted hash bin:5391c3a2fb112102a6aa1edc25ae77e19f5d6f09cd09eeb2509922bfcd5992ea
[    1.122888] blacklist: Duplicate blacklisted hash bin:80b4d96931bf0d02fd91a61e19d14f1da452e66db2408ca8604d411f92659f0a
[    1.123394] blacklist: Duplicate blacklisted hash bin:992d359aa7a5f789d268b94c11b9485a6b1ce64362b0edb4441ccc187c39647b
[    1.123934] blacklist: Duplicate blacklisted hash bin:c452ab846073df5ace25cca64d6b7a09d906308a1a65eb5240e3c4ebcaa9cc0c
[    1.124445] blacklist: Duplicate blacklisted hash bin:e051b788ecbaeda53046c70e6af6058f95222c046157b8c4c1b9c2cfc65f46e5
[    1.125133] RAS: Correctable Errors collector initialized.
[    1.125718] clk: Disabling unused clocks
[    1.126245] PM: genpd: Disabling unused power domains
[    1.131129] Freeing unused decrypted memory: 2036K
[    1.132378] Freeing unused kernel image (initmem) memory: 4380K
[    1.132889] Write protecting the kernel read-only data: 32768k
[    1.134378] Freeing unused kernel image (text/rodata gap) memory: 2028K
[    1.135503] Freeing unused kernel image (rodata/data gap) memory: 1788K
[    1.141150] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.141852] Run /init as init process
[    1.142546]   with arguments:
[    1.143266]     /init
[    1.143910]   with environment:
[    1.144406]     HOME=/
[    1.144926]     TERM=linux
[    1.256389] acpi-fan PNP0C0B:00: Using Microsoft fan extensions
[    1.258760] input: Sleep Button as /devices/platform/PNP0C0E:00/input/input2
[    1.259466] ACPI: button: Sleep Button [SLPB]
[    1.260929] input: Lid Switch as /devices/platform/PNP0C0D:00/input/input3
[    1.262001] ACPI: button: Lid Switch [LID]
[    1.263124] input: Power Button as /devices/platform/PNP0C0C:00/input/input4
[    1.263789] ACPI: button: Power Button [PWRB]
[    1.274595] e1000e: Intel(R) PRO/1000 Network Driver
[    1.275123] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.275941] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    1.279668] ACPI: bus type thunderbolt registered
[    1.288069] ACPI: battery: Slot [BAT0] (battery present)
[    1.290934] ACPI: bus type drm_connector registered
[    1.292858] Key type psk registered
[    1.296747] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[    1.296775] i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003)
[    1.297886] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    1.298836] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    1.300297] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    1.306096] hid: raw HID events driver (C) Jiri Kosina
[    1.310629] i2c i2c-0: Successfully instantiated SPD at 0x51
[    1.315597] ACPI: bus type USB registered
[    1.316911] usbcore: registered new interface driver usbfs
[    1.318015] usbcore: registered new interface driver hub
[    1.319107] usbcore: registered new device driver usb
[    1.321806] nvme 0000:02:00.0: platform quirk: setting simple suspend
[    1.322369] nvme nvme0: pci function 0000:02:00.0
[    1.338801] nvme nvme0: D3 entry latency set to 8 seconds
[    1.358499] nvme nvme0: passthrough uses implicit buffer lengths
[    1.366297] nvme nvme0: allocated 64 MiB host memory buffer (16 segments).
[    1.416761] nvme nvme0: 12/0/0 default/read/poll queues
[    1.427124]  nvme0n1: p1 p2 p3
[    1.432355] xhci_hcd 0000:00:0d.0: xHCI Host Controller
[    1.432398] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[    1.432984] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 1
[    1.434293] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    1.435676] xhci_hcd 0000:00:0d.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[    1.436142] input: ELAN0676:00 04F3:3195 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-ELAN0676:00/0018:04F3:3195.0001/input/input6
[    1.436455] xhci_hcd 0000:00:0d.0: xHCI Host Controller
[    1.437410] input: ELAN0676:00 04F3:3195 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-ELAN0676:00/0018:04F3:3195.0001/input/input8
[    1.437663] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 2
[    1.438753] hid-generic 0018:04F3:3195.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0676:00 04F3:3195] on i2c-ELAN0676:00
[    1.439209] xhci_hcd 0000:00:0d.0: Host supports USB 3.2 Enhanced SuperSpeed
[    1.440915] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 7.01
[    1.441921] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.442900] usb usb1: Product: xHCI Host Controller
[    1.443877] usb usb1: Manufacturer: Linux 7.1.0-rc5-drm-tip xhci-hcd
[    1.444905] usb usb1: SerialNumber: 0000:00:0d.0
[    1.445581] hub 1-0:1.0: USB hub found
[    1.446584] hub 1-0:1.0: 1 port detected
[    1.448013] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 7.01
[    1.449022] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.449554] usb usb2: Product: xHCI Host Controller
[    1.450054] usb usb2: Manufacturer: Linux 7.1.0-rc5-drm-tip xhci-hcd
[    1.450568] usb usb2: SerialNumber: 0000:00:0d.0
[    1.451202] hub 2-0:1.0: USB hub found
[    1.452149] hub 2-0:1.0: 3 ports detected
[    1.457847] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.458324] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    1.459915] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000100200009810
[    1.460738] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.461245] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    1.461741] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[    1.462323] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 7.01
[    1.462820] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.463347] usb usb3: Product: xHCI Host Controller
[    1.463837] usb usb3: Manufacturer: Linux 7.1.0-rc5-drm-tip xhci-hcd
[    1.464338] usb usb3: SerialNumber: 0000:00:14.0
[    1.464993] hub 3-0:1.0: USB hub found
[    1.465526] hub 3-0:1.0: 12 ports detected
[    1.467241] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 7.01
[    1.467735] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.468232] usb usb4: Product: xHCI Host Controller
[    1.468770] usb usb4: Manufacturer: Linux 7.1.0-rc5-drm-tip xhci-hcd
[    1.469268] usb usb4: SerialNumber: 0000:00:14.0
[    1.469865] hub 4-0:1.0: USB hub found
[    1.470392] hub 4-0:1.0: 4 ports detected
[    1.499420] input: ELAN0676:00 04F3:3195 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-ELAN0676:00/0018:04F3:3195.0001/input/input9
[    1.500655] input: ELAN0676:00 04F3:3195 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-ELAN0676:00/0018:04F3:3195.0001/input/input11
[    1.501852] hid-multitouch 0018:04F3:3195.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0676:00 04F3:3195] on i2c-ELAN0676:00
[    1.568687] psmouse serio1: trackpoint: Elan TrackPoint firmware: 0x00, buttons: 3/3
[    1.591396] input: TPPS/2 Elan TrackPoint as /devices/platform/i8042/serio1/input/input5
[    1.700418] e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
[    1.716589] usb 3-3: new full-speed USB device number 2 using xhci_hcd
[    1.771087] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) 6c:24:08:b8:57:f0
[    1.771795] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
[    1.772669] e1000e 0000:00:1f.6 eth0: MAC: 15, PHY: 12, PBA No: FFFFFF-0FF
[    1.805245] e1000e 0000:00:1f.6 enp0s31f6: renamed from eth0
[    1.824733] Setting dangerous option enable_psr - tainting kernel
[    1.825638] i915 0000:00:02.0: enabling device (0006 -> 0007)
[    1.826441] i915 0000:00:02.0: [drm] Found alderlake_p (device ID 46a6) integrated display version 13.00 stepping D0
[    1.827228] i915 0000:00:02.0: [drm:intel_gt_common_init_early [i915]] WOPCM: 2048K
[    1.828052] i915 0000:00:02.0: [drm:intel_uc_init_early [i915]] GT0: enable_guc=3 (guc:yes submission:yes huc:yes slpc:yes)
[    1.828745] i915 0000:00:02.0: [drm:intel_pch_type [i915]] Found Alder Lake PCH
[    1.829403] i915 0000:00:02.0: [drm:intel_dmc_wl_init [i915]] Sanitized enable_dmc_wl value: 0 (disabled)
[    1.830114] i915 0000:00:02.0: [drm:intel_gt_probe_all [i915]] GT0: Setting up Primary GT
[    1.830776] i915 0000:00:02.0: [drm:intel_uncore_init_mmio [i915]] unclaimed mmio detected on uncore init, clearing
[    1.831488] i915 0000:00:02.0: [drm:intel_display_device_info_runtime_init [i915]] rawclk rate: 19200 kHz
[    1.832407] i915 0000:00:02.0: [drm:intel_engines_init_mmio [i915]] GT0: vdbox enable: 0005, instances: 0005
[    1.833065] i915 0000:00:02.0: [drm:intel_engines_init_mmio [i915]] GT0: vebox enable: 0001, instances: 0001
[    1.834010] i915 0000:00:02.0: [drm:i915_ggtt_probe_hw [i915]] GGTT size = 4096M
[    1.834744] i915 0000:00:02.0: [drm:i915_ggtt_probe_hw [i915]] GMADR size = 256M
[    1.835406] i915 0000:00:02.0: [drm:i915_ggtt_probe_hw [i915]] DSM size = 64M
[    1.836068] i915 0000:00:02.0: [drm] VT-d active for gfx access
[    1.836703] Console: switching to colour dummy device 80x25
[    1.836720] i915 0000:00:02.0: vgaarb: deactivate vga console
[    1.836774] i915 0000:00:02.0: [drm] Using Transparent Hugepages
[    1.836780] i915 0000:00:02.0: [drm:i915_gem_init_stolen [i915]] GEN6_STOLEN_RESERVED = 0x00000000a0600087
[    1.836915] i915 0000:00:02.0: [drm:i915_gem_init_stolen [i915]] Memory reserved for graphics device: 65536K, usable: 63488K
[    1.837028] i915 0000:00:02.0: [drm:intel_memory_regions_hw_probe [i915]] Memory region(0): system: 39740 MiB [mem 0x00000000-0x9b3ccdfff], io: n/a
[    1.837134] i915 0000:00:02.0: [drm:intel_memory_regions_hw_probe [i915]] Memory region(5): stolen-system: 62 MiB [mem 0x9c800000-0xa05fffff], io: n/a
[    1.837267] i915 0000:00:02.0: [drm:intel_opregion_setup [i915]] graphic opregion physical addr: 0x93e63018
[    1.837394] i915 0000:00:02.0: [drm:intel_opregion_setup [i915]] ACPI OpRegion version 2.1.0
[    1.837494] i915 0000:00:02.0: [drm:intel_opregion_setup [i915]] Public ACPI methods supported
[    1.837585] i915 0000:00:02.0: [drm:intel_opregion_setup [i915]] ASLE supported
[    1.837673] i915 0000:00:02.0: [drm:intel_opregion_setup [i915]] ASLE extension supported
[    1.837756] i915 0000:00:02.0: [drm:intel_opregion_setup [i915]] Found valid VBT in ACPI OpRegion (RVDA)
[    1.837837] i915 0000:00:02.0: [drm:intel_dram_detect [i915]] DRAM type: DDR4
[    1.837963] i915 0000:00:02.0: [drm:intel_dram_detect [i915]] DRAM channels: 2
[    1.838079] i915 0000:00:02.0: [drm:intel_dram_detect [i915]] Num QGV points 4
[    1.838187] i915 0000:00:02.0: [drm:intel_dram_detect [i915]] Num PSF GV points 3
[    1.838308] i915 0000:00:02.0: [drm:icl_get_qgv_points.constprop.0 [i915]] QGV 0: DCLK=2134 tRP=15 tRDPRE=8 tRAS=35 tRCD=15 tRC=50
[    1.838436] i915 0000:00:02.0: [drm:icl_get_qgv_points.constprop.0 [i915]] QGV 1: DCLK=2934 tRP=21 tRDPRE=12 tRAS=47 tRCD=21 tRC=68
[    1.838553] i915 0000:00:02.0: [drm:icl_get_qgv_points.constprop.0 [i915]] QGV 2: DCLK=3201 tRP=22 tRDPRE=12 tRAS=52 tRCD=22 tRC=74
[    1.838670] i915 0000:00:02.0: [drm:icl_get_qgv_points.constprop.0 [i915]] QGV 3: DCLK=2668 tRP=19 tRDPRE=10 tRAS=43 tRCD=19 tRC=62
[    1.838787] i915 0000:00:02.0: [drm:icl_get_qgv_points.constprop.0 [i915]] PSF GV 0: CLK=32
[    1.838899] i915 0000:00:02.0: [drm:icl_get_qgv_points.constprop.0 [i915]] PSF GV 1: CLK=48
[    1.839007] i915 0000:00:02.0: [drm:icl_get_qgv_points.constprop.0 [i915]] PSF GV 2: CLK=48
[    1.839111] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW0 / QGV 0: num_planes=0 deratedbw=9299 peakbw: 34144
[    1.839218] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW0 / QGV 1: num_planes=0 deratedbw=10925 peakbw: 46944
[    1.839331] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW0 / QGV 2: num_planes=0 deratedbw=11707 peakbw: 51216
[    1.839441] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW0 / QGV 3: num_planes=0 deratedbw=10508 peakbw: 42688
[    1.839571] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW0 / PSF GV 0: num_planes=0 bw=34133
[    1.839679] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW0 / PSF GV 1: num_planes=0 bw=51200
[    1.839786] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW0 / PSF GV 2: num_planes=0 bw=51200
[    1.839892] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW1 / QGV 0: num_planes=2 deratedbw=11064 peakbw: 34144
[    1.839996] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW1 / QGV 1: num_planes=2 deratedbw=13813 peakbw: 46944
[    1.840101] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW1 / QGV 2: num_planes=2 deratedbw=14899 peakbw: 51216
[    1.840198] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW1 / QGV 3: num_planes=2 deratedbw=13010 peakbw: 42688
[    1.840295] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW1 / PSF GV 0: num_planes=2 bw=34133
[    1.840404] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW1 / PSF GV 1: num_planes=2 bw=51200
[    1.841393] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW1 / PSF GV 2: num_planes=2 bw=51200
[    1.841507] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW2 / QGV 0: num_planes=0 deratedbw=12225 peakbw: 34144
[    1.841610] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW2 / QGV 1: num_planes=0 deratedbw=15917 peakbw: 46944
[    1.841706] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW2 / QGV 2: num_planes=0 deratedbw=17252 peakbw: 51216
[    1.841805] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW2 / QGV 3: num_planes=0 deratedbw=14768 peakbw: 42688
[    1.841903] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW2 / PSF GV 0: num_planes=0 bw=34133
[    1.841997] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW2 / PSF GV 1: num_planes=0 bw=51200
[    1.842089] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW2 / PSF GV 2: num_planes=0 bw=51200
[    1.842180] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW3 / QGV 0: num_planes=0 deratedbw=12902 peakbw: 34144
[    1.842276] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW3 / QGV 1: num_planes=0 deratedbw=17230 peakbw: 46944
[    1.842373] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW3 / QGV 2: num_planes=0 deratedbw=18731 peakbw: 51216
[    1.842469] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW3 / QGV 3: num_planes=0 deratedbw=15838 peakbw: 42688
[    1.844836] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW3 / PSF GV 0: num_planes=0 bw=34133
[    1.844973] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW3 / PSF GV 1: num_planes=0 bw=51200
[    1.845097] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW3 / PSF GV 2: num_planes=0 bw=51200
[    1.846027] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW4 / QGV 0: num_planes=0 deratedbw=13269 peakbw: 34144
[    1.846136] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW4 / QGV 1: num_planes=0 deratedbw=17970 peakbw: 46944
[    1.846227] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW4 / QGV 2: num_planes=0 deratedbw=19569 peakbw: 51216
[    1.846308] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW4 / QGV 3: num_planes=0 deratedbw=16433 peakbw: 42688
[    1.846395] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW4 / PSF GV 0: num_planes=0 bw=34133
[    1.846493] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW4 / PSF GV 1: num_planes=0 bw=51200
[    1.846594] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW4 / PSF GV 2: num_planes=0 bw=51200
[    1.846687] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW5 / QGV 0: num_planes=0 deratedbw=13460 peakbw: 34144
[    1.846768] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW5 / QGV 1: num_planes=0 deratedbw=18365 peakbw: 46944
[    1.846847] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW5 / QGV 2: num_planes=0 deratedbw=20017 peakbw: 51216
[    1.846930] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW5 / QGV 3: num_planes=0 deratedbw=16748 peakbw: 42688
[    1.847021] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW5 / PSF GV 0: num_planes=0 bw=34133
[    1.847112] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW5 / PSF GV 1: num_planes=0 bw=51200
[    1.847201] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW5 / PSF GV 2: num_planes=0 bw=51200
[    1.849563] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Set default to SSC at 120000 kHz
[    1.849721] i915 0000:00:02.0: [drm:intel_bios_init [i915]] VBT signature "$VBT ALDERLAKE-P    ", BDB version 249
[    1.849826] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 1 (size 6, min size 7)
[    1.849926] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 2 (size 395, min size 5)
[    1.850022] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 9 (size 100, min size 100)
[    1.850118] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 12 (size 19, min size 19)
[    1.850213] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 27 (size 812, min size 850)
[    1.850309] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 40 (size 34, min size 34)
[    1.850416] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Generating LFP data table pointers
[    1.852871] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 41 (size 148, min size 148)
[    1.852977] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 42 (size 1366, min size 1366)
[    1.853079] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 43 (size 305, min size 305)
[    1.853181] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 44 (size 78, min size 136)
[    1.854196] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 52 (size 822, min size 822)
[    1.854312] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 56 (size 210, min size 210)
[    1.854431] 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
[    1.854547] i915 0000:00:02.0: [drm:intel_bios_init [i915]] crt_ddc_bus_pin: 2
[    1.854654] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found VBT child device with type 0x1806
[    1.854764] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found VBT child device with type 0x60d2
[    1.854880] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found VBT child device with type 0x68c6
[    1.854990] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found VBT child device with type 0x68c6
[    1.855098] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found VBT child device with type 0x68c6
[    1.856009] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found VBT child device with type 0x68c6
[    1.856111] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Skipping SDVO device mapping
[    1.856213] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port A VBT info: CRT:0 DVI:0 HDMI:0 DP:1 eDP:1 DSI:0 DP++:0 LSPCON:0 USB-Type-C:0 TBT:0 DSC:0
[    1.856314] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port A VBT HDMI level shift: 0
[    1.859168] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port B VBT info: CRT:0 DVI:1 HDMI:1 DP:0 eDP:0 DSI:0 DP++:0 LSPCON:0 USB-Type-C:0 TBT:0 DSC:0
[    1.859283] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port B VBT HDMI level shift: 0
[    1.859391] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port B VBT DP max link rate: 810000
[    1.859495] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port D VBT info: CRT:0 DVI:0 HDMI:0 DP:1 eDP:0 DSI:0 DP++:0 LSPCON:0 USB-Type-C:1 TBT:1 DSC:0
[    1.859596] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port D VBT HDMI level shift: 0
[    1.859693] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port D VBT DP max link rate: 810000
[    1.859788] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port E VBT info: CRT:0 DVI:0 HDMI:0 DP:1 eDP:0 DSI:0 DP++:0 LSPCON:0 USB-Type-C:1 TBT:1 DSC:0
[    1.859884] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port E VBT HDMI level shift: 0
[    1.859990] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port E VBT DP max link rate: 810000
[    1.860098] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port F VBT info: CRT:0 DVI:0 HDMI:0 DP:1 eDP:0 DSI:0 DP++:0 LSPCON:0 USB-Type-C:1 TBT:1 DSC:0
[    1.860588] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port F VBT HDMI level shift: 0
[    1.860683] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port F VBT DP max link rate: 810000
[    1.860777] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port G VBT info: CRT:0 DVI:0 HDMI:0 DP:1 eDP:0 DSI:0 DP++:0 LSPCON:0 USB-Type-C:1 TBT:1 DSC:0
[    1.862737] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port G VBT HDMI level shift: 0
[    1.862840] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port G VBT DP max link rate: 810000
[    1.862943] i915 0000:00:02.0: [drm:intel_power_domains_init [i915]] Allowed DC state mask 4000000a
[    1.863063] i915 0000:00:02.0: [drm:gen9_set_dc_state.part.0 [i915]] Setting DC state from 00 to 00
[    1.863215] i915 0000:00:02.0: [drm:check_phy_reg [i915]] Combo PHY A reg 001628a0 state mismatch: current 9003593c mask e0000000 expected a0000000
[    1.863344] i915 0000:00:02.0: [drm:icl_combo_phys_init [i915]] Initializing combo PHY A (Voltage/Process Info : 0.85V dot0 (low-voltage))
[    1.863496] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_1
[    1.863614] i915 0000:00:02.0: [drm:intel_cdclk_init_hw [i915]] Current CDCLK 179200 kHz, VCO 537600 kHz, ref 38400 kHz, bypass 19200 kHz, voltage level 0
[    1.864176] i915 0000:00:02.0: [drm:gen9_dbuf_slices_update [i915]] Updating dbuf slices to 0xf
[    1.864329] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling always-on
[    1.864430] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling DC_off
[    1.864509] usb 3-3: New USB device found, idVendor=06cb, idProduct=00f9, bcdDevice= 0.00
[    1.864511] usb 3-3: New USB device strings: Mfr=0, Product=0, SerialNumber=1
[    1.864512] usb 3-3: SerialNumber: eddde7adb083
[    1.864539] i915 0000:00:02.0: [drm:gen9_set_dc_state.part.0 [i915]] Setting DC state from 00 to 00
[    1.864685] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_2
[    1.864776] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_A
[    1.864858] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_B
[    1.864939] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_C
[    1.865018] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_D
[    1.865135] i915 0000:00:02.0: [drm:intel_dmc_init [i915]] Loading i915/adlp_dmc.bin
[    1.865239] i915 0000:00:02.0: [drm:intel_bw_init [i915]] Forcing SAGV disable: mask 0x10b
[    1.865638] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]] DMC 0:
[    1.865623] i915 0000:00:02.0: [drm:intel_fbc_init [i915]] Sanitized enable_fbc value: 1
[    1.865730] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[0]: 0x8f074 = 0x86fc0
[    1.865833] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[1]: 0x8f034 = 0xc003b400 (EVT_CTL)
[    1.865934] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[2]: 0x8f004 = 0x1240108 (EVT_HTP)
[    1.866031] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[3]: 0x8f038 = 0xc003b200 (EVT_CTL)
[    1.866129] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[4]: 0x8f008 = 0x512050d4 (EVT_HTP)
[    1.866225] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[5]: 0x8f03c = 0xc003b300 (EVT_CTL)
[    1.866233] i915 0000:00:02.0: [drm:skl_wm_init [i915]] SAGV supported: yes, original SAGV block time: 35 us
[    1.866320] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[6]: 0x8f00c = 0x584c57fc (EVT_HTP)
[    1.866373] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] original WM0 latency not provided
[    1.866419] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]] DMC 1:
[    1.866484] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] original WM1 latency 51 (51.0 usec)
[    1.866517] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[0]: 0x5f074 = 0x96fc0
[    1.866579] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] original WM2 latency 80 (80.0 usec)
[    1.866627] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[1]: 0x5f034 = 0xc003df00 (EVT_CTL) (disabling)
[    1.866664] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] original WM3 latency 99 (99.0 usec)
[    1.866733] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[2]: 0x5f004 = 0x214c2114 (EVT_HTP)
[    1.866746] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] original WM4 latency 144 (144.0 usec)
[    1.866823] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] original WM5 latency 144 (144.0 usec)
[    1.866836] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[3]: 0x5f038 = 0xc003e000 (EVT_CTL) (disabling)
[    1.866901] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] adjusted WM0 latency 3 (3.0 usec)
[    1.866933] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[4]: 0x5f008 = 0x22402208 (EVT_HTP)
[    1.866988] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] adjusted WM1 latency 54 (54.0 usec)
[    1.867029] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[5]: 0x5f03c = 0xc0032c00 (EVT_CTL) (disabling)
[    1.867070] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] adjusted WM2 latency 83 (83.0 usec)
[    1.867124] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[6]: 0x5f00c = 0x241422fc (EVT_HTP)
[    1.867148] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] adjusted WM3 latency 102 (102.0 usec)
[    1.867217] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[7]: 0x5f040 = 0xc0033100 (EVT_CTL) (disabling)
[    1.867225] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] adjusted WM4 latency 147 (147.0 usec)
[    1.867307] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] adjusted WM5 latency 147 (147.0 usec)
[    1.867312] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[8]: 0x5f010 = 0x26f826cc (EVT_HTP)
[    1.867407] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]] DMC 2:
[    1.867499] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[0]: 0x5f474 = 0x9efc0
[    1.867552] i915 0000:00:02.0: [drm:intel_crtc_init [i915]] 4 display pipes available.
[    1.867591] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[1]: 0x5f434 = 0xc003df00 (EVT_CTL) (disabling)
[    1.867693] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[2]: 0x5f404 = 0xa968a930 (EVT_HTP)
[    1.867797] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[3]: 0x5f438 = 0xc003e000 (EVT_CTL) (disabling)
[    1.867895] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[4]: 0x5f408 = 0xaa5caa24 (EVT_HTP)
[    1.867991] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[5]: 0x5f43c = 0xc0032c00 (EVT_CTL) (disabling)
[    1.868085] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[6]: 0x5f40c = 0xac30ab18 (EVT_HTP)
[    1.868083] i915 0000:00:02.0: [drm:intel_cdclk_read_hw [i915]] Current CDCLK 179200 kHz, VCO 537600 kHz, ref 38400 kHz, bypass 19200 kHz, voltage level 0
[    1.868180] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[7]: 0x5f440 = 0xc0033100 (EVT_CTL) (disabling)
[    1.868218] i915 0000:00:02.0: [drm:intel_update_max_cdclk [i915]] Max CD clock rate: 652800 kHz
[    1.868273] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[8]: 0x5f410 = 0xaf14aee8 (EVT_HTP)
[    1.868342] i915 0000:00:02.0: [drm:intel_display_driver_probe_nogem [i915]] Max dotclock rate: 1305600 kHz
[    1.868368] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]] DMC 3:
[    1.868477] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[0]: 0x5f874 = 0x53fc0
[    1.868480] i915 0000:00:02.0: [drm:intel_dp_aux_ch [i915]] [ENCODER:507:DDI A/PHY A] Using AUX CH A (VBT)
[    1.868582] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[1]: 0x5f83c = 0xc0032c00 (EVT_CTL) (disabling)
[    1.868590] i915 0000:00:02.0: [drm:intel_dp_init_connector [i915]] Adding eDP connector on [ENCODER:507:DDI A/PHY A]
[    1.868681] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[2]: 0x5f80c = 0x25202408 (EVT_HTP)
[    1.868681] i915 0000:00:02.0: [drm:intel_bios_init_panel [i915]] Panel type (VBT): 2
[    1.868774] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[3]: 0x5f840 = 0xc0033100 (EVT_CTL) (disabling)
[    1.868800] i915 0000:00:02.0: [drm:intel_bios_init_panel [i915]] Selected panel type (VBT): 2
[    1.868866] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[4]: 0x5f810 = 0x280427d8 (EVT_HTP)
[    1.868913] i915 0000:00:02.0: [drm:intel_bios_init_panel [i915]] DRRS supported mode is seamless
[    1.868955] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]] DMC 4:
[    1.869021] i915 0000:00:02.0: [drm:intel_bios_init_panel [i915]] Found panel mode in BIOS VBT legacy lfp table: "1024x768": 60 65000 1024 1048 1184 1344 768 771 777 806 0x8 0xa
[    1.869044] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[0]: 0x5fc74 = 0x5afc0
[    1.869125] i915 0000:00:02.0: [drm:intel_bios_init_panel [i915]] VBT initial LVDS value 300
[    1.869132] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[1]: 0x5fc3c = 0xc0032c00 (EVT_CTL) (disabling)
[    1.869225] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[2]: 0x5fc0c = 0x95209408 (EVT_HTP)
[    1.869232] i915 0000:00:02.0: [drm:intel_bios_init_panel [i915]] Panel manufacturer name: MS_, product code: 3, serial number: 3, year of manufacture: 2002
[    1.869330] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[3]: 0x5fc40 = 0xc0033100 (EVT_CTL) (disabling)
[    1.869340] i915 0000:00:02.0: [drm:intel_bios_init_panel [i915]] Panel name: LFP_PanelName
[    1.869430] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[4]: 0x5fc10 = 0x980497d8 (EVT_HTP)
[    1.869440] i915 0000:00:02.0: [drm:intel_bios_init_panel [i915]] Seamless DRRS min refresh rate: 0 Hz
[    1.869539] i915 0000:00:02.0: [drm:intel_bios_init_panel [i915]] VBT backlight PWM modulation frequency 990 Hz, active high, min brightness 3, level 21845, controller 0
[    1.869637] i915 0000:00:02.0: [drm:intel_pps_init [i915]] [ENCODER:507:DDI A/PHY A] initial power sequencer: PPS 0
[    1.869827] i915 0000:00:02.0: [drm:intel_pps_dump_state [i915]] bios power_up 1 backlight_on 1 backlight_off 1 power_down 500 power_cycle 5000
[    1.869912] i915 0000:00:02.0: [drm:intel_pps_dump_state [i915]] vbt power_up 2000 backlight_on 1000 backlight_off 2000 power_down 500 power_cycle 5000
[    1.869984] i915 0000:00:02.0: [drm:intel_pps_dump_state [i915]] spec power_up 2100 backlight_on 500 backlight_off 500 power_down 5000 power_cycle 5100
[    1.870049] i915 0000:00:02.0: [drm:pps_init_delays [i915]] panel power up delay 200, power down delay 50, power cycle delay 500
[    1.870111] i915 0000:00:02.0: [drm:pps_init_delays [i915]] backlight on delay 100, off delay 200
[    1.870364] i915 0000:00:02.0: [drm:pps_init_registers [i915]] panel power sequencer register settings: PP_ON 0x7d00001, PP_OFF 0x1f40001, PP_DIV 0x60
[    1.870589] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling AUX_A
[    1.870758] i915 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turning VDD on
[    1.871017] i915 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x0000006f
[    1.871262] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/adlp_dmc.bin (v2.20)
[    1.871444] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00000 AUX -> (ret= 15) 11 0a 82 41 00 00 01 40 02 02 06 00 00 0b 00
[    1.871463] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX A/DDI A/PHY A: DPCD: 11 0a 82 41 00 00 01 40 02 02 06 00 00 0b 00
[    1.871766] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00400 AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[    1.871778] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX A/DDI A/PHY A: DP sink: OUI 00-00-00 dev-ID  HW-rev 0.0 SW-rev 0.0 quirks 0x0000
[    1.871990] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x02210 AUX -> (ret=  1) 00
[    1.872234] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00700 AUX -> (ret=  5) 01 12 07 00 00
[    1.872243] i915 0000:00:02.0: [drm:intel_dp_init_connector [i915]] eDP DPCD: 01 12 07 00 00
[    1.872562] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00300 AUX -> (ret=  3) 00 aa 01
[    1.872785] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x0002e AUX -> (ret=  1) 00
[    1.873007] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00070 AUX -> (ret=  2) 00 00
[    1.873267] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x000b0 AUX -> (ret=  7) 00 00 00 00 00 00 00
[    1.877760] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[    1.877800] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[    1.877828] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[    1.877854] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[    1.877902] i915 0000:00:02.0: [drm:intel_panel_add_edid_fixed_modes [i915]] [CONNECTOR:508:eDP-1] using preferred EDID fixed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[    1.878026] i915 0000:00:02.0: [drm:intel_dp_wait_source_oui [i915]] [CONNECTOR:508:eDP-1] Performing OUI wait (0 ms)
[    1.878370] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00340 AUX -> (ret=  4) 00 00 00 00
[    1.878383] i915 0000:00:02.0: [drm:intel_dp_aux_init_backlight_funcs [i915]] [CONNECTOR:508:eDP-1] Detected unsupported HDR backlight interface version 0
[    1.878474] i915 0000:00:02.0: [drm:intel_panel_init [i915]] [CONNECTOR:508:eDP-1] DRRS type: none
[    1.878626] i915 0000:00:02.0: [drm:cnp_setup_backlight [i915]] [CONNECTOR:508:eDP-1] Using native PCH PWM for backlight control (controller=0)
[    1.878768] i915 0000:00:02.0: [drm:intel_backlight_setup [i915]] [CONNECTOR:508:eDP-1] backlight initialized, enabled, brightness 6464/19393
[    1.878857] i915 0000:00:02.0: [drm:intel_pps_dump_state [i915]] bios power_up 1 backlight_on 1 backlight_off 1 power_down 500 power_cycle 5000
[    1.878935] i915 0000:00:02.0: [drm:intel_pps_dump_state [i915]] vbt power_up 2000 backlight_on 1000 backlight_off 2000 power_down 500 power_cycle 5000
[    1.879011] i915 0000:00:02.0: [drm:intel_pps_dump_state [i915]] spec power_up 2100 backlight_on 500 backlight_off 500 power_down 5000 power_cycle 5100
[    1.879083] i915 0000:00:02.0: [drm:pps_init_delays [i915]] panel power up delay 200, power down delay 50, power cycle delay 500
[    1.879148] i915 0000:00:02.0: [drm:pps_init_delays [i915]] backlight on delay 100, off delay 200
[    1.879402] i915 0000:00:02.0: [drm:pps_init_registers [i915]] panel power sequencer register settings: PP_ON 0x7d00001, PP_OFF 0x1f40001, PP_DIV 0x60
[    1.879511] i915 0000:00:02.0: [drm:intel_hdmi_init_connector [i915]] Adding HDMI connector on [ENCODER:516:DDI B/PHY B]
[    1.879591] i915 0000:00:02.0: [drm:intel_hdmi_init_connector [i915]] [ENCODER:516:DDI B/PHY B] Using DDC pin 0x2 (VBT)
[    1.879673] i915 0000:00:02.0: [drm:intel_dp_aux_ch [i915]] [ENCODER:525:DDI TC1/PHY TC1] Using AUX CH USBC1 (VBT)
[    1.879797] i915 0000:00:02.0: [drm:tc_phy_get_current_mode [i915]] Port D/TC#1: PHY mode: tbt-alt (ready: yes, owned: no, HPD: disconnected)
[    1.879948] i915 0000:00:02.0: [drm:intel_dp_init_connector [i915]] Adding DP connector on [ENCODER:525:DDI TC1/PHY TC1]
[    1.880053] i915 0000:00:02.0: [drm:intel_dp_aux_ch [i915]] [ENCODER:535:DDI TC2/PHY TC2] Using AUX CH USBC2 (VBT)
[    1.880179] i915 0000:00:02.0: [drm:tc_phy_get_current_mode [i915]] Port E/TC#2: PHY mode: tbt-alt (ready: no, owned: no, HPD: disconnected)
[    1.880318] i915 0000:00:02.0: [drm:intel_dp_init_connector [i915]] Adding DP connector on [ENCODER:535:DDI TC2/PHY TC2]
[    1.880400] i915 0000:00:02.0: [drm:intel_dp_aux_ch [i915]] [ENCODER:544:DDI TC3/PHY TC3] Using AUX CH USBC3 (VBT)
[    1.880527] i915 0000:00:02.0: [drm:tc_phy_get_current_mode [i915]] Port F/TC#3: PHY mode: tbt-alt (ready: yes, owned: no, HPD: disconnected)
[    1.880677] i915 0000:00:02.0: [drm:intel_dp_init_connector [i915]] Adding DP connector on [ENCODER:544:DDI TC3/PHY TC3]
[    1.880766] i915 0000:00:02.0: [drm:intel_dp_aux_ch [i915]] [ENCODER:553:DDI TC4/PHY TC4] Using AUX CH USBC4 (VBT)
[    1.880886] i915 0000:00:02.0: [drm:tc_phy_get_current_mode [i915]] Port G/TC#4: PHY mode: tbt-alt (ready: no, owned: no, HPD: disconnected)
[    1.881025] i915 0000:00:02.0: [drm:intel_dp_init_connector [i915]] Adding DP connector on [ENCODER:553:DDI TC4/PHY TC4]
[    1.881129] i915 0000:00:02.0: [drm:intel_vga_disable [i915]] VGA plane is disabled
[    1.881226] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io:owns=mem
[    1.881559] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CRTC:151:pipe A] hw state readout: enabled
[    1.881676] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CRTC:269:pipe B] hw state readout: disabled
[    1.881791] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CRTC:387:pipe C] hw state readout: disabled
[    1.881895] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CRTC:505:pipe D] hw state readout: disabled
[    1.881988] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:35:plane 1A] hw state readout: enabled, pipe A
[    1.882078] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:65:plane 2A] hw state readout: disabled, pipe A
[    1.882168] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:95:plane 3A] hw state readout: disabled, pipe A
[    1.882270] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:125:plane 4A] hw state readout: disabled, pipe A
[    1.882364] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:135:plane 5A] hw state readout: disabled, pipe A
[    1.882453] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:145:cursor A] hw state readout: disabled, pipe A
[    1.882539] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:153:plane 1B] hw state readout: disabled, pipe B
[    1.882623] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:183:plane 2B] hw state readout: disabled, pipe B
[    1.882706] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:213:plane 3B] hw state readout: disabled, pipe B
[    1.882794] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:243:plane 4B] hw state readout: disabled, pipe B
[    1.882894] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:253:plane 5B] hw state readout: disabled, pipe B
[    1.882989] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:263:cursor B] hw state readout: disabled, pipe B
[    1.883080] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:271:plane 1C] hw state readout: disabled, pipe C
[    1.883166] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:301:plane 2C] hw state readout: disabled, pipe C
[    1.883249] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:331:plane 3C] hw state readout: disabled, pipe C
[    1.883340] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:361:plane 4C] hw state readout: disabled, pipe C
[    1.883434] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:371:plane 5C] hw state readout: disabled, pipe C
[    1.883522] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:381:cursor C] hw state readout: disabled, pipe C
[    1.883608] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:389:plane 1D] hw state readout: disabled, pipe D
[    1.883692] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:419:plane 2D] hw state readout: disabled, pipe D
[    1.883779] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:449:plane 3D] hw state readout: disabled, pipe D
[    1.883879] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:479:plane 4D] hw state readout: disabled, pipe D
[    1.883970] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:489:plane 5D] hw state readout: disabled, pipe D
[    1.884058] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:499:cursor D] hw state readout: disabled, pipe D
[    1.884153] i915 0000:00:02.0: [drm:intel_edp_fixup_vbt_bpp [i915]] pipe has 24 bpp for eDP panel, overriding BIOS-provided max 18 bpp
[    1.884255] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:507:DDI A/PHY A] hw state readout: enabled, pipe A
[    1.884364] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:516:DDI B/PHY B] hw state readout: disabled, pipe A
[    1.884465] i915 0000:00:02.0: [drm:intel_tc_port_sanitize_mode [i915]] Port D/TC#1: sanitize mode (disconnected) pin assignment: - max lanes: 4
[    1.884567] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:525:DDI TC1/PHY TC1] hw state readout: disabled, pipe A
[    1.884660] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:527:DP-MST A] hw state readout: disabled, pipe A
[    1.884749] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:528:DP-MST B] hw state readout: disabled, pipe B
[    1.884846] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:529:DP-MST C] hw state readout: disabled, pipe C
[    1.884939] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:530:DP-MST D] hw state readout: disabled, pipe D
[    1.885029] i915 0000:00:02.0: [drm:intel_tc_port_sanitize_mode [i915]] Port E/TC#2: sanitize mode (disconnected) pin assignment: - max lanes: 4
[    1.885130] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:535:DDI TC2/PHY TC2] hw state readout: disabled, pipe A
[    1.885234] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:537:DP-MST A] hw state readout: disabled, pipe A
[    1.885333] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:538:DP-MST B] hw state readout: disabled, pipe B
[    1.885427] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:539:DP-MST C] hw state readout: disabled, pipe C
[    1.885516] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:540:DP-MST D] hw state readout: disabled, pipe D
[    1.885604] i915 0000:00:02.0: [drm:intel_tc_port_sanitize_mode [i915]] Port F/TC#3: sanitize mode (disconnected) pin assignment: - max lanes: 4
[    1.885704] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:544:DDI TC3/PHY TC3] hw state readout: disabled, pipe A
[    1.885805] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:546:DP-MST A] hw state readout: disabled, pipe A
[    1.885899] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:547:DP-MST B] hw state readout: disabled, pipe B
[    1.885989] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:548:DP-MST C] hw state readout: disabled, pipe C
[    1.886076] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:549:DP-MST D] hw state readout: disabled, pipe D
[    1.886163] i915 0000:00:02.0: [drm:intel_tc_port_sanitize_mode [i915]] Port G/TC#4: sanitize mode (disconnected) pin assignment: - max lanes: 4
[    1.886265] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:553:DDI TC4/PHY TC4] hw state readout: disabled, pipe A
[    1.886365] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:555:DP-MST A] hw state readout: disabled, pipe A
[    1.886457] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:556:DP-MST B] hw state readout: disabled, pipe B
[    1.886548] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:557:DP-MST C] hw state readout: disabled, pipe C
[    1.886634] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:558:DP-MST D] hw state readout: disabled, pipe D
[    1.886720] i915 0000:00:02.0: [drm:intel_dpll_readout_hw_state [i915]] DPLL 0 hw state readout: pipe_mask 0x0, on 0
[    1.886840] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:151:pipe A] reserving DPLL 1
[    1.886954] i915 0000:00:02.0: [drm:intel_dpll_readout_hw_state [i915]] DPLL 1 hw state readout: pipe_mask 0x1, on 1
[    1.887063] i915 0000:00:02.0: [drm:intel_dpll_readout_hw_state [i915]] TBT PLL hw state readout: pipe_mask 0x0, on 0
[    1.887160] i915 0000:00:02.0: [drm:intel_dpll_readout_hw_state [i915]] TC PLL 1 hw state readout: pipe_mask 0x0, on 0
[    1.887253] i915 0000:00:02.0: [drm:intel_dpll_readout_hw_state [i915]] TC PLL 2 hw state readout: pipe_mask 0x0, on 0
[    1.887331] i915 0000:00:02.0: [drm:intel_dpll_readout_hw_state [i915]] TC PLL 3 hw state readout: pipe_mask 0x0, on 0
[    1.887408] i915 0000:00:02.0: [drm:intel_dpll_readout_hw_state [i915]] TC PLL 4 hw state readout: pipe_mask 0x0, on 0
[    1.887488] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:508:eDP-1] hw state readout: enabled
[    1.887573] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:517:HDMI-A-1] hw state readout: disabled
[    1.887658] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:526:DP-1] hw state readout: disabled
[    1.887736] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:536:DP-2] hw state readout: disabled
[    1.887809] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:545:DP-3] hw state readout: disabled
[    1.887879] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:554:DP-4] hw state readout: disabled
[    1.887947] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:35:plane 1A] min_cdclk 80895 kHz
[    1.888027] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:65:plane 2A] min_cdclk 0 kHz
[    1.888110] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:95:plane 3A] min_cdclk 0 kHz
[    1.888203] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:125:plane 4A] min_cdclk 0 kHz
[    1.888278] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:135:plane 5A] min_cdclk 0 kHz
[    1.888349] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:145:cursor A] min_cdclk 0 kHz
[    1.888419] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CRTC:151:pipe A] min_cdclk 80895 kHz
[    1.888503] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:153:plane 1B] min_cdclk 0 kHz
[    1.888593] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:183:plane 2B] min_cdclk 0 kHz
[    1.888673] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:213:plane 3B] min_cdclk 0 kHz
[    1.888744] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:243:plane 4B] min_cdclk 0 kHz
[    1.888811] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:253:plane 5B] min_cdclk 0 kHz
[    1.888877] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:263:cursor B] min_cdclk 0 kHz
[    1.889845] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CRTC:269:pipe B] min_cdclk 0 kHz
[    1.889922] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:271:plane 1C] min_cdclk 0 kHz
[    1.889989] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:301:plane 2C] min_cdclk 0 kHz
[    1.890052] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:331:plane 3C] min_cdclk 0 kHz
[    1.890121] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:361:plane 4C] min_cdclk 0 kHz
[    1.890202] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:371:plane 5C] min_cdclk 0 kHz
[    1.890281] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:381:cursor C] min_cdclk 0 kHz
[    1.890359] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CRTC:387:pipe C] min_cdclk 0 kHz
[    1.890437] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:389:plane 1D] min_cdclk 0 kHz
[    1.890506] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:419:plane 2D] min_cdclk 0 kHz
[    1.890582] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:449:plane 3D] min_cdclk 0 kHz
[    1.890658] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:479:plane 4D] min_cdclk 0 kHz
[    1.890729] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:489:plane 5D] min_cdclk 0 kHz
[    1.890807] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:499:cursor D] min_cdclk 0 kHz
[    1.890884] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CRTC:505:pipe D] min_cdclk 0 kHz
[    1.890989] i915 0000:00:02.0: [drm:skl_wm_get_hw_state [i915]] [CRTC:151:pipe A] dbuf slices 0x3, ddb (0 - 2048), active pipes 0x1, mbus joined: no
[    1.891073] i915 0000:00:02.0: [drm:skl_wm_get_hw_state [i915]] [CRTC:269:pipe B] dbuf slices 0x0, ddb (0 - 0), active pipes 0x1, mbus joined: no
[    1.891147] i915 0000:00:02.0: [drm:skl_wm_get_hw_state [i915]] [CRTC:387:pipe C] dbuf slices 0x0, ddb (0 - 0), active pipes 0x1, mbus joined: no
[    1.891218] i915 0000:00:02.0: [drm:skl_wm_get_hw_state [i915]] [CRTC:505:pipe D] dbuf slices 0x0, ddb (0 - 0), active pipes 0x1, mbus joined: no
[    1.893675] i915 0000:00:02.0: [drm:intel_bw_update_hw_state [i915]] pipe A data rate 647160 num active planes 1
[    1.893796] i915 0000:00:02.0: [drm:intel_bw_update_hw_state [i915]] pipe B data rate 0 num active planes 0
[    1.893890] i915 0000:00:02.0: [drm:intel_bw_update_hw_state [i915]] pipe C data rate 0 num active planes 0
[    1.894900] i915 0000:00:02.0: [drm:intel_bw_update_hw_state [i915]] pipe D data rate 0 num active planes 0
[    1.895005] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling DDI_IO_A
[    1.895106] i915 0000:00:02.0: [drm:intel_cmtg_sanitize [i915]] CMTG readout: CMTG A: disabled, CMTG B: n/a, Transcoder A secondary: no, Transcoder B secondary: no
[    1.895220] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [setup_hw_state]
[    1.895316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[    1.895405] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[    1.895504] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[    1.895587] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[    1.895670] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[    1.895757] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[    1.895847] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[    1.895932] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[    1.896018] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[    1.896113] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[    1.896206] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[    1.897249] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[    1.897362] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[    1.897458] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[    1.897540] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[    1.900575] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: no, vmin: 0, vmax: 0, flipline: 0, pipeline full: 0, guardband: 0 vsync start: 0, vsync end: 0
[    1.900696] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 0, vmax vblank: 0, vmin vtotal: 0, vmax vtotal: 0
[    1.900795] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[    1.900880] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[    1.900965] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[    1.901050] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[    1.901137] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[    1.901236] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[    1.901330] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[    1.901420] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[    1.901507] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[    1.901589] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[    1.901680] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[    1.901780] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[    1.901867] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[    1.901952] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[    1.902505] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x20000000 gamma_mode: 0x20000000 gamma_enable: 0 csc_enable: 0
[    1.902586] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[    1.902667] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[    1.904632] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[    1.904741] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[    1.904844] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[    1.904929] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[    1.905012] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[    1.905093] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[    1.905173] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[    1.905251] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[    1.905329] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[    1.905406] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: no [setup_hw_state]
[    1.905484] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: no [setup_hw_state]
[    1.905562] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:505:pipe D] enable: no [setup_hw_state]
[    1.905654] i915 0000:00:02.0: [drm:skl_get_initial_plane_config [i915]] [CRTC:151:pipe A][PLANE:35:plane 1A] with fb: size=1920x1200@32, offset=0, pitch 7680, size 0x8ca000
[    1.905746] i915 0000:00:02.0: [drm:initial_plane_vma [i915]] Using dma_addr=0x000000009c800000, based on initial plane programming
[    1.905828] i915 0000:00:02.0: [drm:_i915_gem_object_stolen_init [i915]] creating preallocated stolen object: stolen_offset=0x0000000000000000, size=0x00000000008ca000
[    1.906105] i915 0000:00:02.0: [drm:initial_plane_vma [i915]] Initial plane fb bound to 0x0 in the ggtt (original 0x0)
[    1.907131] i915 0000:00:02.0: [drm:intel_wopcm_init [i915]] Calculated GuC WOPCM [592K, 1420K)
[    1.907215] i915 0000:00:02.0: [drm:i915_init_ggtt [i915]] Reserved GGTT:[8ca000, 8cc000] for use by error capture
[    1.907291] i915 0000:00:02.0: [drm:i915_init_ggtt [i915]] clearing unused GTT space: [8cc000, fee00000]
[    1.907356] i915 0000:00:02.0: [drm:i915_gem_init [i915]] No clock gating settings or workarounds applied.
[    1.907448] i915 0000:00:02.0: [drm:debug_dump_steering [i915]] MCR Steering: Default steering: group=0x0, instance=0x0
[    1.907529] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 5 GT workarounds on global
[    1.907638] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 11 engine workarounds on rcs'0
[    1.907708] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 4 whitelist workarounds on rcs'0
[    1.907778] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 6 context workarounds on rcs'0
[    1.907876] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 1 engine workarounds on bcs'0
[    1.907941] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 1 whitelist workarounds on bcs'0
[    1.908002] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 1 context workarounds on bcs'0
[    1.908067] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 1 engine workarounds on vcs'0
[    1.908123] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 1 whitelist workarounds on vcs'0
[    1.908186] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 1 engine workarounds on vcs'2
[    1.908242] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 1 whitelist workarounds on vcs'2
[    1.908303] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 1 engine workarounds on vecs'0
[    1.908358] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 1 whitelist workarounds on vecs'0
[    1.908583] i915 0000:00:02.0: [drm:intel_guc_log_create [i915]] GT0: GUC: guc_log_level=1 (enabled, verbose:no, verbosity:0)
[    1.908689] i915 0000:00:02.0: [drm:intel_guc_capture_init [i915]] GT0: GUC: capture found 12 ext-regs.
[    1.908792] i915 0000:00:02.0: [drm:intel_guc_ads_create [i915]] GT0: GUC: Used 8 KB for temporary ADS regset
[    1.910569] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[ 0] = 0x8cc3d7
[    1.910660] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[ 1] = 0x444000
[    1.910740] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[ 2] = 0x6
[    1.910820] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[ 3] = 0x40
[    1.910897] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[ 4] = 0x13be
[    1.910974] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[ 5] = 0x46a6000c
[    1.911055] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[ 6] = 0x0
[    1.911135] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[ 7] = 0x0
[    1.911213] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[ 8] = 0x0
[    1.911288] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[ 9] = 0x0
[    1.911359] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[10] = 0x0
[    1.911430] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[11] = 0x0
[    1.911505] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[12] = 0x0
[    1.911586] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[13] = 0x0
[    1.911665] i915 0000:00:02.0: [drm:intel_huc_init [i915]] GT0: HuC: loaded by GSC = no
[    1.912149] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/adlp_guc_70.bin version 70.36.0
[    1.912151] i915 0000:00:02.0: [drm] GT0: HuC firmware i915/tgl_huc.bin version 7.9.3
[    1.925979] i915 0000:00:02.0: [drm:intel_guc_fw_upload [i915]] GT0: GUC: init took 12ms, freq = 1300MHz -> 1300MHz vs 1400MHz, status = 0x8002F0EC, count = 0, ret = 0
[    1.926314] i915 0000:00:02.0: [drm:guc_enable_communication [i915]] GT0: GUC: communication enabled
[    1.927259] i915 0000:00:02.0: [drm:intel_huc_wait_for_auth_complete [i915]] GT0: HuC: auth took 0ms, freq = 1300MHz -> 1300MHz vs 1400MHz, status = 0x0000C1DC, count = 0, ret = 0
[    1.927435] i915 0000:00:02.0: [drm] GT0: HuC: authenticated for all workloads
[    1.929040] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
[    1.929042] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
[    1.929571] i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
[    1.929578] i915 0000:00:02.0: [drm:__guc_action_get_hwconfig [i915]] GT0: GUC: Querying HW config table: size = 0, offset = 0x00000000
[    1.929723] i915 0000:00:02.0: [drm:__guc_action_get_hwconfig [i915]] GT0: GUC: Querying HW config table: size = 964, offset = 0x0120D000
[    1.930581] i915 0000:00:02.0: [drm:intel_engines_driver_register [i915]] renamed rcs'0 to rcs0
[    1.930707] i915 0000:00:02.0: [drm:intel_engines_driver_register [i915]] renamed bcs'0 to bcs0
[    1.930793] i915 0000:00:02.0: [drm:intel_engines_driver_register [i915]] renamed vcs'0 to vcs0
[    1.930865] i915 0000:00:02.0: [drm:intel_engines_driver_register [i915]] renamed vcs'2 to vcs1
[    1.930933] i915 0000:00:02.0: [drm:intel_engines_driver_register [i915]] renamed vecs'0 to vecs0
[    1.931014] i915 0000:00:02.0: [drm] Protected Xe Path (PXP) protected content support initialized
[    1.931017] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:151:pipe A] FQ 0: start 0x90008
[    1.931137] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:151:pipe A] FQ 1: start 0x90108
[    1.931246] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:151:pipe A] FQ 2: start 0x90208
[    1.931348] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:151:pipe A] FQ 3: start 0x90308
[    1.931453] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:151:pipe A] FQ 4: start 0x903c8
[    1.931552] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:269:pipe B] FQ 0: start 0x98008
[    1.931645] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:269:pipe B] FQ 1: start 0x98108
[    1.931734] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:269:pipe B] FQ 2: start 0x98208
[    1.931826] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:269:pipe B] FQ 3: start 0x98308
[    1.931926] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:269:pipe B] FQ 4: start 0x983c8
[    1.932026] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:387:pipe C] FQ 0: start 0x52008
[    1.932117] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:387:pipe C] FQ 1: start 0x52108
[    1.932205] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:387:pipe C] FQ 2: start 0x52208
[    1.932292] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:387:pipe C] FQ 3: start 0x52308
[    1.932385] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:387:pipe C] FQ 4: start 0x523c8
[    1.932497] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:505:pipe D] FQ 0: start 0x59008
[    1.932586] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:505:pipe D] FQ 1: start 0x59108
[    1.932669] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:505:pipe D] FQ 2: start 0x59208
[    1.932743] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:505:pipe D] FQ 3: start 0x59308
[    1.932823] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:505:pipe D] FQ 4: start 0x593c8
[    1.932936] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? no->yes
[    1.933027] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0x3 -> 0xf, ddb (0 - 2048) -> (0 - 4096), active pipes 0x1 -> 0x1
[    1.933113] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 2048) -> (   0 - 4054), size 2048 -> 4054
[    1.933193] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (   0 -    0) -> (4054 - 4096), size    0 ->   42
[    1.933261] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]      level *wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm,*swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7, twm,*swm, stwm
[    1.933326] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]      lines    1,   1,   1,   1,   1,   1,   0,   0,   1,   3,    1 ->    1,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0
[    1.933388] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]     blocks   17,  17,   7,   7,   7,   7,   0,   0,   7,  49,    7 ->   16,  81, 113, 129, 193, 193,   0,   0,   0,  49,    0
[    1.933460] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   19,  91, 126, 143, 214, 214,   0,   0,   0,  55,    0
[    1.933538] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: no [fastset]
[    1.933643] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: no [fastset]
[    1.933745] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:505:pipe D] enable: no [fastset]
[    1.933871] i915 0000:00:02.0: [drm:intel_fbc_update [i915]] reserved 19660800 bytes of contiguous stolen space for FBC, limit: 1
[    1.933980] i915 0000:00:02.0: [drm:intel_fbc_update [i915]] Enabling FBC on [PLANE:35:plane 1A]
[    1.934072] i915 0000:00:02.0: [drm:intel_dbuf_mbus_join_update [i915]] Changing mbus joined: no -> yes (pipe: A)
[    1.934159] i915 0000:00:02.0: [drm:intel_dbuf_mdclk_cdclk_ratio_update [i915]] Updating dbuf ratio to 4 (mbus joined: yes)
[    1.940660] i915 0000:00:02.0: [drm:intel_modeset_verify_crtc [i915]] [CRTC:269:pipe B]
[    1.940843] i915 0000:00:02.0: [drm:intel_modeset_verify_crtc [i915]] [CRTC:387:pipe C]
[    1.940942] i915 0000:00:02.0: [drm:intel_modeset_verify_crtc [i915]] [CRTC:505:pipe D]
[    1.941796] i915 0000:00:02.0: [drm:drm_sysfs_connector_add [drm]] [CONNECTOR:508:eDP-1] adding connector to sysfs
[    1.942206] i915 0000:00:02.0: [drm:intel_backlight_device_register [i915]] [CONNECTOR:508:eDP-1] backlight device intel_backlight registered
[    1.942310] i915 0000:00:02.0: [drm:intel_panel_register [i915]] [CONNECTOR:508:eDP-1] Registered panel device 'card0-eDP-1', has fwnode: yes
[    1.942391] i915 0000:00:02.0: [drm:intel_panel_register [i915]] [CONNECTOR:508:eDP-1] Panel prepare
[    1.942474] i915 0000:00:02.0: [drm:intel_dp_connector_register [i915]] registering AUX A/DDI A/PHY A bus for card0-eDP-1
[    1.942680] i915 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event [drm]] [CONNECTOR:508:eDP-1] generating connector hotplug event
[    1.942711] i915 0000:00:02.0: [drm:drm_sysfs_connector_add [drm]] [CONNECTOR:517:HDMI-A-1] adding connector to sysfs
[    1.942747] i915 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event [drm]] [CONNECTOR:517:HDMI-A-1] generating connector hotplug event
[    1.942767] i915 0000:00:02.0: [drm:drm_sysfs_connector_add [drm]] [CONNECTOR:526:DP-1] adding connector to sysfs
[    1.942803] i915 0000:00:02.0: [drm:intel_dp_connector_register [i915]] registering AUX USBC1/DDI TC1/PHY TC1 bus for card0-DP-1
[    1.943013] i915 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event [drm]] [CONNECTOR:526:DP-1] generating connector hotplug event
[    1.943042] i915 0000:00:02.0: [drm:drm_sysfs_connector_add [drm]] [CONNECTOR:536:DP-2] adding connector to sysfs
[    1.943090] i915 0000:00:02.0: [drm:intel_dp_connector_register [i915]] registering AUX USBC2/DDI TC2/PHY TC2 bus for card0-DP-2
[    1.943206] i915 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event [drm]] [CONNECTOR:536:DP-2] generating connector hotplug event
[    1.943230] i915 0000:00:02.0: [drm:drm_sysfs_connector_add [drm]] [CONNECTOR:545:DP-3] adding connector to sysfs
[    1.943266] i915 0000:00:02.0: [drm:intel_dp_connector_register [i915]] registering AUX USBC3/DDI TC3/PHY TC3 bus for card0-DP-3
[    1.943455] i915 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event [drm]] [CONNECTOR:545:DP-3] generating connector hotplug event
[    1.943485] i915 0000:00:02.0: [drm:drm_sysfs_connector_add [drm]] [CONNECTOR:554:DP-4] adding connector to sysfs
[    1.943526] i915 0000:00:02.0: [drm:intel_dp_connector_register [i915]] registering AUX USBC4/DDI TC4/PHY TC4 bus for card0-DP-4
[    1.943712] i915 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event [drm]] [CONNECTOR:554:DP-4] generating connector hotplug event
[    1.968778] [drm] Initialized i915 1.6.0 for 0000:00:02.0 on minor 0
[    1.968888] i915 0000:00:02.0: [drm:intel_opregion_resume [i915]] 6 outputs detected
[    1.984122] ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    1.984468] input: Video Bus as /devices/pci0000:00/acpi.video_bus.0/input/input12
[    1.989381] usb 3-4: new high-speed USB device number 3 using xhci_hcd
[    1.989892] i915 0000:00:02.0: [drm:intel_audio_init [i915]] use AUD_FREQ_CNTRL of 0x8010 (init value 0x8010)
[    1.990493] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] aud_ts_cdclk set to M=60, N=448
[    1.990980] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] found possible fb from [PLANE:35:plane 1A]
[    1.991171] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] [CRTC:269:pipe B] not active, skipping
[    1.992414] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] [CRTC:387:pipe C] not active, skipping
[    1.992779] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[    1.993200] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] [CRTC:505:pipe D] not active, skipping
[    1.993366] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] checking [PLANE:35:plane 1A] for BIOS fb
[    1.993514] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] [CRTC:151:pipe A] area: 1920x1200, bpp: 32, size: 9216000
[    1.993654] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] fb big enough [PLANE:35:plane 1A] (9216000 >= 9216000)
[    1.993784] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] [CRTC:269:pipe B] not active, skipping
[    1.993907] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] [CRTC:387:pipe C] not active, skipping
[    1.994035] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] [CRTC:505:pipe D] not active, skipping
[    1.994155] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] using BIOS fb for initial console
[    1.994275] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[    1.997447] i915 0000:00:02.0: [drm:intel_hotplug_detect_connector [i915]] [CONNECTOR:517:HDMI-A-1] status updated from unknown to disconnected (epoch counter 0->1)
[    1.997762] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[    1.998127] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port D/TC#1: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[    1.998299] i915 0000:00:02.0: [drm:intel_hotplug_detect_connector [i915]] [CONNECTOR:526:DP-1] status updated from unknown to disconnected (epoch counter 0->1)
[    1.998854] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[    1.999032] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port E/TC#2: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[    1.999192] i915 0000:00:02.0: [drm:intel_hotplug_detect_connector [i915]] [CONNECTOR:536:DP-2] status updated from unknown to disconnected (epoch counter 0->1)
[    2.000901] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] 
[    2.001320] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[    2.001684] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port F/TC#3: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[    2.001823] i915 0000:00:02.0: [drm:intel_hotplug_detect_connector [i915]] [CONNECTOR:545:DP-3] status updated from unknown to disconnected (epoch counter 0->1)
[    2.001922] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[    2.002070] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port G/TC#4: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[    2.002189] i915 0000:00:02.0: [drm:intel_hotplug_detect_connector [i915]] [CONNECTOR:554:DP-4] status updated from unknown to disconnected (epoch counter 0->1)
[    2.002280] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1]
[    2.002277] i915 0000:00:02.0: [drm:drm_sysfs_hotplug_event [drm]] generating hotplug event
[    2.002300] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:508:eDP-1]
[    2.002438] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[    2.002523] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[    2.002599] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[    2.002674] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[    2.002701] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[    2.002724] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[    2.002746] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[    2.002773] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] VRR capable: yes
[    2.002856] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
[    2.002932] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
[    2.003210] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x03000 AUX -> (ret=  1) 00
[    2.003239] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] status updated from unknown to connected
[    2.003273] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] probed modes:
[    2.003283] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[    2.003291] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1]
[    2.003299] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[    2.003423] i915 0000:00:02.0: [drm:drm_sysfs_hotplug_event [drm]] generating hotplug event
[    2.007430] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1] disconnected
[    2.007439] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1]
[    2.007445] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[    2.007589] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1] disconnected
[    2.007596] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2]
[    2.007602] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[    2.007734] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2] disconnected
[    2.007740] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3]
[    2.007747] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[    2.007878] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3] disconnected
[    2.007885] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4]
[    2.007891] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[    2.008017] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4] disconnected
[    2.008024] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:508:eDP-1] enabled? yes
[    2.008041] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:517:HDMI-A-1] enabled? no
[    2.008057] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:526:DP-1] enabled? no
[    2.008072] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:536:DP-2] enabled? no
[    2.008086] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:545:DP-3] enabled? no
[    2.008101] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:554:DP-4] enabled? no
[    2.008116] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] Not using firmware configuration
[    2.008130] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:508:eDP-1] found preferred mode: 1920x1200
[    2.008144] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] picking CRTCs for 16384x16384 config
[    2.008159] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CRTC:151:pipe A] desired mode 1920x1200 set (0,0)
[    2.008175] i915 0000:00:02.0: [drm:__drm_fb_helper_initial_config_and_unlock [drm_kms_helper]] test CRTC 0 primary plane
[    2.008182] i915 0000:00:02.0: [drm:intel_fbdev_driver_fbdev_probe [i915]] re-using BIOS fb
[    2.008269] i915 0000:00:02.0: [drm:intel_fbdev_driver_fbdev_probe [i915]] allocated 1920x1200 fb
[    2.008525] fbcon: i915drmfb (fb0) is primary device
[    2.008608] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:508:eDP-1] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 36, max platform bpp 36)
[    2.008753] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:507:DDI A/PHY A][CRTC:151:pipe A] DP link limits: pixel clock 161790 kHz DSC off max lanes 2 max rate 270000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[    2.008835] i915 0000:00:02.0: [drm:intel_dp_compute_output_format [i915]] DP lane count 2 clock 270000 bpp input 24 compressed 0.0000 HDR no link rate required 485370 available 540000
[    2.008919] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:151:pipe A] hw max bpp: 24, pipe bpp: 24, dithering: 0
[    2.009017] i915 0000:00:02.0: [drm:intel_ddi_compute_config_late [i915]] [ENCODER:507:DDI A/PHY A] [CRTC:151:pipe A]
[    2.009114] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7, twm,*swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[    2.009193] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]      lines    1,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    1,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0
[    2.009272] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]     blocks   16,  81, 113, 129, 193, 193,   0,   0,   0,  49,    0 ->   16,  81, 113, 129, 193, 193,   0,   0,  30,  49,   63
[    2.009343] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]    min_ddb   19,  91, 126, 143, 214, 214,   0,   0,   0,  55,    0 ->   19,  91, 126, 143, 214, 214,   0,   0,  31,  55,   64
[    2.009409] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:65:plane 2A]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[    2.009469] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:65:plane 2A]      lines    1,   1,   1,   1,   1,   1,   0,   0,   1,   1,    1 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.009528] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:65:plane 2A]     blocks    7,   7,   7,   7,   7,   7,   0,   0,   7,   7,    7 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.009584] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:65:plane 2A]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.009640] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:95:plane 3A]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[    2.009694] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:95:plane 3A]      lines    1,   1,   1,   1,   1,   1,   0,   0,   1,   1,    1 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.009756] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:95:plane 3A]     blocks    7,   7,   7,   7,   7,   7,   0,   0,   7,   7,    7 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.009816] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:95:plane 3A]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.009878] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:125:plane 4A]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[    2.009941] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:125:plane 4A]      lines    1,   1,   1,   1,   1,   1,   0,   0,   1,   1,    1 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.010000] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:125:plane 4A]     blocks    7,   7,   7,   7,   7,   7,   0,   0,   7,   7,    7 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.010057] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:125:plane 4A]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.010111] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:135:plane 5A]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[    2.010169] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:135:plane 5A]      lines    1,   1,   1,   1,   1,   1,   0,   0,   1,   1,    1 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.010232] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:135:plane 5A]     blocks    7,   7,   7,   7,   7,   7,   0,   0,   7,   7,    7 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.010290] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:135:plane 5A]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.010346] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[    2.010401] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    1,   1,   1,   1,   1,   1,   0,   0,   1,   1,    1 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.010465] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    7,   7,   7,   7,   7,   7,   0,   0,   7,   7,    7 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.010527] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.010587] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 680
[    2.010686] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 680
[    2.010776] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 680
[    2.010861] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 680
[    2.010944] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 680
[    2.011023] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 680
[    2.011103] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 680
[    2.011188] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [fastset]
[    2.011279] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[    2.011365] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[    2.011452] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[    2.011541] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[    2.011626] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[    2.011707] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[    2.011789] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[    2.011868] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[    2.011948] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[    2.012027] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[    2.012105] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[    2.012183] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[    2.012260] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[    2.012338] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[    2.012415] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[    2.012513] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[    2.012605] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[    2.012700] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[    2.012789] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[    2.012876] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[    2.012959] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[    2.013041] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[    2.013121] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[    2.013200] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[    2.013282] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[    2.013372] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[    2.013459] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[    2.013544] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[    2.013632] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[    2.013722] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[    2.013808] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[    2.013892] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[    2.013972] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[    2.014053] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[    2.014141] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[    2.014232] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[    2.014318] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[    2.014401] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[    2.014482] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[    2.014563] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[    2.014642] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[    2.014720] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[    2.014809] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[    2.014896] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:563] 1920x1200 format = XR24 little-endian (0x34325258) modifier = 0x0, visible: yes
[    2.014980] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[    2.015062] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[    2.015143] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[    2.015223] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[    2.015302] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[    2.015379] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[    2.015456] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [NOFB], visible: no
[    2.024132] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:508:eDP-1]
[    2.024290] i915 0000:00:02.0: [drm:intel_modeset_verify_crtc [i915]] [CRTC:151:pipe A]
[    2.024424] i915 0000:00:02.0: [drm:icl_sagv_post_plane_update [i915]] Relaxing QGV points: 0x10b -> 0x0
[    2.024562] Console: switching to colour frame buffer device 240x75
[    2.092265] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[    2.092864] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: display version: 13
[    2.093603] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: display stepping: D0
[    2.097150] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: cursor_needs_physical: no
[    2.097813] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_cdclk_crawl: yes
[    2.098916] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_cdclk_squash: no
[    2.101448] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_ddi: yes
[    2.102091] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_dp_mst: yes
[    2.102727] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_dsb: yes
[    2.103356] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_fpga_dbg: yes
[    2.103986] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_gmch: no
[    2.104608] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_hotplug: yes
[    2.105233] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_hti: no
[    2.105851] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_ipc: yes
[    2.106477] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_overlay: no
[    2.107015] i915 0000:00:02.0: [drm:drm_fb_helper_hotplug_event [drm_kms_helper]] 
[    2.107118] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_psr: yes
[    2.107664] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] 
[    2.108206] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_psr_hw_tracking: no
[    2.108817] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1]
[    2.109365] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: overlay_needs_physical: no
[    2.109915] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:508:eDP-1]
[    2.110460] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: supports_tv: no
[    2.111061] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[    2.111554] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_hdcp: yes
[    2.112112] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[    2.112668] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_dmc: yes
[    2.113226] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[    2.113767] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_dsc: yes
[    2.114325] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[    2.114865] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: rawclk rate: 19200 kHz
[    2.115422] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[    2.115988] [drm:intel_dsm_detect.isra.0 [i915]] no _DSM method for intel device
[    2.116580] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[    2.117119] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: pciid=0x46a6 rev=0x0c platform=ALDERLAKE_P (subplatform=0x0) gen=12
[    2.117674] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[    2.118229] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: graphics version: 12
[    2.118786] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] VRR capable: yes
[    2.119334] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: media version: 12
[    2.119930] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
[    2.120456] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: graphics stepping: C0
[    2.121054] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
[    2.121569] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: media stepping: C0
[    2.122394] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x03000 AUX -> (ret=  1) 00
[    2.122695] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: gt: 0
[    2.123280] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] probed modes:
[    2.123839] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: memory-regions: 0x21
[    2.124392] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[    2.124974] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: page-sizes: 0x211000
[    2.125541] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1]
[    2.126098] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: platform: ALDERLAKE_P
[    2.126655] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[    2.127208] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: ppgtt-size: 48
[    2.128308] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: ppgtt-type: 2
[    2.128585] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling PW_B
[    2.128946] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: dma_mask_size: 39
[    2.129610] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling PW_C
[    2.130074] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: is_mobile: no
[    2.130743] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling PW_D
[    2.131216] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: require_force_probe: no
[    2.131889] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling PW_2
[    2.132366] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: is_dgfx: no
[    2.133207] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1] disconnected
[    2.134014] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_64bit_reloc: yes
[    2.135721] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1]
[    2.136066] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_64k_pages: no
[    2.136959] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[    2.137874] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: gpu_reset_clobbers_display: no
[    2.138195] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1] disconnected
[    2.140927] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_reset_engine: yes
[    2.142876] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2]
[    2.143003] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_3d_pipeline: yes
[    2.143802] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[    2.144189] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_flat_ccs: no
[    2.145801] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2] disconnected
[    2.146243] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_global_mocs: yes
[    2.149652] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3]
[    2.150250] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_gmd_id: no
[    2.151417] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[    2.151461] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_gt_uc: yes
[    2.152124] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_heci_pxp: no
[    2.153086] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3] disconnected
[    2.153809] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_heci_gscfi: no
[    2.156447] usb 3-4: New USB device found, idVendor=174f, idProduct=1812, bcdDevice=10.20
[    2.156905] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_guc_deprivilege: no
[    2.157501] usb 3-4: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[    2.158102] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_guc_tlb_invalidation: no
[    2.158707] usb 3-4: Product: Integrated Camera
[    2.159317] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_l3_ccs_read: no
[    2.159928] usb 3-4: Manufacturer:  
[    2.160546] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_l3_dpf: no
[    2.161167] usb 3-4: SerialNumber: 0001
[    2.161779] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_llc: yes
[    2.162485] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4]
[    2.163013] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_logical_ring_contexts: yes
[    2.163637] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[    2.164254] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_logical_ring_elsq: yes
[    2.164997] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4] disconnected
[    2.165543] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_media_ratio_mode: no
[    2.166162] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:508:eDP-1] enabled? yes
[    2.166780] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_mslice_steering: no
[    2.167398] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:517:HDMI-A-1] enabled? no
[    2.168012] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_oa_bpc_reporting: no
[    2.168702] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:526:DP-1] enabled? no
[    2.169286] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_oa_slice_contrib_limits: no
[    2.169899] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:536:DP-2] enabled? no
[    2.170515] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_oam: no
[    2.171131] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:545:DP-3] enabled? no
[    2.171740] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_one_eu_per_fuse_bit: no
[    2.172368] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:554:DP-4] enabled? no
[    2.172966] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_pxp: yes
[    2.173596] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] Not using firmware configuration
[    2.174171] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_rc6: yes
[    2.174771] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:508:eDP-1] found preferred mode: 1920x1200
[    2.175369] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_rc6p: no
[    2.175967] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] picking CRTCs for 1920x1200 config
[    2.176568] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_rps: yes
[    2.177192] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CRTC:151:pipe A] desired mode 1920x1200 set (0,0)
[    2.177764] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_runtime_pm: yes
[    2.178947] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_snoop: no
[    2.179596] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_coherent_ggtt: no
[    2.180255] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: tuning_thread_rr_after_dep: no
[    2.180917] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: unfenced_needs_alignment: no
[    2.181539] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: hws_needs_physical: no
[    2.182153] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_pooled_eu: no
[    2.182759] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: iommu: enabled
[    2.183363] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: available engines: 41403
[    2.183967] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: slice total: 1, mask=0001
[    2.184579] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: subslice total: 6
[    2.185188] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: slice0: 6 subslices, mask=0000003f
[    2.185803] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: EU total: 96
[    2.186406] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: EU per subslice: 16
[    2.187013] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has slice power gating: yes
[    2.187623] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has subslice power gating: no
[    2.188232] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has EU power gating: no
[    2.190285] i915 0000:00:02.0: [drm:drm_client_hotplug [drm]] fbdev: ret=0
[    2.205548] typec port0: bound usb3-port5 (ops connector_ops [usbcore])
[    2.206331] typec port0: bound usb2-port1 (ops connector_ops [usbcore])
[    2.207146] typec port0: bound usb4_port1 (ops connector_ops [thunderbolt])
[    2.223407] i915 0000:00:02.0: [drm:drm_fb_helper_hotplug_event [drm_kms_helper]] 
[    2.224274] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] 
[    2.225198] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1]
[    2.225911] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:508:eDP-1]
[    2.226775] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[    2.227603] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[    2.228361] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[    2.229019] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[    2.229636] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[    2.230251] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[    2.230857] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[    2.231469] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] VRR capable: yes
[    2.232144] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
[    2.232863] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
[    2.234536] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x03000 AUX -> (ret=  1) 00
[    2.237490] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] probed modes:
[    2.239019] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[    2.240656] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1]
[    2.241234] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[    2.245919] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1] disconnected
[    2.246952] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1]
[    2.249430] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[    2.250121] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1] disconnected
[    2.250675] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2]
[    2.251228] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[    2.251897] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2] disconnected
[    2.252448] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3]
[    2.253008] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[    2.253672] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3] disconnected
[    2.254217] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4]
[    2.254758] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[    2.255420] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4] disconnected
[    2.256017] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:508:eDP-1] enabled? yes
[    2.256624] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:517:HDMI-A-1] enabled? no
[    2.257204] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:526:DP-1] enabled? no
[    2.257781] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:536:DP-2] enabled? no
[    2.258358] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:545:DP-3] enabled? no
[    2.258915] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:554:DP-4] enabled? no
[    2.259467] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] Not using firmware configuration
[    2.260012] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:508:eDP-1] found preferred mode: 1920x1200
[    2.260575] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] picking CRTCs for 1920x1200 config
[    2.261112] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CRTC:151:pipe A] desired mode 1920x1200 set (0,0)
[    2.273934] i915 0000:00:02.0: [drm:drm_client_hotplug [drm]] fbdev: ret=0
[    2.300569] usb 3-7: new full-speed USB device number 4 using xhci_hcd
[    2.450879] usb 3-7: New USB device found, idVendor=1050, idProduct=0406, bcdDevice= 5.43
[    2.451769] usb 3-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.454785] usb 3-7: Product: YubiKey FIDO+CCID
[    2.455614] usb 3-7: Manufacturer: Yubico
[    2.580595] usb 3-10: new full-speed USB device number 5 using xhci_hcd
[    2.724108] usb 3-10: New USB device found, idVendor=8087, idProduct=0033, bcdDevice= 0.00
[    2.726176] usb 3-10: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.745421] hid-generic 0003:1050:0406.0002: hiddev0,hidraw1: USB HID v1.10 Device [Yubico YubiKey FIDO+CCID] on usb-0000:00:14.0-7/input0
[    2.746178] usbcore: registered new interface driver usbhid
[    2.746878] usbhid: USB HID core driver
[    2.987476] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    2.987513] device-mapper: uevent: version 1.0.3
[    2.987611] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
[    3.270513] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_2
[    3.270740] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling PW_2
[    3.270895] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port G/TC#4: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[    3.270900] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_2
[    3.272080] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port D/TC#1: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[    3.272082] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port F/TC#3: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[    3.272084] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling PW_2
[    3.272267] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port E/TC#2: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[    4.932715] i915 0000:00:02.0: [drm:intel_pps_vdd_off_sync_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turning VDD off
[    4.934081] i915 0000:00:02.0: [drm:intel_pps_vdd_off_sync_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x00000067
[   12.129056] PM: Image not found (code -22)
[   12.233191] EXT4-fs (dm-1): mounted filesystem 622c9f44-5f41-43a1-872a-da0f8f5f4759 ro with ordered data mode. Quota mode: none.
[   12.291875] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
[   12.393369] systemd[1]: Inserted module 'autofs4'
[   12.516188] systemd[1]: systemd 257.13-1~deb13u1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF -XKBCOMMON -UTMP +SYSVINIT +LIBARCHIVE)
[   12.518588] systemd[1]: Detected architecture x86-64.
[   12.519831] systemd[1]: Hostname set to <debian-t14-gen1-fuhrysteve>.
[   12.582321] systemd[1]: bpf-restrict-fs: LSM BPF program attached
[   12.713338] systemd-sysv-generator[525]: SysV service '/etc/init.d/openipmi' lacks a native systemd unit file, automatically generating a unit file for compatibility.
[   12.713534] systemd-fstab-generator[516]: x-systemd.device-timeout ignored for synology:/volume1/video
[   12.714227] systemd-sysv-generator[525]: Please update package to include a native systemd unit file.
[   12.715183] systemd-fstab-generator[516]: x-systemd.device-timeout ignored for synology:/volume1/homes
[   12.715905] systemd-sysv-generator[525]: ! This compatibility logic is deprecated, expect removal soon. !
[   12.817117] systemd[1]: Queued start job for default target graphical.target.
[   12.843988] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[   12.845361] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[   12.847081] systemd[1]: Created slice system-systemd\x2dcryptsetup.slice - Encrypted Volume Units Service Slice.
[   12.848512] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[   12.850147] systemd[1]: Created slice system-wg\x2dquick.slice - Slice /system/wg-quick.
[   12.851473] systemd[1]: Created slice user.slice - User and Session Slice.
[   12.852704] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[   12.854318] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[   12.855584] systemd[1]: Expecting device dev-disk-by\x2duuid-65eb294d\x2d871a\x2d4c76\x2db438\x2dec9bd34837bf.device - /dev/disk/by-uuid/65eb294d-871a-4c76-b438-ec9bd34837bf...
[   12.857255] systemd[1]: Expecting device dev-disk-by\x2duuid-8ec246e1\x2d94df\x2d4208\x2dbd8f\x2ddad88d29fe85.device - /dev/disk/by-uuid/8ec246e1-94df-4208-bd8f-dad88d29fe85...
[   12.858787] systemd[1]: Expecting device dev-disk-by\x2duuid-FD2A\x2d85AF.device - /dev/disk/by-uuid/FD2A-85AF...
[   12.859707] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[   12.860553] systemd[1]: Reached target nss-lookup.target - Host and Network Name Lookups.
[   12.862083] systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups.
[   12.862970] systemd[1]: Reached target slices.target - Slice Units.
[   12.864376] systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
[   12.865931] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[   12.866813] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[   12.868370] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[   12.875372] systemd[1]: Listening on rpcbind.socket - RPCbind Server Activation Socket.
[   12.881182] systemd[1]: Listening on systemd-coredump.socket - Process Core Dump Socket.
[   12.883392] systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
[   12.884937] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[   12.886561] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[   12.888124] systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
[   12.889662] systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements skipped, unmet condition check ConditionSecurity=measured-uki
[   12.889687] systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy skipped, unmet condition check ConditionSecurity=measured-uki
[   12.889813] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[   12.892732] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[   12.895220] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[   12.896902] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[   12.897780] systemd[1]: run-lock.mount: Directory /run/lock to mount over is not empty, mounting anyway.
[   12.899272] systemd[1]: Mounting run-lock.mount - Legacy Locks Directory /run/lock...
[   12.900806] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[   12.903709] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[   12.904932] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS skipped, unmet condition check ConditionPathExists=/etc/krb5.keytab
[   12.906234] systemd[1]: Starting blk-availability.service - Availability of block devices...
[   12.910278] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[   12.912548] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[   12.914668] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[   12.917372] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[   12.919333] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[   12.921156] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[   12.923112] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[   12.924204] systemd[1]: systemd-fsck-root.service - File System Check on Root Device skipped, unmet condition check ConditionPathExists=!/run/initramfs/fsck-root
[   12.924269] systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
[   12.927286] systemd[1]: Starting systemd-journald.service - Journal Service...
[   12.929811] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[   12.930589] systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement skipped, unmet condition check ConditionSecurity=measured-uki
[   12.931470] pstore: Using crash dump compression: deflate
[   12.931691] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[   12.934152] systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
[   12.946384] systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
[   12.956930] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[   12.971278] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[   12.972295] systemd-journald[549]: Collecting audit messages is disabled.
[   12.978681] pstore: Registered efi_pstore as persistent store backend
[   12.980474] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[   12.981691] systemd[1]: Mounted run-lock.mount - Legacy Locks Directory /run/lock.
[   12.983100] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[   12.984515] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[   12.986134] systemd[1]: Finished blk-availability.service - Availability of block devices.
[   12.987532] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[   12.988829] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[   12.989016] lp: driver loaded but no devices found
[   12.990850] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[   12.990974] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[   12.992999] systemd[1]: modprobe@drm.service: Deactivated successfully.
[   12.993109] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[   12.995072] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[   12.995172] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[   12.995477] ppdev: user-space parallel port driver
[   12.997911] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[   12.998020] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[   13.000092] systemd[1]: Finished systemd-udev-load-credentials.service - Load udev Rules from Credentials.
[   13.002612] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[   13.005098] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[   13.005566] EXT4-fs (dm-1): re-mounted 622c9f44-5f41-43a1-872a-da0f8f5f4759 r/w.
[   13.008080] i2c_dev: i2c /dev entries driver
[   13.008672] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[   13.011704] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[   13.013731] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[   13.017107] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[   13.019408] systemd[1]: Activating swap swapfile.swap - /swapfile...
[   13.020405] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database skipped, unmet condition check ConditionNeedsUpdate=/etc
[   13.020464] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival skipped, unmet condition check ConditionDirectoryNotEmpty=/sys/fs/pstore
[   13.021664] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[   13.023543] systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
[   13.024038] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[   13.027468] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[   13.028348] Adding 4194300k swap on /swapfile.  Priority:-1 extents:186 across:684662784k SS
[   13.029771] systemd[1]: Activated swap swapfile.swap - /swapfile.
[   13.032336] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[   13.033759] systemd[1]: Finished systemd-random-seed.service - Load/Save OS Random Seed.
[   13.034827] systemd[1]: Reached target swap.target - Swaps.
[   13.035603] systemd[1]: systemd-sysusers.service - Create System Users skipped, no trigger condition checks were met.
[   13.037514] systemd[1]: Starting systemd-timesyncd.service - Network Time Synchronization...
[   13.039357] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[   13.041517] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
[   13.045798] systemd[1]: Finished lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
[   13.053157] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[   13.054660] systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.
[   13.056850] systemd[1]: Set up automount mnt-synology\x2dhomes.automount.
[   13.058010] systemd[1]: Set up automount mnt-synology\x2dvideo.automount.
[   13.060916] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[   13.070063] systemd[1]: Started systemd-timesyncd.service - Network Time Synchronization.
[   13.071774] systemd[1]: Reached target time-set.target - System Time Set.
[   13.073963] systemd[1]: Started systemd-journald.service - Journal Service.
[   13.094037] systemd-journald[549]: Received client request to flush runtime journal.
[   13.188065] input: Intel HID events as /devices/platform/INTC1070:00/input/input13
[   13.207816] ACPI: AC: AC Adapter [AC] (off-line)
[   13.225459] resource: resource sanity check: requesting [mem 0x00000000fedc0000-0x00000000fedcffff], which spans more than PNP0C02:02 [mem 0xfedc0000-0xfedc7fff]
[   13.226677] caller igen6_probe+0x15a/0x835 [igen6_edac] mapping multiple BARs
[   13.228277] intel_pmc_core INT33A1:00:  initialized
[   13.228295] EDAC MC0: Giving out device to module igen6_edac controller Intel_client_SoC MC#0: DEV 0000:00:00.0 (INTERRUPT)
[   13.233691] EDAC MC1: Giving out device to module igen6_edac controller Intel_client_SoC MC#1: DEV 0000:00:00.0 (INTERRUPT)
[   13.235445] EDAC igen6: v2.5.1
[   13.241691] Non-volatile memory driver v1.3
[   13.282631] mc: Linux media interface: v0.10
[   13.285826] thinkpad_acpi: ThinkPad ACPI Extras v0.26
[   13.285829] thinkpad_acpi: http://ibm-acpi.sf.net/
[   13.285830] thinkpad_acpi: ThinkPad BIOS N3MET28W (1.27 ), EC N3MHT18W
[   13.285831] thinkpad_acpi: Lenovo ThinkPad T14 Gen 3, model 21AH00BSUS
[   13.290714] thinkpad_acpi: radio switch found; radios are enabled
[   13.292253] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
[   13.292253] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
[   13.293834] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[   13.293976] ee1004 0-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
[   13.294170] input: PC Speaker as /devices/platform/pcspkr/input/input14
[   13.294529] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
[   13.325186] thinkpad_acpi: battery 1 registered (start 0, stop 100, behaviours: 0xb)
[   13.326138] ACPI: battery: new hook: ThinkPad Battery Extension
[   13.361554] i915 0000:00:02.0: [drm:intel_backlight_device_update_status [i915]] updating intel_backlight, brightness=13575/19393
[   13.361689] i915 0000:00:02.0: [drm:intel_panel_actually_set_backlight [i915]] [CONNECTOR:508:eDP-1] set backlight level = 13643
[   13.393691] Error: Driver 'pcspkr' is already registered, aborting...
[   13.393770] Bluetooth: Core ver 2.22
[   13.394190] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   13.394392] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[   13.394571] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[   13.395570] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input15
[   13.395953] cfg80211: loaded regulatory.db is malformed or signature is missing/invalid
[   13.396565] i915 0000:00:02.0: [drm:i915_hdcp_component_bind [i915]] I915 HDCP comp bind
[   13.396730] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
[   13.397382] mei_pxp 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1: bound 0000:00:02.0 (ops i915_pxp_tee_component_ops [i915])
[   13.397595] videodev: Linux video capture interface: v2.00
[   13.399925] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[   13.399927] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[   13.399928] RAPL PMU: hw unit of domain package 2^-14 Joules
[   13.399929] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[   13.399929] RAPL PMU: hw unit of domain psys 2^-14 Joules
[   13.405836] proc_thermal_pci 0000:00:04.0: enabling device (0000 -> 0002)
[   13.406414] intel_rapl_common: Found RAPL domain package
[   13.443337] acpi-tad ACPI000E:00: registered as rtc1
[   13.445907] uvcvideo 3-4:1.0: Found UVC 1.10 device Integrated Camera (174f:1812)
[   13.446444] iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
[   13.449242] uvcvideo 3-4:1.2: Found UVC 1.50 device Integrated Camera (174f:1812)
[   13.450233] usbcore: registered new interface driver uvcvideo
[   13.451722] iwlwifi 0000:00:14.3: Detected crf-id 0x400410, cnv-id 0x80400 wfpm id 0x80000020
[   13.451772] iwlwifi 0000:00:14.3: PCI dev 51f0/0090, rev=0x370, rfid=0x2010d000
[   13.451775] iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6E AX211 160MHz
[   13.457847] iwlwifi 0000:00:14.3: loaded firmware version 89.4d42c933.0 so-a0-gf-a0-89.ucode op_mode iwlmvm
[   13.468564] NET: Registered PF_BLUETOOTH protocol family
[   13.468567] Bluetooth: HCI device and connection manager initialized
[   13.468572] Bluetooth: HCI socket layer initialized
[   13.468575] Bluetooth: L2CAP socket layer initialized
[   13.468584] Bluetooth: SCO socket layer initialized
[   13.533630] usbcore: registered new interface driver btusb
[   13.535322] Bluetooth: hci0: Device revision is 0
[   13.535338] Bluetooth: hci0: Secure boot is enabled
[   13.535343] Bluetooth: hci0: OTP lock is enabled
[   13.535347] Bluetooth: hci0: API lock is enabled
[   13.535350] Bluetooth: hci0: Debug lock is disabled
[   13.535354] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[   13.535362] Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38
[   13.535939] Bluetooth: hci0: DSM reset method type: 0x00
[   13.538522] Bluetooth: hci0: Found device firmware: intel/ibt-0040-0041.sfi
[   13.538548] Bluetooth: hci0: Boot Address: 0x100800
[   13.538549] Bluetooth: hci0: Firmware Version: 200-48.24
[   13.581716] intel_rapl_msr: PL4 support detected (updated).
[   13.582587] intel_rapl_common: Found RAPL domain package
[   13.583160] intel_rapl_common: Found RAPL domain core
[   13.583732] intel_rapl_common: Found RAPL domain uncore
[   13.583734] intel_rapl_common: Found RAPL domain psys
[   13.691502] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops intel_audio_component_bind_ops [i915])
[   13.692725] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_2
[   13.692981] i915 0000:00:02.0: [drm:intel_audio_component_get_power [i915]] restored AUD_FREQ_CNTRL to 0x8010
[   13.744332] snd_hda_codec_alc269 hdaudioC0D0: ALC257: picked fixup  for PCI SSID 17aa:0000
[   13.745927] snd_hda_codec_alc269 hdaudioC0D0: autoconfig for ALC257: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[   13.746586] snd_hda_codec_alc269 hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   13.747234] snd_hda_codec_alc269 hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[   13.747863] snd_hda_codec_alc269 hdaudioC0D0:    mono: mono_out=0x0
[   13.748380] snd_hda_codec_alc269 hdaudioC0D0:    inputs:
[   13.748930] snd_hda_codec_alc269 hdaudioC0D0:      Mic=0x19
[   13.800179] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[   13.800906] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[   13.801689] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 4
[   13.801890] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[   13.803391] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[   13.804328] iwlwifi 0000:00:14.3: Detected RF GF, rfid=0x2010d000
[   13.829533] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port A
[   13.830611] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port A
[   13.831345] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port A
[   13.832052] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port A
[   13.832738] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port B
[   13.832832] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port B
[   13.833838] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port B
[   13.833932] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port B
[   13.834029] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port C
[   13.834125] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port C
[   13.834219] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port C
[   13.834313] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port C
[   13.834408] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port D
[   13.837945] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port D
[   13.838040] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port D
[   13.838945] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port D
[   13.839038] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port E
[   13.839964] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port E
[   13.840064] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port E
[   13.840970] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port E
[   13.841061] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port F
[   13.841953] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port F
[   13.842041] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port F
[   13.842930] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port F
[   13.843019] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port G
[   13.843886] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port G
[   13.843980] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port G
[   13.844073] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port G
[   13.844167] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port H
[   13.844257] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port H
[   13.844351] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port H
[   13.847205] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port H
[   13.847300] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port I
[   13.847395] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port I
[   13.847492] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port I
[   13.847586] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port I
[   13.850958] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[   13.850994] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[   13.851019] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input18
[   13.851041] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input19
[   13.851064] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input20
[   13.851090] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input21
[   13.851123] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input22
[   13.890342] iwlwifi 0000:00:14.3: base HW address: a0:80:69:c6:8f:f4
[   13.935356] iwlwifi 0000:00:14.3 wlp0s20f3: renamed from wlan0
[   13.990745] EXT4-fs (nvme0n1p2): mounting ext2 file system using the ext4 subsystem
[   13.993045] EXT4-fs (nvme0n1p2): mounted filesystem 65eb294d-871a-4c76-b438-ec9bd34837bf r/w without journal. Quota mode: none.
[   14.003565] loop0: detected capacity change from 0 to 716176
[   14.003589] loop1: detected capacity change from 0 to 184
[   14.006198] loop: module loaded
[   14.007018] loop2: detected capacity change from 0 to 8
[   14.012981] loop3: detected capacity change from 0 to 130624
[   14.015678] loop4: detected capacity change from 0 to 130616
[   14.017063] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[   14.020269] loop5: detected capacity change from 0 to 187776
[   14.020752] loop6: detected capacity change from 0 to 940528
[   14.020942] loop7: detected capacity change from 0 to 100888
[   14.022017] loop8: detected capacity change from 0 to 99056
[   14.024367] loop9: detected capacity change from 0 to 948888
[   14.112389] audit: type=1400 audit(1780575382.699:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=876 comm="apparmor_parser"
[   14.114772] audit: type=1400 audit(1780575382.699:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=874 comm="apparmor_parser"
[   14.117162] audit: type=1400 audit(1780575382.699:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="chrome" pid=886 comm="apparmor_parser"
[   14.117166] audit: type=1400 audit(1780575382.699:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="vscode" pid=888 comm="apparmor_parser"
[   14.117170] audit: type=1400 audit(1780575382.699:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="cam" pid=883 comm="apparmor_parser"
[   14.123486] audit: type=1400 audit(1780575382.699:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="chromium" pid=887 comm="apparmor_parser"
[   14.123490] audit: type=1400 audit(1780575382.699:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="crun" pid=889 comm="apparmor_parser"
[   14.123493] audit: type=1400 audit(1780575382.699:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-checkns" pid=884 comm="apparmor_parser"
[   14.123496] audit: type=1400 audit(1780575382.699:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Discord" pid=875 comm="apparmor_parser"
[   14.123501] audit: type=1400 audit(1780575382.699:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="busybox" pid=882 comm="apparmor_parser"
[   15.074161] RPC: Registered named UNIX socket transport module.
[   15.074870] RPC: Registered udp transport module.
[   15.075562] RPC: Registered tcp transport module.
[   15.076234] RPC: Registered tcp-with-tls transport module.
[   15.076989] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   15.097622] Bluetooth: hci0: Waiting for firmware download to complete
[   15.098770] Bluetooth: hci0: Firmware loaded in 1523675 usecs
[   15.099655] Bluetooth: hci0: Waiting for device to boot
[   15.115472] Bluetooth: hci0: Device booted in 15592 usecs
[   15.118948] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-0040-0041.ddc
[   15.121663] Bluetooth: hci0: Applying Intel DDC parameters completed
[   15.125566] Bluetooth: hci0: Firmware timestamp 2024.48 buildtype 1 build 81864
[   15.126442] Bluetooth: hci0: Firmware SHA1: 0xc115e35a
[   15.131476] Bluetooth: hci0: Fseq status: Success (0x00)
[   15.132002] Bluetooth: hci0: Fseq executed: 00.00.02.41
[   15.132535] Bluetooth: hci0: Fseq BT Top: 00.00.02.41
[   15.311011] Process accounting resumed
[   15.323654] IPMI message handler: version 39.2
[   15.327645] ipmi device interface
[   15.352628] ipmi_si: IPMI System Interface driver
[   15.353430] ipmi_si: Unable to find any System Interface(s)
[   15.394236] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   15.394243] Bluetooth: BNEP filters: protocol multicast
[   15.394258] Bluetooth: BNEP socket layer initialized
[   15.397332] Bluetooth: MGMT ver 1.23
[   15.414001] warning: `atop' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[   15.434657] NET: Registered PF_ALG protocol family
[   15.464762] Bluetooth: RFCOMM TTY layer initialized
[   15.465500] Bluetooth: RFCOMM socket layer initialized
[   15.466235] Bluetooth: RFCOMM ver 1.11
[   15.500173] NET: Registered PF_QIPCRTR protocol family
[   15.878784] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[   15.879505] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[   15.880206] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[   15.880211] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 4
[   15.881016] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[   16.185094] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[   16.185806] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[   16.186499] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[   16.186503] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 4
[   16.187173] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[   17.035931] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.061310] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1]
[   17.061334] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:508:eDP-1]
[   17.061497] i915 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turning VDD on
[   17.061707] i915 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x0000006f
[   17.061818] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   17.061905] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[   17.061990] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[   17.062077] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[   17.062122] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   17.062155] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[   17.062186] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[   17.062221] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] VRR capable: yes
[   17.062310] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
[   17.062394] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
[   17.062680] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x03000 AUX -> (ret=  1) 00
[   17.062740] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] probed modes:
[   17.062755] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   17.062829] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1]
[   17.062841] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[   17.066971] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1] disconnected
[   17.067057] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1]
[   17.067072] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[   17.067249] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port D/TC#1: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[   17.067389] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1] disconnected
[   17.067437] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2]
[   17.067448] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[   17.067584] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port E/TC#2: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[   17.067717] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2] disconnected
[   17.067755] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3]
[   17.067766] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[   17.067900] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port F/TC#3: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[   17.068032] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3] disconnected
[   17.068073] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4]
[   17.068084] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[   17.068218] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port G/TC#4: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[   17.068350] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4] disconnected
[   17.214214] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.239615] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   17.239746] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   17.239913] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0
[   17.240028] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21
[   17.240131] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22
[   17.322522] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.322803] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.790953] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.804052] rfkill: input handler disabled
[   17.832200] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.837041] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.839080] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.849668] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.857267] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.863484] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.934357] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.934702] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.936785] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.954664] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.955237] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   18.014585] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   18.034127] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   18.084499] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port G/TC#4: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[   18.084710] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port F/TC#3: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[   18.084861] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port E/TC#2: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[   18.085006] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port D/TC#1: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[   18.117797] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.118054] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   18.118233] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]      lines    1,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    4,   5,   7,   8,  12,  12,   0,   0,   0,   4,    0
[   18.118368] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]     blocks   16,  81, 113, 129, 193, 193,   0,   0,  30,  49,   63 ->   62,  78, 108, 123, 184, 184,   0,   0, 137,  62,  137
[   18.118519] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]    min_ddb   19,  91, 126, 143, 214, 214,   0,   0,  31,  55,   64 ->  123, 184, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   18.118674] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   18.118831] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   18.118988] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   18.119143] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   18.122820] i915 0000:00:02.0: [drm:__intel_fbc_disable [i915]] Disabling FBC on [PLANE:35:plane 1A]
[   18.157331] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.161030] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.174732] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.190615] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.207309] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.224011] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.240909] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.257671] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.274004] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.290737] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.307471] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.324124] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.341026] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.357399] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.374000] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.390616] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.407206] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.423943] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.440571] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.457155] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.473788] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.490451] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.507121] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.523775] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.540474] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.557207] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.582646] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.591472] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.607220] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.623873] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.640646] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.657405] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.674015] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.690818] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.707380] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.724074] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.740710] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.757342] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.776716] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.790637] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.807358] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.824061] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.840665] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.857434] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.874080] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.890746] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.907400] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.927473] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.943792] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.957642] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.974101] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.001342] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   19.009556] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   19.024242] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.040875] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   19.057606] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   19.074269] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.090858] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   19.107521] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   19.124210] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.140860] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   19.166652] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   19.183388] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.199838] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   19.216505] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   19.233145] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.249790] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   19.285828] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.286489] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   19.299761] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   19.435455] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   19.437040] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   19.550339] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.551639] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   19.722562] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.723374] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   19.780756] i915 0000:00:02.0: [drm:intel_pps_vdd_off_sync_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turning VDD off
[   19.781486] i915 0000:00:02.0: [drm:intel_pps_vdd_off_sync_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x00000067
[   19.841053] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.842594] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   19.984864] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.986824] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   20.000526] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   20.018292] wlp0s20f3: authenticate with 60:d0:2c:1d:1d:9c (local address=a0:80:69:c6:8f:f4)
[   20.019464] wlp0s20f3: send auth to 60:d0:2c:1d:1d:9c (try 1/3)
[   20.063234] wlp0s20f3: authenticated
[   20.068592] wlp0s20f3: associate with 60:d0:2c:1d:1d:9c (try 1/3)
[   20.071311] wlp0s20f3: RX AssocResp from 60:d0:2c:1d:1d:9c (capab=0x11 status=0 aid=1)
[   20.084428] wlp0s20f3: associated
[   20.101700] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   20.102771] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   20.147299] wlp0s20f3: Limiting TX power to 30 (30 - 0) dBm as advertised by 60:d0:2c:1d:1d:9c
[   20.154690] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   20.155838] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   20.227196] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   20.228209] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   20.369527] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   20.370793] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   20.441132] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   20.442261] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   20.543371] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   20.544376] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   20.727175] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   20.728583] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   20.939480] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   20.941788] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   20.971477] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   20.989042] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   21.005182] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:570]
[   21.021679] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   21.037776] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   21.054794] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:570]
[   21.071312] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   21.088266] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   21.104738] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   21.121579] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   21.139974] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   21.156774] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   21.173444] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   21.190117] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   21.209969] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   21.226008] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   21.242855] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   21.260035] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   21.275937] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   21.293505] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   21.310791] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   21.318887] rfkill: input handler enabled
[   21.834079] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   21.834518] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   21.858565] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1]
[   21.858584] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:508:eDP-1]
[   21.858703] i915 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turning VDD on
[   21.858869] i915 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x0000006f
[   21.858947] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   21.859007] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[   21.859064] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[   21.859122] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[   21.859158] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   21.859179] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[   21.859200] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[   21.859224] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] VRR capable: yes
[   21.859290] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
[   21.859350] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
[   21.859596] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x03000 AUX -> (ret=  1) 00
[   21.859637] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] probed modes:
[   21.859649] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   21.860406] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1]
[   21.860416] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[   21.864566] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1] disconnected
[   21.864607] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1]
[   21.864615] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[   21.864741] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port D/TC#1: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[   21.864843] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1] disconnected
[   21.864872] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2]
[   21.864878] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[   21.864984] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port E/TC#2: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[   21.865080] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2] disconnected
[   21.865106] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3]
[   21.865112] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[   21.865217] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port F/TC#3: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[   21.865316] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3] disconnected
[   21.865340] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4]
[   21.865346] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[   21.865450] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port G/TC#4: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[   21.865547] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4] disconnected
[   21.918958] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   22.007582] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   22.007699] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:508:eDP-1] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 30, max platform bpp 36)
[   22.007833] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:507:DDI A/PHY A][CRTC:151:pipe A] DP link limits: pixel clock 161790 kHz DSC off max lanes 2 max rate 270000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   22.007903] i915 0000:00:02.0: [drm:intel_dp_compute_output_format [i915]] DP lane count 2 clock 270000 bpp input 24 compressed 0.0000 HDR no link rate required 485370 available 540000
[   22.007973] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:151:pipe A] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   22.008058] i915 0000:00:02.0: [drm:intel_ddi_compute_config_late [i915]] [ENCODER:507:DDI A/PHY A] [CRTC:151:pipe A]
[   22.008129] i915 0000:00:02.0: [drm:intel_dpll_crtc_put [i915]] [CRTC:151:pipe A] releasing DPLL 1
[   22.008234] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:151:pipe A] allocated DPLL 0
[   22.008316] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:151:pipe A] reserving DPLL 0
[   22.008398] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   22.008527] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   22.008644] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   22.008747] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   22.008828] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   22.008909] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   22.008988] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   22.009068] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   22.009149] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   22.009231] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   22.009312] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   22.009393] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   22.009474] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   22.009555] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   22.009635] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   22.009713] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   22.009792] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   22.009874] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   22.009956] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   22.010037] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   22.010119] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   22.010198] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   22.010278] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   22.010358] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   22.010437] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   22.010518] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   22.010601] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   22.010684] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   22.010765] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   22.010847] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   22.010927] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   22.011018] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   22.011101] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   22.011181] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   22.011260] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   22.011339] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.011419] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.011502] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.011584] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   22.011664] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   22.011744] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.011823] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.011905] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.011985] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   22.012066] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   22.012147] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   22.012226] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   22.012305] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[   22.012386] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[   22.012495] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[   22.012585] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[   22.012678] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [NOFB], visible: no
[   22.012796] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:508:eDP-1] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 30, max platform bpp 36)
[   22.012902] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:507:DDI A/PHY A][CRTC:151:pipe A] DP link limits: pixel clock 161790 kHz DSC off max lanes 2 max rate 270000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   22.012966] i915 0000:00:02.0: [drm:intel_dp_compute_output_format [i915]] DP lane count 2 clock 270000 bpp input 24 compressed 0.0000 HDR no link rate required 485370 available 540000
[   22.013031] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:151:pipe A] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   22.013118] i915 0000:00:02.0: [drm:intel_ddi_compute_config_late [i915]] [ENCODER:507:DDI A/PHY A] [CRTC:151:pipe A]
[   22.013183] i915 0000:00:02.0: [drm:intel_dpll_crtc_put [i915]] [CRTC:151:pipe A] releasing DPLL 1
[   22.013274] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:151:pipe A] allocated DPLL 0
[   22.013354] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:151:pipe A] reserving DPLL 0
[   22.013434] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   22.013516] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   22.013599] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   22.013682] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   22.013763] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   22.013842] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   22.013921] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   22.014002] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   22.014083] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   22.014162] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   22.014242] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   22.014322] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   22.014401] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   22.014483] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   22.014565] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   22.014645] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   22.014726] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   22.014804] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   22.014883] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   22.014965] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   22.015047] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   22.015128] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   22.015209] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   22.015288] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   22.015369] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   22.015448] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   22.015527] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   22.015607] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   22.015686] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   22.015763] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   22.015842] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   22.015921] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   22.016002] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   22.016081] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   22.016159] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   22.016241] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.016320] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.016398] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.016504] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   22.016602] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   22.016700] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.016779] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.016858] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.016937] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   22.017019] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   22.017101] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   22.017181] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   22.017262] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[   22.017342] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[   22.017423] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[   22.017503] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[   22.017583] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [NOFB], visible: no
[   22.017705] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:508:eDP-1] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 30, max platform bpp 36)
[   22.017811] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:507:DDI A/PHY A][CRTC:151:pipe A] DP link limits: pixel clock 161790 kHz DSC off max lanes 2 max rate 270000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   22.017874] i915 0000:00:02.0: [drm:intel_dp_compute_output_format [i915]] DP lane count 2 clock 270000 bpp input 24 compressed 0.0000 HDR no link rate required 485370 available 540000
[   22.017938] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:151:pipe A] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   22.018022] i915 0000:00:02.0: [drm:intel_ddi_compute_config_late [i915]] [ENCODER:507:DDI A/PHY A] [CRTC:151:pipe A]
[   22.018086] i915 0000:00:02.0: [drm:intel_dpll_crtc_put [i915]] [CRTC:151:pipe A] releasing DPLL 1
[   22.018174] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:151:pipe A] allocated DPLL 0
[   22.018255] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:151:pipe A] reserving DPLL 0
[   22.018333] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   22.018416] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   22.018497] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   22.018576] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   22.018655] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   22.018732] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   22.018813] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   22.018893] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   22.018973] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   22.019053] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   22.019130] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   22.019209] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   22.019290] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   22.019371] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   22.019452] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   22.019532] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   22.019610] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   22.019689] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   22.019770] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   22.019850] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   22.019932] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   22.020011] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   22.020095] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   22.020178] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   22.020259] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   22.020337] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   22.020418] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   22.020508] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   22.020608] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   22.020703] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   22.020783] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   22.020863] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   22.020943] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   22.021022] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   22.021101] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   22.021183] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.021264] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.021342] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.021423] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   22.021504] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   22.021584] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.021664] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.021744] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.021824] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   22.021904] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   22.021986] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   22.022066] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   22.022147] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[   22.022227] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[   22.022309] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[   22.022391] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[   22.022473] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [NOFB], visible: no
[   22.022566] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:508:eDP-1] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 30, max platform bpp 36)
[   22.022669] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:507:DDI A/PHY A][CRTC:151:pipe A] DP link limits: pixel clock 161790 kHz DSC off max lanes 2 max rate 270000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   22.022732] i915 0000:00:02.0: [drm:intel_dp_compute_output_format [i915]] DP lane count 2 clock 270000 bpp input 24 compressed 0.0000 HDR no link rate required 485370 available 540000
[   22.022794] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:151:pipe A] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   22.022879] i915 0000:00:02.0: [drm:intel_ddi_compute_config_late [i915]] [ENCODER:507:DDI A/PHY A] [CRTC:151:pipe A]
[   22.022943] i915 0000:00:02.0: [drm:intel_dpll_crtc_put [i915]] [CRTC:151:pipe A] releasing DPLL 1
[   22.023029] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:151:pipe A] allocated DPLL 0
[   22.023111] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:151:pipe A] reserving DPLL 0
[   22.023191] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   22.023273] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   22.023358] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   22.023441] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   22.023520] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   22.023601] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   22.023681] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   22.023763] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   22.023844] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   22.023924] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   22.024004] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   22.024085] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   22.024166] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   22.024247] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   22.024329] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   22.024409] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   22.024502] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   22.024601] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   22.024701] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   22.024780] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   22.024862] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   22.024944] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   22.025026] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   22.025107] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   22.025192] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   22.025274] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   22.025354] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   22.025434] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   22.025515] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   22.025596] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   22.025677] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   22.025758] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   22.025840] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   22.025920] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   22.025999] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   22.026079] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.026158] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.026237] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.026317] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   22.026397] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   22.026478] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.026558] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.026640] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.026721] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   22.026801] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   22.026882] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   22.026963] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   22.027045] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[   22.027125] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[   22.027204] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[   22.027286] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[   22.027365] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [NOFB], visible: no
[   22.080169] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   22.105014] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:570]
[   22.112434] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   22.112590] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:508:eDP-1] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 30, max platform bpp 36)
[   22.112738] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:507:DDI A/PHY A][CRTC:151:pipe A] DP link limits: pixel clock 161790 kHz DSC off max lanes 2 max rate 270000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   22.112818] i915 0000:00:02.0: [drm:intel_dp_compute_output_format [i915]] DP lane count 2 clock 270000 bpp input 24 compressed 0.0000 HDR no link rate required 485370 available 540000
[   22.112897] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:151:pipe A] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   22.113001] i915 0000:00:02.0: [drm:intel_ddi_compute_config_late [i915]] [ENCODER:507:DDI A/PHY A] [CRTC:151:pipe A]
[   22.113082] i915 0000:00:02.0: [drm:intel_dpll_crtc_put [i915]] [CRTC:151:pipe A] releasing DPLL 1
[   22.113201] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:151:pipe A] allocated DPLL 0
[   22.113297] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:151:pipe A] reserving DPLL 0
[   22.113399] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   22.113498] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   22.113598] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   22.113692] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   22.113784] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   22.113877] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   22.113971] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   22.114063] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   22.114158] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   22.114252] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   22.114345] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   22.114438] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   22.114531] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   22.114625] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   22.114719] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   22.114815] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   22.114912] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   22.115006] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   22.115099] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   22.115195] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   22.115291] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   22.115388] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   22.115483] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   22.115576] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   22.115671] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   22.115765] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   22.115860] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   22.115957] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   22.116051] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   22.116146] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   22.116237] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   22.116330] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   22.116424] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   22.116528] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   22.116638] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   22.116741] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.116842] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.116940] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.117038] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   22.117137] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   22.117238] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.117334] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.117433] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.117534] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   22.117632] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:569] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   22.117734] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   22.117834] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   22.117936] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[   22.118038] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[   22.118130] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[   22.118223] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[   22.118316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [NOFB], visible: no
[   22.119318] i915 0000:00:02.0: [drm:intel_edp_backlight_off [i915]] 
[   22.324768] i915 0000:00:02.0: [drm:intel_backlight_set_pwm_level [i915]] [CONNECTOR:508:eDP-1] set backlight PWM = 0
[   22.325755] i915 0000:00:02.0: [drm:intel_disable_transcoder [i915]] disabling pipe A
[   22.339702] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00600 AUX <- (ret=  1) 02
[   22.339842] i915 0000:00:02.0: [drm:intel_pps_off_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turn panel power off
[   22.340435] i915 0000:00:02.0: [drm:intel_pps_off_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 wait for panel power off time
[   22.341059] i915 0000:00:02.0: [drm:wait_panel_status [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 mask: 0xb0000000 value: 0x00000000 PP_STATUS: 0xa0000002 PP_CONTROL: 0x00000060
[   22.396006] i915 0000:00:02.0: [drm:icp_irq_handler [i915]] hotplug event received, stat 0x00010000, dig 0x0000008a, pins 0x00000010, long 0x00000010
[   22.396617] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:507:DDI A/PHY A] - long
[   22.397089] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] Received HPD interrupt on PIN 4 - cnt: 10
[   22.397562] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] ignoring long hpd on eDP [ENCODER:507:DDI A/PHY A]
[   22.402621] i915 0000:00:02.0: [drm:intel_pps_off_unlocked [i915]] Wait complete
[   22.403000] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling DDI_IO_A
[   22.403444] i915 0000:00:02.0: [drm:intel_dpll_disable [i915]] disable DPLL 1 (active 0x1, on? 1) for [CRTC:151:pipe A]
[   22.403859] i915 0000:00:02.0: [drm:intel_dpll_disable [i915]] disabling DPLL 1
[   22.404224] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling AUX_A
[   22.404632] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:507:DDI A/PHY A]
[   22.404963] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:516:DDI B/PHY B]
[   22.405268] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:525:DDI TC1/PHY TC1]
[   22.405566] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:527:DP-MST A]
[   22.405873] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:528:DP-MST B]
[   22.406155] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:529:DP-MST C]
[   22.406434] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:530:DP-MST D]
[   22.406712] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:535:DDI TC2/PHY TC2]
[   22.406986] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:537:DP-MST A]
[   22.407249] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:538:DP-MST B]
[   22.407511] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:539:DP-MST C]
[   22.407767] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:540:DP-MST D]
[   22.407982] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:544:DDI TC3/PHY TC3]
[   22.408060] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:546:DP-MST A]
[   22.408138] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:547:DP-MST B]
[   22.408215] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:548:DP-MST C]
[   22.408292] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:549:DP-MST D]
[   22.408369] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:553:DDI TC4/PHY TC4]
[   22.408442] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:555:DP-MST A]
[   22.408534] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:556:DP-MST B]
[   22.408625] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:557:DP-MST C]
[   22.408718] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:558:DP-MST D]
[   22.408799] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:517:HDMI-A-1]
[   22.408877] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:526:DP-1]
[   22.408954] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:536:DP-2]
[   22.409032] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:545:DP-3]
[   22.409111] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:554:DP-4]
[   22.409201] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling AUX_A
[   22.409292] i915 0000:00:02.0: [drm:intel_dpll_enable [i915]] enable DPLL 0 (active 0x1, on? 0) for [CRTC:151:pipe A]
[   22.409378] i915 0000:00:02.0: [drm:intel_dpll_enable [i915]] enabling DPLL 0
[   22.409490] i915 0000:00:02.0: [drm:intel_pps_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turn panel power on
[   22.409571] i915 0000:00:02.0: [drm:wait_panel_power_cycle [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 wait for panel power cycle (494 ms remaining)
[   22.725092] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
[   22.725097] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
[   22.818654] kauditd_printk_skb: 132 callbacks suppressed
[   22.818663] audit: type=1400 audit(1780575391.407:144): apparmor="STATUS" operation="profile_load" profile="unconfined" name="docker-default" pid=2670 comm="apparmor_parser"
[   22.862731] evm: overlay not supported
[   22.888460] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port G/TC#4: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[   22.888550] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port F/TC#3: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[   22.888623] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port E/TC#2: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[   22.888641] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port D/TC#1: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[   22.916607] i915 0000:00:02.0: [drm:wait_panel_status [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 mask: 0xb800000f value: 0x00000000 PP_STATUS: 0x08000001 PP_CONTROL: 0x00000060
[   22.996642] i915 0000:00:02.0: [drm:intel_pps_on_unlocked [i915]] Wait complete
[   22.996879] i915 0000:00:02.0: [drm:intel_pps_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 wait for panel power on
[   22.997045] i915 0000:00:02.0: [drm:wait_panel_status [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 mask: 0xb000000f value: 0x80000008 PP_STATUS: 0x9000000a PP_CONTROL: 0x00000063
[   23.128189] i915 0000:00:02.0: [drm:icp_irq_handler [i915]] hotplug event received, stat 0x00010000, dig 0x0000008a, pins 0x00000010, long 0x00000010
[   23.129554] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:507:DDI A/PHY A] - long
[   23.130786] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] Received HPD interrupt on PIN 4 - cnt: 20
[   23.132016] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] ignoring long hpd on eDP [ENCODER:507:DDI A/PHY A]
[   23.208484] i915 0000:00:02.0: [drm:intel_pps_on_unlocked [i915]] Wait complete
[   23.208675] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling DDI_IO_A
[   23.208885] i915 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turning VDD on
[   23.209080] i915 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x0000006b
[   23.209357] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00300 AUX -> (ret=  3) 00 00 00
[   23.209584] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00300 AUX <- (ret=  3) 00 aa 01
[   23.209779] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00600 AUX <- (ret=  1) 01
[   23.210091] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00000 AUX -> (ret= 15) 11 0a 82 41 00 00 01 40 02 02 06 00 00 0b 00
[   23.210099] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX A/DDI A/PHY A: DPCD: 11 0a 82 41 00 00 01 40 02 02 06 00 00 0b 00
[   23.210115] i915 0000:00:02.0: [drm:intel_dp_start_link_train [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] Using LINK_BW_SET value 0a
[   23.210404] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00107 AUX <- (ret=  2) 80 01
[   23.210607] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00100 AUX <- (ret=  2) 0a 82
[   23.210616] i915 0000:00:02.0: [drm:intel_dp_set_signal_levels [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] 8b/10b, lanes: 2, vswing levels: 0/0/0/0, pre-emphasis levels: 0/0/0/0
[   23.210766] i915 0000:00:02.0: [drm:intel_dp_program_link_training_pattern [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] Using DP training pattern TPS1
[   23.211044] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00102 AUX <- (ret=  3) 21 00 00
[   23.211410] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00202 AUX -> (ret=  6) 11 00 80 02 00 00
[   23.211418] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] Clock recovery OK
[   23.211493] i915 0000:00:02.0: [drm:intel_dp_program_link_training_pattern [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] Using DP training pattern TPS2
[   23.211765] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00102 AUX <- (ret=  3) 22 00 00
[   23.212510] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00202 AUX -> (ret=  6) 77 00 81 02 00 00
[   23.212520] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] Channel EQ done. DP Training successful
[   23.212592] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] Link Training passed at link rate = 270000, lane count = 2
[   23.212847] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00102 AUX <- (ret=  1) 00
[   23.213185] i915 0000:00:02.0: [drm:intel_enable_transcoder [i915]] enabling pipe A
[   23.213310] i915 0000:00:02.0: [drm:intel_edp_backlight_on [i915]] 
[   23.213387] i915 0000:00:02.0: [drm:intel_backlight_enable [i915]] pipe A
[   23.213524] i915 0000:00:02.0: [drm:intel_backlight_set_pwm_level [i915]] [CONNECTOR:508:eDP-1] set backlight PWM = 13643
[   23.346755] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:508:eDP-1]
[   23.346898] i915 0000:00:02.0: [drm:intel_modeset_verify_crtc [i915]] [CRTC:151:pipe A]
[   23.439952] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   23.466684] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   23.466943] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   23.523455] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   23.555667] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   23.563578] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.580856] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.597212] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.613624] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:567]
[   23.630659] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.647374] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.663978] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.671199] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   23.674622] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   23.680434] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.697527] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.714015] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.716493] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   23.730628] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.747358] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.764032] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.780533] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.797219] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.813964] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.830625] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.848371] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:567]
[   23.863955] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.880646] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.890861] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   23.892377] Initializing XFRM netlink socket
[   23.897160] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:567]
[   23.913922] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.926911] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   23.930716] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.948159] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.965025] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.983506] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.999379] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.015986] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.032596] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.050028] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.066004] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.082588] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.087969] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   24.099150] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.106986] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   24.115951] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.132567] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.149351] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.165826] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.182620] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.199179] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.215873] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.232347] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.249641] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.265753] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.282598] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.297320] i915 0000:00:02.0: [drm:intel_backlight_device_update_status [i915]] updating intel_backlight, brightness=13575/19393
[   24.297485] i915 0000:00:02.0: [drm:intel_panel_actually_set_backlight [i915]] [CONNECTOR:508:eDP-1] set backlight level = 13643
[   24.299471] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.316286] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.336926] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.349487] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.366111] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.382692] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.400693] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:567]
[   24.401154] br-ebac236f630d: port 1(veth7461854) entered blocking state
[   24.401161] br-ebac236f630d: port 1(veth7461854) entered disabled state
[   24.401173] veth7461854: entered allmulticast mode
[   24.401224] veth7461854: entered promiscuous mode
[   24.416182] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.433781] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.443312] eth0: renamed from veth8021585
[   24.443864] br-ebac236f630d: port 1(veth7461854) entered blocking state
[   24.443872] br-ebac236f630d: port 1(veth7461854) entered forwarding state
[   24.448269] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   24.450704] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.467063] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.467780] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   24.472689] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   24.483860] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.502153] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.517547] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.533889] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.535834] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   24.543838] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   24.551112] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.573406] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:567]
[   24.584227] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.601359] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.616746] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.619092] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:567]
[   24.619256] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   24.619445] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0
[   24.619639] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21
[   24.619819] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22
[   24.628306] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   24.628512] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0
[   24.628680] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21
[   24.628843] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22
[   24.640943] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.649225] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.665880] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.675152] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   24.682625] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.699277] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.717028] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.733776] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.750531] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.767056] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.783767] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.800412] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.817069] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.833833] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.851077] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.867201] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.883749] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.900390] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.916995] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.933702] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.950439] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.967136] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.983814] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.000206] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.017080] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.033609] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.050353] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.067049] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.084723] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.101265] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.117912] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.134789] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.150407] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.167003] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.184698] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.201392] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.217956] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.224740] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00202 AUX -> (ret=  6) 77 00 01 03 00 00
[   25.234632] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.251327] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.267995] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.284691] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.301593] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.318659] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.335222] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.351646] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.356548] netfs: FS-Cache loaded
[   25.368413] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.385160] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.401675] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.419250] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.435065] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.451530] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.468145] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.484801] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.501602] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.518516] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.524815] Key type dns_resolver registered
[   25.534993] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.551610] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.568384] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.585022] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.601420] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.618106] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.634977] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.713081] NFS: Registering the id_resolver key type
[   25.713099] Key type id_resolver registered
[   25.713100] Key type id_legacy registered
[   25.973812] systemd-fstab-generator[4002]: x-systemd.device-timeout ignored for synology:/volume1/video
[   25.974122] systemd-fstab-generator[4002]: x-systemd.device-timeout ignored for synology:/volume1/homes
[   25.979584] systemd-sysv-generator[4011]: SysV service '/etc/init.d/openipmi' lacks a native systemd unit file, automatically generating a unit file for compatibility.
[   25.979591] systemd-sysv-generator[4011]: Please update package to include a native systemd unit file.
[   25.979594] systemd-sysv-generator[4011]: ! This compatibility logic is deprecated, expect removal soon. !
[   27.109223] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.119403] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   27.144058] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.152845] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   27.169532] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.186530] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   27.202817] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.219517] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   27.236489] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.252833] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   27.270132] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.286947] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   27.303643] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.319461] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   27.346826] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.352483] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   27.370178] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.386716] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   27.402766] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.419289] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   27.437837] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.685589] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   27.702582] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.719247] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   27.847939] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.972582] i915 0000:00:02.0: [drm:intel_pps_vdd_off_sync_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turning VDD off
[   27.973199] i915 0000:00:02.0: [drm:intel_pps_vdd_off_sync_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x00000067
[   28.187404] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   28.205057] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   28.406872] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   28.420846] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   28.437931] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   28.454124] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   28.470767] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   28.487932] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   28.503510] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   28.520930] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   28.537684] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   28.554509] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   28.570645] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   28.588203] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   28.604098] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   28.620786] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   28.638409] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   28.687869] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   28.703991] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   28.903844] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   29.187472] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   29.205087] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   29.444576] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   29.494086] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling PW_2
[   29.688193] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   29.705098] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   29.954564] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   30.188569] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   30.206048] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   30.554713] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   30.689152] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   30.706060] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   31.005558] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   31.188631] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   31.205871] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   31.688208] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   31.706012] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   32.023021] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   32.189942] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   32.206903] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   32.690207] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   32.706859] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   33.023099] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   33.189974] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   33.206744] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   33.379304] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   33.689720] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   33.708087] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   33.757692] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   33.780488] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   33.807141] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   33.840107] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   33.875503] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.024166] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.190477] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.207524] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.444490] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.457396] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   34.473969] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.489973] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.506394] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.523365] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.540899] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.556734] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.573322] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.589776] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.606384] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.622806] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.639750] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.656190] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.672907] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.689555] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.706102] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.722970] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.739540] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.756339] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.773004] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.789453] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.806646] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.823165] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.839828] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.856620] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.873086] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.881883] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   34.890487] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.906426] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.924040] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.939834] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.956367] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.972979] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.989473] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.006400] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.023152] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.044773] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.057239] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   35.072920] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.089668] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.105999] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.125511] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.141907] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.153235] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.169658] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.186483] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.203020] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.219274] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.236035] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.252424] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.585573] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.686254] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.702444] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.726664] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.738246] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.753463] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.773881] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.788040] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.805264] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.820413] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.836950] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.853962] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.870427] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.886521] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.903493] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.919101] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.936512] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   36.024885] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   36.186107] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   36.204062] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   36.335505] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   36.353452] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   36.370123] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   36.686243] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   36.704214] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   36.936183] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   36.954254] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.026981] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.187196] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.204181] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.228403] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.237809] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   37.254156] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.336379] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.353330] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.376339] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.390307] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   37.408871] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.419152] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.431564] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.450543] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   37.465379] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.478034] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.493997] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   37.515139] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.528132] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.539165] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   37.555778] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.573200] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.590743] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   37.606735] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.623186] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.688931] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.706823] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   37.909378] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.923076] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.938544] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   37.955273] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.972194] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   38.024507] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   38.109746] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   38.121930] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   38.138816] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   38.188519] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   38.205190] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   38.510896] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   38.521752] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   38.539407] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   38.689470] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   38.706133] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   38.738595] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   38.756332] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   38.772177] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   38.789811] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   38.806252] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   39.022169] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   39.189846] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   39.206915] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   39.339885] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   39.357048] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   39.691111] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   39.707330] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   39.724772] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   39.741873] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   39.759895] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   39.775897] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   39.793041] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   39.809872] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   39.930240] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   39.941627] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   39.959242] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   40.025160] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   40.192315] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   40.210265] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   40.292194] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   40.309941] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   40.693207] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   40.710314] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   40.726135] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   40.743507] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   40.760072] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   40.777759] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   40.794870] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   40.811124] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   41.025966] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   41.193645] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   41.210446] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   41.310598] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   41.327485] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   41.345586] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   41.361157] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   41.378873] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   41.395008] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   41.678436] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   41.695324] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   41.712523] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   41.728852] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   41.762198] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   41.779080] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   41.828861] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   41.845109] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   41.912531] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   41.928495] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   42.028587] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   42.161541] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   42.195086] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   42.212996] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   42.295411] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   42.311977] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   42.328985] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   42.345480] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   42.362881] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   42.512272] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   42.528617] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   42.545072] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   42.563734] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   42.696935] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   42.713397] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   42.912999] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   42.928797] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   43.029797] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   43.096049] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   43.113545] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   43.129998] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   43.146165] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   43.179836] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   43.197273] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   43.213262] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   43.229537] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   43.696810] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   43.713148] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   43.897391] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   43.913898] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   43.931261] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   43.947974] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   43.964507] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   43.981602] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   43.998313] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   44.014882] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   44.031785] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   44.198260] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   44.214865] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   44.298016] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   44.314667] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   44.331097] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   44.348622] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   44.498173] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   44.514287] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   44.530495] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   44.548642] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   44.698344] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   44.714774] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   45.032109] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   45.098823] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   45.114525] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   45.198341] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   45.214430] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   45.431740] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   45.447372] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   45.463843] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   45.480471] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   45.697081] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   45.713708] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   46.030602] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   46.047098] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   46.065937] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   46.133987] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   46.148948] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   46.165893] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   46.183123] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   46.199075] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   46.215865] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   46.232314] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   46.617122] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   46.632865] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   46.648762] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   46.666704] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   46.682919] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   46.699474] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   46.716167] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   47.012028] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   47.024092] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   47.034078] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   47.049970] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   47.066135] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   47.082920] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   47.099072] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   47.182988] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   47.198745] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   47.242217] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   47.250499] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   47.265380] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   47.375704] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   47.385439] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   47.398804] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   47.416882] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   47.433308] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   47.683677] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   47.699912] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   47.716566] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   47.903106] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   47.974248] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   47.983898] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   47.999816] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   48.016718] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   48.033495] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   48.183974] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   48.199993] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   48.217628] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   48.234044] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   48.250552] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   48.267053] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   48.552246] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   48.565969] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   48.582230] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   48.682627] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   48.699206] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.024987] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.150257] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.166818] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.183488] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.200365] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.216809] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.233495] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.250064] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.350861] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.366571] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.383379] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.400096] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.416905] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.480981] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.491378] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   49.499702] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.517608] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.534227] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.550863] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.567627] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.593946] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.605169] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   49.617491] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.633664] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.651062] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.667705] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.684540] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.701280] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.784763] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.801159] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.817556] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.834223] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.851017] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.871859] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.884278] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   49.900830] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.917735] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.934326] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.986678] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.001772] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.017883] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.034583] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.051305] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.161340] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.170171] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   50.184097] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.201146] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.217726] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.256110] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.267738] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   50.284324] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.300860] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.317316] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.400874] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.417468] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.435101] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.451984] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.468817] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.485458] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.501978] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.518793] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.535383] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.552424] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.568608] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.585381] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.601971] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.685204] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.701902] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   51.022814] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   51.119757] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   51.135396] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   51.152095] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   51.185386] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   51.201793] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   51.685702] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   51.701399] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   51.720692] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   51.734366] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   51.751291] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   51.834042] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   51.851130] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   51.867642] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   51.884707] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   51.901087] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   51.925082] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   51.935335] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   51.950932] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   51.968195] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   51.984520] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.024112] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.084373] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.100839] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.117398] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.134234] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.150777] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.185297] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.201646] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.275468] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.284297] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   52.301104] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.318430] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.335423] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.406323] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.419091] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   52.434903] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.451496] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.468689] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.520557] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.535131] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.550935] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.568417] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.585093] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.601045] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.619812] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.637028] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.652975] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.685774] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.702782] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.743161] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.753030] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   52.769421] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.786864] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.802004] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.819301] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.837281] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.851818] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.869074] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.885165] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.901704] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.024695] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.034740] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   53.052785] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.069785] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.086648] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.103438] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.120068] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.135326] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.152910] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.168894] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.185282] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.202492] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.218699] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.272430] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.286321] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   53.303099] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.318493] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.335606] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.351689] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.368810] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.385058] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.402722] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.418549] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.435541] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.451704] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.468161] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.484099] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.501167] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.517322] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.534090] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.550639] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.567334] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.584040] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.601698] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.617414] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.634119] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.650805] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.667416] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.684271] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.700803] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.717760] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.805149] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.818015] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   53.834001] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.850818] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.867391] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.884527] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.901304] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.917249] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.934051] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.950743] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.967402] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.984264] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.022655] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.072112] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.084376] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   54.101880] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.118598] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.134396] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.179311] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.187467] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   54.201520] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.218420] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.242158] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.250525] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   54.268237] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.307764] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.314979] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   54.318753] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   54.320004] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   54.335351] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.352485] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.368441] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.385586] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.400669] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.403440] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   54.417455] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.434832] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.452207] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.468423] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.485587] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.502419] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.518482] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.535065] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.551384] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.568439] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.584891] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.617650] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.634891] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.651507] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.668402] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.685359] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.701757] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.719147] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.734950] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.751565] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.768404] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.785005] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.801527] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.818438] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.834874] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.851802] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.868246] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.884899] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.901616] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.918373] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.934937] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.951696] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.968233] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.984969] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.001767] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.018496] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.035001] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.051707] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.068338] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.085047] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.101500] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.118233] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.135364] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.151582] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.168285] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.185775] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.201507] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.218184] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.234718] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.261068] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.451491] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.512227] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.575701] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.640267] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.685771] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.702519] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.718290] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.768970] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.807388] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.835896] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.896617] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.961943] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   56.024698] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   56.035509] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   56.151885] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   56.185406] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   56.201590] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   56.280295] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   56.472378] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   56.685847] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   56.702498] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   56.768406] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   56.858065] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   56.930286] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   57.002388] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   57.022777] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   57.056310] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   57.121488] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   57.185679] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   57.202442] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   57.252761] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   57.319177] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   57.385702] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   57.429904] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   57.593093] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   57.685484] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   57.702525] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   57.719406] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   57.735907] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   57.886495] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   58.018431] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   58.036052] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   58.185760] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   58.202788] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   58.307821] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   58.334658] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   58.418056] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   58.451307] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   58.467877] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   58.552612] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   58.595886] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   58.634591] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   58.684658] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   58.701494] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   58.718245] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   58.751330] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   58.784659] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   58.852322] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   58.913604] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   58.976766] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   59.023503] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   59.045062] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   59.108004] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   59.175210] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   59.186088] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   59.202682] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   59.242507] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   59.291645] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   59.363926] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   59.421823] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   59.487370] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   59.617951] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   59.658438] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   59.685289] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   59.701557] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   59.742064] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   59.818492] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   59.868835] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   59.938547] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   60.002506] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   60.024450] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   60.076173] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   60.138053] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   60.186347] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   60.202375] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   60.269276] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   60.392280] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   60.442709] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   60.619651] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   60.685900] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   60.702325] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   60.839473] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   60.967712] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   61.023614] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.035478] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   61.089037] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.161443] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   61.185086] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.202190] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   61.224287] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.275642] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   61.337170] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.410897] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   61.468929] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.509864] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   61.535135] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.551734] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   61.585723] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.610809] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   61.676257] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.685214] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   61.702095] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.735994] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   61.855091] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.929762] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   61.967969] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   62.001661] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   62.025304] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   62.052213] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   62.112063] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   62.184503] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   62.202708] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   62.218622] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   62.239329] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   62.259692] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   62.319078] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   62.353491] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   62.369317] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   62.427266] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[    0.000000] Linux version 7.1.0-rc5-drm-tip (fuhrysteve@debian-t14-gen1-fuhrysteve) (gcc (Debian 14.2.0-19) 14.2.0, GNU ld (GNU Binutils for Debian) 2.44) #3 SMP PREEMPT_DYNAMIC Tue Jun  2 12:43:07 EDT 2026
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-7.1.0-rc5-drm-tip root=/dev/mapper/debian--t14--gen1--fuhrysteve--vg-root ro snd-intel-dspcfg.dsp_driver=1 drm.debug=0x10e log_buf_len=16M ignore_loglevel
[    0.000000] x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff]  System RAM
[    0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff]  device reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000008e36efff]  System RAM
[    0.000000] BIOS-e820: [mem 0x000000008e36f000-0x000000009332efff]  device reserved
[    0.000000] BIOS-e820: [mem 0x000000009332f000-0x0000000093f2efff]  ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000093f2f000-0x0000000093ffefff]  ACPI data
[    0.000000] BIOS-e820: [mem 0x0000000093fff000-0x0000000093ffffff]  System RAM
[    0.000000] BIOS-e820: [mem 0x0000000094000000-0x0000000097ffffff]  device reserved
[    0.000000] BIOS-e820: [gap 0x0000000098000000-0x00000000981fffff]
[    0.000000] BIOS-e820: [mem 0x0000000098200000-0x00000000983fffff]  device reserved
[    0.000000] BIOS-e820: [gap 0x0000000098400000-0x0000000098bfffff]
[    0.000000] BIOS-e820: [mem 0x0000000098c00000-0x00000000a07fffff]  device reserved
[    0.000000] BIOS-e820: [gap 0x00000000a0800000-0x00000000bfffffff]
[    0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff]  device reserved
[    0.000000] BIOS-e820: [gap 0x00000000d0000000-0x00000000fed1ffff]
[    0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff]  device reserved
[    0.000000] BIOS-e820: [gap 0x00000000fed80000-0x00000000ffffffff]
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000a5f7fffff]  System RAM
[    0.000000] printk: debug: ignoring loglevel setting.
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by Lenovo
[    0.000000] efi: ACPI=0x93ffe000 ACPI 2.0=0x93ffe014 TPMFinalLog=0x93e8e000 SMBIOS=0x900af000 SMBIOS 3.0=0x900a2000 MEMATTR=0x8a160018 ESRT=0x8a16e418 MOKvar=0x8e7d1000 INITRD=0x6351e718 RNG=0x93ffd018 TPMEventLog=0x93ff0018 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem79: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
[    0.000000] e820: remove [mem 0xc0000000-0xcfffffff] device reserved
[    0.000000] DMI: SMBIOS 3.4.0 present.
[    0.000000] DMI: LENOVO 21AH00BSUS/21AH00BSUS, BIOS N3MET28W (1.27 ) 03/17/2026
[    0.000000] DMI: Memory slots populated: 2/8
[    0.000000] tsc: Detected 2500.000 MHz processor
[    0.000000] tsc: Detected 2496.000 MHz TSC
[    0.000008] e820: update [mem 0x00000000-0x00000fff] System RAM ==> device reserved
[    0.000012] e820: remove [mem 0x000a0000-0x000fffff] System RAM
[    0.000020] last_pfn = 0xa5f800 max_arch_pfn = 0x400000000
[    0.000026] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
[    0.000028] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000745] last_pfn = 0x94000 max_arch_pfn = 0x400000000
[    0.010747] esrt: Reserving ESRT space from 0x000000008a16e418 to 0x000000008a16e6d0.
[    0.010754] e820: update [mem 0x8a16e000-0x8a16efff] System RAM ==> device reserved
[    0.010775] Using GB pages for direct mapping
[    0.025470] printk: log buffer data + meta data: 16777216 + 71303168 = 88080384 bytes
[    0.025473] printk: early log buf free: 127688(97%)
[    0.025475] Secure boot disabled
[    0.025475] RAMDISK: [mem 0x48ae7000-0x51ce4fff]
[    0.025912] ACPI: Early table checksum verification disabled
[    0.025916] ACPI: RSDP 0x0000000093FFE014 000024 (v02 LENOVO)
[    0.025921] ACPI: XSDT 0x0000000093FFC188 000134 (v01 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025927] ACPI: FACP 0x0000000090092000 000114 (v06 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025933] ACPI: DSDT 0x0000000090044000 049618 (v02 LENOVO ICL      00000002      01000013)
[    0.025936] ACPI: FACS 0x0000000093E73000 000040
[    0.025939] ACPI: SSDT 0x000000009014A000 00038C (v02 LENOVO Pmax_Dev 00000001 INTL 20200717)
[    0.025942] ACPI: SSDT 0x0000000090132000 005D2C (v02 LENOVO CpuSsdt  00003000 INTL 20200717)
[    0.025945] ACPI: SSDT 0x0000000090131000 00059B (v02 LENOVO CtdpB    00001000 INTL 20200717)
[    0.025948] ACPI: SSDT 0x00000000900C2000 003203 (v02 LENOVO DptfTabl 00001000 INTL 20200717)
[    0.025951] ACPI: SSDT 0x0000000090094000 00060E (v02 LENOVO Tpm2Tabl 00001000 INTL 20200717)
[    0.025953] ACPI: TPM2 0x0000000090093000 00004C (v04 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025956] ACPI: HPET 0x0000000090091000 000038 (v01 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025959] ACPI: APIC 0x0000000090090000 0001DC (v05 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025962] ACPI: MCFG 0x000000009008F000 00003C (v01 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025964] ACPI: ECDT 0x000000009008E000 000053 (v01 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025967] ACPI: SSDT 0x0000000090041000 00258E (v02 LENOVO AdlP_Rvp 00001000 INTL 20200717)
[    0.025970] ACPI: SSDT 0x0000000090040000 000083 (v02 LENOVO PID0Ssdt 00000010 INTL 20200717)
[    0.025973] ACPI: SSDT 0x000000009003C000 003F55 (v02 LENOVO ProjSsdt 00000010 INTL 20200717)
[    0.025975] ACPI: SSDT 0x0000000090038000 002B22 (v02 LENOVO SaSsdt   00003000 INTL 20200717)
[    0.025979] ACPI: SSDT 0x0000000090034000 0035CE (v02 LENOVO IgfxSsdt 00003000 INTL 20200717)
[    0.025981] ACPI: SSDT 0x0000000090026000 00D676 (v02 LENOVO TcssSsdt 00001000 INTL 20200717)
[    0.025984] ACPI: LPIT 0x0000000090025000 0000CC (v01 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025987] ACPI: WSMT 0x0000000090024000 000028 (v01 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025990] ACPI: SSDT 0x0000000090021000 0026B4 (v02 LENOVO TbtTypeC 00000000 INTL 20200717)
[    0.025992] ACPI: DBGP 0x0000000090020000 000034 (v01 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025995] ACPI: DBG2 0x000000009001F000 000054 (v00 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.025998] ACPI: NHLT 0x000000009001D000 001B64 (v00 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.026001] ACPI: MSDM 0x000000009001C000 000055 (v03 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.026003] ACPI: SSDT 0x0000000090006000 000E54 (v02 LENOVO UsbCTabl 00001000 INTL 20200717)
[    0.026006] ACPI: BATB 0x0000000090005000 00004A (v02 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.026009] ACPI: DMAR 0x000000008E803000 000088 (v02 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.026012] ACPI: SSDT 0x000000008E801000 00129A (v02 LENOVO SocGpe   00003000 INTL 20200717)
[    0.026015] ACPI: SSDT 0x000000008E7FD000 0039DA (v02 LENOVO SocCmn   00003000 INTL 20200717)
[    0.026017] ACPI: SSDT 0x000000008E7FC000 000144 (v02 LENOVO ADebTabl 00001000 INTL 20200717)
[    0.026020] ACPI: BGRT 0x0000000090007000 000038 (v01 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.026023] ACPI: PHAT 0x000000008E7D5000 000598 (v01 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.026026] ACPI: UEFI 0x0000000093E24000 000076 (v01 LENOVO TP-N3M   00001270 PTEC 00000002)
[    0.026028] ACPI: FPDT 0x000000008E7D3000 000034 (v01 LENOVO TP-N3M   00001270 PTEC 00001270)
[    0.026031] ACPI: Reserving FACP table memory at [mem 0x90092000-0x90092113]
[    0.026033] ACPI: Reserving DSDT table memory at [mem 0x90044000-0x9008d617]
[    0.026034] ACPI: Reserving FACS table memory at [mem 0x93e73000-0x93e7303f]
[    0.026035] ACPI: Reserving SSDT table memory at [mem 0x9014a000-0x9014a38b]
[    0.026036] ACPI: Reserving SSDT table memory at [mem 0x90132000-0x90137d2b]
[    0.026037] ACPI: Reserving SSDT table memory at [mem 0x90131000-0x9013159a]
[    0.026038] ACPI: Reserving SSDT table memory at [mem 0x900c2000-0x900c5202]
[    0.026038] ACPI: Reserving SSDT table memory at [mem 0x90094000-0x9009460d]
[    0.026039] ACPI: Reserving TPM2 table memory at [mem 0x90093000-0x9009304b]
[    0.026040] ACPI: Reserving HPET table memory at [mem 0x90091000-0x90091037]
[    0.026041] ACPI: Reserving APIC table memory at [mem 0x90090000-0x900901db]
[    0.026042] ACPI: Reserving MCFG table memory at [mem 0x9008f000-0x9008f03b]
[    0.026042] ACPI: Reserving ECDT table memory at [mem 0x9008e000-0x9008e052]
[    0.026043] ACPI: Reserving SSDT table memory at [mem 0x90041000-0x9004358d]
[    0.026044] ACPI: Reserving SSDT table memory at [mem 0x90040000-0x90040082]
[    0.026045] ACPI: Reserving SSDT table memory at [mem 0x9003c000-0x9003ff54]
[    0.026046] ACPI: Reserving SSDT table memory at [mem 0x90038000-0x9003ab21]
[    0.026046] ACPI: Reserving SSDT table memory at [mem 0x90034000-0x900375cd]
[    0.026047] ACPI: Reserving SSDT table memory at [mem 0x90026000-0x90033675]
[    0.026048] ACPI: Reserving LPIT table memory at [mem 0x90025000-0x900250cb]
[    0.026049] ACPI: Reserving WSMT table memory at [mem 0x90024000-0x90024027]
[    0.026050] ACPI: Reserving SSDT table memory at [mem 0x90021000-0x900236b3]
[    0.026050] ACPI: Reserving DBGP table memory at [mem 0x90020000-0x90020033]
[    0.026051] ACPI: Reserving DBG2 table memory at [mem 0x9001f000-0x9001f053]
[    0.026052] ACPI: Reserving NHLT table memory at [mem 0x9001d000-0x9001eb63]
[    0.026053] ACPI: Reserving MSDM table memory at [mem 0x9001c000-0x9001c054]
[    0.026054] ACPI: Reserving SSDT table memory at [mem 0x90006000-0x90006e53]
[    0.026054] ACPI: Reserving BATB table memory at [mem 0x90005000-0x90005049]
[    0.026055] ACPI: Reserving DMAR table memory at [mem 0x8e803000-0x8e803087]
[    0.026056] ACPI: Reserving SSDT table memory at [mem 0x8e801000-0x8e802299]
[    0.026057] ACPI: Reserving SSDT table memory at [mem 0x8e7fd000-0x8e8009d9]
[    0.026057] ACPI: Reserving SSDT table memory at [mem 0x8e7fc000-0x8e7fc143]
[    0.026058] ACPI: Reserving BGRT table memory at [mem 0x90007000-0x90007037]
[    0.026059] ACPI: Reserving PHAT table memory at [mem 0x8e7d5000-0x8e7d5597]
[    0.026060] ACPI: Reserving UEFI table memory at [mem 0x93e24000-0x93e24075]
[    0.026061] ACPI: Reserving FPDT table memory at [mem 0x8e7d3000-0x8e7d3033]
[    0.026424] No NUMA configuration found
[    0.026425] Faking a node at [mem 0x0000000000000000-0x0000000a5f7fffff]
[    0.026435] NODE_DATA(0) allocated [mem 0xa5a3d5200-0xa5a3fffff]
[    0.026733] Reserving Intel graphics memory at [mem 0x9c800000-0xa07fffff]
[    0.028019] ACPI: PM-Timer IO Port: 0x1808
[    0.028029] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.028031] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.028032] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.028033] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.028033] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.028034] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.028035] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.028035] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.028036] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.028037] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.028037] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.028038] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.028039] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.028040] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.028040] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.028041] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.028042] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.028043] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.028043] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.028044] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.028045] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.028046] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.028046] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.028047] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.028091] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.028094] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.028096] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.028100] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.028102] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.028110] e820: update [mem 0x89396000-0x89426fff] System RAM ==> device reserved
[    0.028120] TSC deadline timer available
[    0.028123] CPU topo: Max. logical packages:   1
[    0.028124] CPU topo: Max. logical nodes:      1
[    0.028125] CPU topo: Num. nodes per package:  1
[    0.028127] CPU topo: Max. logical dies:       1
[    0.028128] CPU topo: Max. dies per package:   1
[    0.028131] CPU topo: Max. threads per core:   2
[    0.028132] CPU topo: Num. cores per package:    12
[    0.028133] CPU topo: Num. threads per package:  16
[    0.028133] CPU topo: Allowing 16 present CPUs plus 0 hotplug CPUs
[    0.028148] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.028150] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    0.028152] PM: hibernation: Registered nosave memory: [mem 0x89396000-0x89426fff]
[    0.028154] PM: hibernation: Registered nosave memory: [mem 0x8a16e000-0x8a16efff]
[    0.028155] PM: hibernation: Registered nosave memory: [mem 0x8e36f000-0x93ffefff]
[    0.028157] PM: hibernation: Registered nosave memory: [mem 0x94000000-0xffffffff]
[    0.028158] [gap 0xa0800000-0xfed1ffff] available for PCI devices
[    0.028160] Booting paravirtualized kernel on bare hardware
[    0.028162] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.035706] Zone ranges:
[    0.035707]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.035709]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.035711]   Normal   [mem 0x0000000100000000-0x0000000a5f7fffff]
[    0.035712]   Device   empty
[    0.035713] Movable zone start for each node
[    0.035715] Early memory node ranges
[    0.035716]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.035717]   node   0: [mem 0x0000000000100000-0x000000008e36efff]
[    0.035718]   node   0: [mem 0x0000000093fff000-0x0000000093ffffff]
[    0.035719]   node   0: [mem 0x0000000100000000-0x0000000a5f7fffff]
[    0.035723] Initmem setup node 0 [mem 0x0000000000001000-0x0000000a5f7fffff]
[    0.035730] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.035753] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.039235] On node 0, zone DMA32: 23696 pages in unavailable ranges
[    0.039609] On node 0, zone Normal: 16384 pages in unavailable ranges
[    0.039623] On node 0, zone Normal: 2048 pages in unavailable ranges
[    0.039633] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
[    0.040251] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    0.040258] pcpu-alloc: s217088 r8192 d28672 u262144 alloc=1*2097152
[    0.040260] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.040285] Kernel command line: BOOT_IMAGE=/vmlinuz-7.1.0-rc5-drm-tip root=/dev/mapper/debian--t14--gen1--fuhrysteve--vg-root ro snd-intel-dspcfg.dsp_driver=1 drm.debug=0x10e log_buf_len=16M ignore_loglevel
[    0.046303] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear)
[    0.049248] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.049475] software IO TLB: area num 16.
[    0.061360] Fallback order for Node 0: 0 
[    0.061367] Built 1 zonelists, mobility grouping on.  Total pages: 10410766
[    0.061368] Policy zone: Normal
[    0.061377] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[    0.073345] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[    0.080552] ftrace: allocating 47538 entries in 188 pages
[    0.080554] ftrace: allocated 188 pages with 5 groups
[    0.081025] Dynamic Preempt: lazy
[    0.081109] rcu: Preemptible hierarchical RCU implementation.
[    0.081110] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
[    0.081112] 	Trampoline variant of Tasks RCU enabled.
[    0.081113] 	Rude variant of Tasks RCU enabled.
[    0.081113] 	Tracing variant of Tasks RCU enabled.
[    0.081114] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.081115] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
[    0.081127] RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
[    0.081130] RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
[    0.087207] NR_IRQS: 524544, nr_irqs: 2184, preallocated irqs: 16
[    0.087589] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.088035] Console: colour dummy device 80x25
[    0.088038] printk: legacy console [tty0] enabled
[    0.088385] ACPI: Core revision 20251212
[    0.088725] hpet: HPET dysfunctional in PC10. Force disabled.
[    0.088815] APIC: Switch to symmetric I/O mode setup
[    0.088819] DMAR: Host address width 39
[    0.088821] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.088828] DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
[    0.088833] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.088839] DMAR: dmar1: reg_base_addr fed91000 ver 5:0 cap d2008c40660462 ecap f050da
[    0.088843] DMAR: RMRR base: 0x0000009c000000 end: 0x000000a07fffff
[    0.088847] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
[    0.088851] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.088853] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.092915] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.092920] x2apic enabled
[    0.093007] APIC: Switched APIC routing to: cluster x2apic
[    0.104407] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x23fa772cf26, max_idle_ns: 440795269835 ns
[    0.104417] Calibrating delay loop (skipped), value calculated using timer frequency.. 4992.00 BogoMIPS (lpj=9984000)
[    0.104495] CPU0: Thermal monitoring enabled (TM1)
[    0.104498] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.104641] CET detected: Indirect Branch Tracking enabled
[    0.104644] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.104646] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.104660] process: using mwait in idle threads
[    0.104665] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
[    0.104672] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.104676] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[    0.104678] Register File Data Sampling: Mitigation: Clear Register File
[    0.104681] VMSCAPE: Mitigation: IBPB before exit to userspace
[    0.104683] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.104686] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[    0.104690] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.104706] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.104710] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.104712] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.104715] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.104718] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    0.104720] x86/fpu: Supporting XSAVE feature 0x1000: 'Control-flow Kernel registers (KVM only)'
[    0.104724] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.104727] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    0.104729] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    0.104732] x86/fpu: xstate_offset[12]:  856, xstate_sizes[12]:   24
[    0.104735] x86/fpu: Enabled xstate features 0x1a07, context size is 880 bytes, using 'compacted' format.
[    0.108414] pid_max: default: 32768 minimum: 301
[    0.108414] landlock: Up and running.
[    0.108414] Yama: becoming mindful.
[    0.108414] AppArmor: AppArmor initialized
[    0.108414] TOMOYO Linux initialized
[    0.108414] LSM support for eBPF active
[    0.108414] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.108414] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.108414] VFS: Finished mounting rootfs on nullfs
[    0.108414] smpboot: CPU0: 12th Gen Intel(R) Core(TM) i7-1260P (family: 0x6, model: 0x9a, stepping: 0x3)
[    0.108414] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline,  AnyThread deprecated, Alderlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.108414] core: cpu_core PMU driver: 
[    0.108414] ... version:                   5
[    0.108414] ... bit width:                 48
[    0.108414] ... generic counters:          8
[    0.108414] ... generic bitmap:            00000000000000ff
[    0.108414] ... fixed-purpose counters:    4
[    0.108414] ... fixed-purpose bitmap:      000000000000000f
[    0.108414] ... value mask:                0000ffffffffffff
[    0.108414] ... max period:                00007fffffffffff
[    0.108414] ... global_ctrl mask:          0001000f000000ff
[    0.108414] signal: max sigframe size: 3632
[    0.108414] Estimated ratio of average max frequency by base frequency (times 1024): 1556
[    0.108414] rcu: Hierarchical SRCU implementation.
[    0.108414] rcu: 	Max phase no-delay instances is 1000.
[    0.108414] Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
[    0.108414] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.108414] smp: Bringing up secondary CPUs ...
[    0.108414] smpboot: x86: Booting SMP configuration:
[    0.108414] .... node  #0, CPUs:        #2  #4  #6  #8  #9 #10 #11 #12 #13 #14 #15
[    0.020446] core: cpu_atom PMU driver: 
[    0.020446] ... version:                   5
[    0.020446] ... bit width:                 48
[    0.020446] ... generic counters:          6
[    0.020446] ... generic bitmap:            000000000000003f
[    0.020446] ... fixed-purpose counters:    3
[    0.020446] ... fixed-purpose bitmap:      0000000000000007
[    0.020446] ... value mask:                0000ffffffffffff
[    0.020446] ... max period:                00007fffffffffff
[    0.020446] ... global_ctrl mask:          000000070000003f
[    0.112516]   #1  #3  #5  #7
[    0.118339] smp: Brought up 1 node, 16 CPUs
[    0.118339] smpboot: Total of 16 processors activated (79872.00 BogoMIPS)
[    0.171036] node 0 deferred pages initialised in 48ms
[    0.171036] Memory: 40397164K/41643064K available (16402K kernel code, 2595K rwdata, 12548K rodata, 4380K init, 4276K bss, 1225996K reserved, 0K cma-reserved)
[    0.172504] devtmpfs: initialized
[    0.172504] x86/mm: Memory block size: 128MB
[    0.175953] ACPI: PM: Registering ACPI NVS region [mem 0x9332f000-0x93f2efff] (12582912 bytes)
[    0.175953] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.175953] posixtimers hash table entries: 8192 (order: 5, 131072 bytes, linear)
[    0.175953] futex hash table entries: 4096 (262144 bytes on 1 NUMA nodes, total 256 KiB, linear).
[    0.177176] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.177820] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.178231] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.178639] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.178650] audit: initializing netlink subsys (disabled)
[    0.178658] audit: type=2000 audit(1780575368.072:1): state=initialized audit_enabled=0 res=1
[    0.178658] thermal_sys: Registered thermal governor 'fair_share'
[    0.178658] thermal_sys: Registered thermal governor 'bang_bang'
[    0.178658] thermal_sys: Registered thermal governor 'step_wise'
[    0.178658] thermal_sys: Registered thermal governor 'user_space'
[    0.178658] thermal_sys: Registered thermal governor 'power_allocator'
[    0.178658] cpuidle: using governor ladder
[    0.178658] cpuidle: using governor menu
[    0.178658] Freeing SMP alternatives memory: 44K
[    0.184313] efi: Freeing EFI boot services memory: 117744K
[    0.184318] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.184878] PCI: ECAM [mem 0xc0000000-0xcfffffff] (base 0xc0000000) for domain 0000 [bus 00-ff]
[    0.184898] PCI: Using configuration type 1 for base access
[    0.184974] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.184974] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.184974] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.184974] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.184974] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.184993] ACPI: Added _OSI(Module Device)
[    0.184997] ACPI: Added _OSI(Processor Device)
[    0.184999] ACPI: Added _OSI(Processor Aggregator Device)
[    0.325466] ACPI: 17 ACPI AML tables successfully acquired and loaded
[    0.326755] ACPI: EC: EC started
[    0.326758] ACPI: EC: interrupt blocked
[    0.327524] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.327527] ACPI: EC: Boot ECDT EC used to handle transactions
[    0.329557] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.364546] ACPI: \_SB_: platform _OSC: OS support mask [002e7eff]
[    0.368419] ACPI: \_SB_: platform _OSC: OS control mask [002e7eff]
[    0.369095] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
[    0.369098] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
[    0.369663] ACPI: Dynamic OEM Table Load:
[    0.369675] ACPI: SSDT 0xFFFF8C0581E13400 000394 (v02 PmRef  Cpu0Cst  00003001 INTL 20200717)
[    0.370613] ACPI: Dynamic OEM Table Load:
[    0.370620] ACPI: SSDT 0xFFFF8C0582905000 0005E4 (v02 PmRef  Cpu0Ist  00003000 INTL 20200717)
[    0.371545] ACPI: Dynamic OEM Table Load:
[    0.371551] ACPI: SSDT 0xFFFF8C058198C000 0001AB (v02 PmRef  Cpu0Psd  00003000 INTL 20200717)
[    0.372423] ACPI: Dynamic OEM Table Load:
[    0.372430] ACPI: SSDT 0xFFFF8C0582902000 0004BA (v02 PmRef  Cpu0Hwp  00003000 INTL 20200717)
[    0.376435] ACPI: Dynamic OEM Table Load:
[    0.376435] ACPI: SSDT 0xFFFF8C058141C000 001BAF (v02 PmRef  ApIst    00003000 INTL 20200717)
[    0.376435] ACPI: Dynamic OEM Table Load:
[    0.376435] ACPI: SSDT 0xFFFF8C0581418000 001038 (v02 PmRef  ApHwp    00003000 INTL 20200717)
[    0.376435] ACPI: Dynamic OEM Table Load:
[    0.376435] ACPI: SSDT 0xFFFF8C058291E000 001349 (v02 PmRef  ApPsd    00003000 INTL 20200717)
[    0.377452] ACPI: Dynamic OEM Table Load:
[    0.377461] ACPI: SSDT 0xFFFF8C058290A000 000FBB (v02 PmRef  ApCst    00003000 INTL 20200717)
[    0.383541] ACPI: Interpreter enabled
[    0.383600] ACPI: PM: (supports S0 S4 S5)
[    0.383602] ACPI: Using IOAPIC for interrupt routing
[    0.383646] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.383649] PCI: Ignoring E820 reservations for host bridge windows
[    0.384123] ACPI: Enabled 10 GPEs in block 00 to 7F
[    0.385041] ACPI: \_SB_.PC00.PEG0.PXP_: New power resource
[    0.388618] ACPI: \_SB_.PC00.LPCB.EC__.PUBS: New power resource
[    0.390941] ACPI: \_SB_.PC00.XHCI.RHUB.HS02.WWPR: New power resource
[    0.391519] ACPI: \_SB_.PC00.XHCI.RHUB.HS10.BTRT: New power resource
[    0.394829] ACPI: \_SB_.PC00.CNVW.WRST: New power resource
[    0.395013] ACPI: \_SB_.PC00.RP01.PXP_: New power resource
[    0.405861] ACPI: \_SB_.PC00.TBT0: New power resource
[    0.406195] ACPI: \_SB_.PC00.TBT1: New power resource
[    0.406519] ACPI: \_SB_.PC00.D3C_: New power resource
[    0.692435] ACPI: \PIN_: New power resource
[    0.692435] ACPI: \PINP: New power resource
[    0.692435] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-fe])
[    0.692435] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.692528] acpi PNP0A08:00: _OSC: platform does not support [AER]
[    0.695700] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR]
[    0.699708] PCI host bridge to bus 0000:00
[    0.699713] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.699716] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.699719] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.699721] pci_bus 0000:00: root bus resource [mem 0xa0800000-0xbfffffff window]
[    0.699724] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[    0.699727] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.700071] pci 0000:00:00.0: [8086:4621] type 00 class 0x060000 conventional PCI endpoint
[    0.700358] pci 0000:00:02.0: [8086:46a6] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
[    0.700377] pci 0000:00:02.0: BAR 0 [mem 0x603c000000-0x603cffffff 64bit]
[    0.700381] pci 0000:00:02.0: BAR 2 [mem 0x4000000000-0x400fffffff 64bit pref]
[    0.700384] pci 0000:00:02.0: BAR 4 [io  0x2000-0x203f]
[    0.700395] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
[    0.700399] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.704416] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x00ffffff 64bit]
[    0.704416] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x06ffffff 64bit]: contains BAR 0 for 7 VFs
[    0.704416] pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0x1fffffff 64bit pref]
[    0.704416] pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0xdfffffff 64bit pref]: contains BAR 2 for 7 VFs
[    0.704422] pci 0000:00:04.0: [8086:461d] type 00 class 0x118000 conventional PCI endpoint
[    0.704422] pci 0000:00:04.0: BAR 0 [mem 0x603d180000-0x603d19ffff 64bit]
[    0.704422] pci 0000:00:06.0: [8086:464d] type 01 class 0x060400 PCIe Root Port
[    0.704422] pci 0000:00:06.0: PCI bridge to [bus 02]
[    0.704422] pci 0000:00:06.0:   bridge window [mem 0xbc200000-0xbc2fffff]
[    0.704422] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[    0.704422] pci 0000:00:07.0: [8086:466e] type 01 class 0x060400 PCIe Root Port
[    0.704422] pci 0000:00:07.0: PCI bridge to [bus 20-49]
[    0.704422] pci 0000:00:07.0:   bridge window [mem 0xb0000000-0xbc1fffff]
[    0.704422] pci 0000:00:07.0:   bridge window [mem 0x6000000000-0x601bffffff 64bit pref]
[    0.704422] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[    0.704422] pci 0000:00:07.2: [8086:462f] type 01 class 0x060400 PCIe Root Port
[    0.704422] pci 0000:00:07.2: PCI bridge to [bus 50-79]
[    0.704422] pci 0000:00:07.2:   bridge window [mem 0xa2000000-0xae1fffff]
[    0.704422] pci 0000:00:07.2:   bridge window [mem 0x6020000000-0x603bffffff 64bit pref]
[    0.704422] pci 0000:00:07.2: PME# supported from D0 D3hot D3cold
[    0.705535] pci 0000:00:0a.0: [8086:467d] type 00 class 0x118000 PCIe Root Complex Integrated Endpoint
[    0.705553] pci 0000:00:0a.0: BAR 0 [mem 0x603d1c0000-0x603d1c7fff 64bit]
[    0.705561] pci 0000:00:0a.0: enabling Extended Tags
[    0.705676] pci 0000:00:0d.0: [8086:461e] type 00 class 0x0c0330 conventional PCI endpoint
[    0.705699] pci 0000:00:0d.0: BAR 0 [mem 0x603d1b0000-0x603d1bffff 64bit]
[    0.705726] pci 0000:00:0d.0: PME# supported from D3hot D3cold
[    0.707464] pci 0000:00:0d.2: [8086:463e] type 00 class 0x0c0340 conventional PCI endpoint
[    0.707487] pci 0000:00:0d.2: BAR 0 [mem 0x603d140000-0x603d17ffff 64bit]
[    0.707490] pci 0000:00:0d.2: BAR 2 [mem 0x603d1d9000-0x603d1d9fff 64bit]
[    0.707514] pci 0000:00:0d.2: supports D1 D2
[    0.707516] pci 0000:00:0d.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.707605] pci 0000:00:0d.3: [8086:466d] type 00 class 0x0c0340 conventional PCI endpoint
[    0.707627] pci 0000:00:0d.3: BAR 0 [mem 0x603d100000-0x603d13ffff 64bit]
[    0.707631] pci 0000:00:0d.3: BAR 2 [mem 0x603d1d8000-0x603d1d8fff 64bit]
[    0.707654] pci 0000:00:0d.3: supports D1 D2
[    0.707656] pci 0000:00:0d.3: PME# supported from D0 D1 D2 D3hot D3cold
[    0.707896] pci 0000:00:14.0: [8086:51ed] type 00 class 0x0c0330 conventional PCI endpoint
[    0.707957] pci 0000:00:14.0: BAR 0 [mem 0x603d1a0000-0x603d1affff 64bit]
[    0.708025] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.709805] pci 0000:00:14.2: [8086:51ef] type 00 class 0x050000 conventional PCI endpoint
[    0.709870] pci 0000:00:14.2: BAR 0 [mem 0x603d1d0000-0x603d1d3fff 64bit]
[    0.709877] pci 0000:00:14.2: BAR 2 [mem 0x603d1d7000-0x603d1d7fff 64bit]
[    0.710088] pci 0000:00:14.3: [8086:51f0] type 00 class 0x028000 PCIe Root Complex Integrated Endpoint
[    0.710179] pci 0000:00:14.3: BAR 0 [mem 0x603d1cc000-0x603d1cffff 64bit]
[    0.710339] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
[    0.711149] pci 0000:00:15.0: [8086:51e8] type 00 class 0x0c8000 conventional PCI endpoint
[    0.712950] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[    0.728780] pci 0000:00:16.0: [8086:51e0] type 00 class 0x078000 conventional PCI endpoint
[    0.728844] pci 0000:00:16.0: BAR 0 [mem 0x603d1d5000-0x603d1d5fff 64bit]
[    0.728914] pci 0000:00:16.0: PME# supported from D3hot
[    0.729352] pci 0000:00:1f.0: [8086:5182] type 00 class 0x060100 conventional PCI endpoint
[    0.729748] pci 0000:00:1f.3: [8086:51c8] type 00 class 0x040380 conventional PCI endpoint
[    0.729918] pci 0000:00:1f.3: BAR 0 [mem 0x603d1c8000-0x603d1cbfff 64bit]
[    0.729935] pci 0000:00:1f.3: BAR 4 [mem 0x603d000000-0x603d0fffff 64bit]
[    0.730079] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.730368] pci 0000:00:1f.4: [8086:51a3] type 00 class 0x0c0500 conventional PCI endpoint
[    0.730437] pci 0000:00:1f.4: BAR 0 [mem 0x603d1d4000-0x603d1d40ff 64bit]
[    0.730451] pci 0000:00:1f.4: BAR 4 [io  0xefa0-0xefbf]
[    0.730714] pci 0000:00:1f.5: [8086:51a4] type 00 class 0x0c8000 conventional PCI endpoint
[    0.730784] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[    0.730907] pci 0000:00:1f.6: [8086:1a1f] type 00 class 0x020000 conventional PCI endpoint
[    0.731065] pci 0000:00:1f.6: BAR 0 [mem 0xbc300000-0xbc31ffff]
[    0.731208] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
[    0.732240] pci 0000:02:00.0: [144d:a809] type 00 class 0x010802 PCIe Endpoint
[    0.732276] pci 0000:02:00.0: BAR 0 [mem 0xbc200000-0xbc203fff 64bit]
[    0.732488] pci 0000:00:06.0: PCI bridge to [bus 02]
[    0.732525] pci 0000:00:07.0: PCI bridge to [bus 20-49]
[    0.732559] pci 0000:00:07.2: PCI bridge to [bus 50-79]
[    0.741328] ACPI: \_SB_.PEPD: Duplicate LPS0 _DSM functions (mask: 0x79)
[    0.741333] Low-power S0 idle used by default for system suspend
[    0.743282] ACPI: EC: interrupt unblocked
[    0.743285] ACPI: EC: event unblocked
[    0.743316] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.743318] ACPI: EC: GPE=0x6e
[    0.743320] ACPI: \_SB_.PC00.LPCB.EC__: Boot ECDT EC initialization complete
[    0.743322] ACPI: \_SB_.PC00.LPCB.EC__: EC: Used to handle transactions and events
[    0.743399] iommu: Default domain type: Translated
[    0.743399] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.743399] pps_core: LinuxPPS API ver. 1 registered
[    0.743399] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.743399] PTP clock support registered
[    0.743399] EDAC MC: Ver: 3.0.0
[    0.744624] efivars: Registered efivars operations
[    0.744679] NetLabel: Initializing
[    0.744681] NetLabel:  domain hash size = 128
[    0.744683] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.744701] NetLabel:  unlabeled traffic allowed by default
[    0.744706] PCI: Using ACPI for IRQ routing
[    0.820741] PCI: pci_cache_line_size set to 64 bytes
[    0.821584] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
[    0.822420] e820: register RAM buffer resource [mem 0x0009f000-0x0009ffff]
[    0.822422] e820: register RAM buffer resource [mem 0x89396000-0x8bffffff]
[    0.822424] e820: register RAM buffer resource [mem 0x8a16e000-0x8bffffff]
[    0.822426] e820: register RAM buffer resource [mem 0x8e36f000-0x8fffffff]
[    0.822428] e820: register RAM buffer resource [mem 0xa5f800000-0xa5fffffff]
[    0.822454] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.822454] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.822454] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=mem,locks=none
[    0.822454] vgaarb: loaded
[    0.822454] clocksource: Switched to clocksource tsc-early
[    0.822454] VFS: Disk quotas dquot_6.6.0
[    0.822454] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.822454] AppArmor: AppArmor Filesystem Enabled
[    0.822454] acpi PNP0C02:00: Skipped [io  0x002e-0x002f]
[    0.822454] acpi PNP0C02:00: Skipped [io  0x004e-0x004f]
[    0.822454] acpi PNP0C02:00: Skipped [io  0x0061]
[    0.822454] acpi PNP0C02:00: Skipped [io  0x0063]
[    0.822454] acpi PNP0C02:00: Skipped [io  0x0065]
[    0.822454] acpi PNP0C02:00: Skipped [io  0x0067]
[    0.822454] acpi PNP0C02:00: Skipped [io  0x0070]
[    0.822454] acpi PNP0C02:00: Skipped [io  0x0080]
[    0.822454] acpi PNP0C02:00: Skipped [io  0x0092]
[    0.822454] acpi PNP0C02:00: Skipped [io  0x00b2-0x00b3]
[    0.822454] acpi PNP0C02:00: Reserved [io  0x0680-0x069f]
[    0.822454] acpi PNP0C02:00: Reserved [io  0x164e-0x164f]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x0010-0x001f]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x0090-0x009f]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x0024-0x0025]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x0028-0x0029]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x002c-0x002d]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x0030-0x0031]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x0034-0x0035]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x0038-0x0039]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x003c-0x003d]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x00a4-0x00a5]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x00a8-0x00a9]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x00ac-0x00ad]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x00b0-0x00b5]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x00b8-0x00b9]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x00bc-0x00bd]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x0050-0x0053]
[    0.822454] acpi PNP0C02:01: Skipped [io  0x0072-0x0077]
[    0.822454] acpi PNP0C02:01: Could not reserve [io  0x1800-0x189f]
[    0.822454] acpi PNP0C02:01: Reserved [io  0x0800-0x087f]
[    0.822454] acpi PNP0C02:01: Reserved [io  0x0880-0x08ff]
[    0.822454] acpi PNP0C02:01: Reserved [io  0x0900-0x097f]
[    0.822454] acpi PNP0C02:01: Reserved [io  0x0980-0x09ff]
[    0.822454] acpi PNP0C02:01: Reserved [io  0x0a00-0x0a7f]
[    0.822454] acpi PNP0C02:01: Reserved [io  0x0a80-0x0aff]
[    0.822454] acpi PNP0C02:01: Reserved [io  0x0b00-0x0b7f]
[    0.822454] acpi PNP0C02:01: Reserved [io  0x0b80-0x0bff]
[    0.822454] acpi PNP0C02:01: Reserved [io  0x15e0-0x15ef]
[    0.822454] acpi PNP0C02:01: Could not reserve [io  0x1600-0x167f]
[    0.822454] acpi PNP0C02:01: Could not reserve [io  0x1640-0x165f]
[    0.822454] acpi PNP0C02:01: Reserved [mem 0xc0000000-0xcfffffff]
[    0.822454] acpi PNP0C02:01: Reserved [mem 0xfed10000-0xfed13fff]
[    0.822454] acpi PNP0C02:01: Reserved [mem 0xfed18000-0xfed18fff]
[    0.822454] acpi PNP0C02:01: Reserved [mem 0xfed19000-0xfed19fff]
[    0.822454] acpi PNP0C02:01: Reserved [mem 0xfeb00000-0xfebfffff]
[    0.822454] acpi PNP0C02:01: Reserved [mem 0xfed20000-0xfed3ffff]
[    0.822454] acpi PNP0C02:01: Could not reserve [mem 0xfed90000-0xfed93fff]
[    0.822454] acpi PNP0C02:02: Reserved [mem 0xfedc0000-0xfedc7fff]
[    0.822454] acpi PNP0C02:02: Reserved [mem 0xfeda0000-0xfeda0fff]
[    0.822454] acpi PNP0C02:02: Reserved [mem 0xfeda1000-0xfeda1fff]
[    0.822454] acpi PNP0C02:02: Reserved [mem 0xc0000000-0xcfffffff]
[    0.822454] acpi PNP0C02:02: Could not reserve [mem 0xfed20000-0xfed7ffff]
[    0.822454] acpi PNP0C02:02: Could not reserve [mem 0xfed90000-0xfed93fff]
[    0.822454] acpi PNP0C02:02: Could not reserve [mem 0xfed45000-0xfed8ffff]
[    0.822454] acpi PNP0C02:02: Reserved [mem 0xfee00000-0xfeefffff]
[    0.822454] acpi PNP0C02:03: Reserved [mem 0xfe000000-0xfe01ffff]
[    0.822454] acpi PNP0C02:03: Reserved [mem 0xfe04c000-0xfe04ffff]
[    0.822454] acpi PNP0C02:03: Reserved [mem 0xfe050000-0xfe0affff]
[    0.822454] acpi PNP0C02:03: Reserved [mem 0xfe0d0000-0xfe0fffff]
[    0.822454] acpi PNP0C02:03: Reserved [mem 0xfe200000-0xfe7fffff]
[    0.822454] acpi PNP0C02:03: Reserved [mem 0xff000000-0xffffffff]
[    0.822454] acpi PNP0C02:03: Could not reserve [io  0x1800-0x18fe]
[    0.822454] acpi PNP0C02:03: Reserved [mem 0xfd000000-0xfd68ffff]
[    0.822454] acpi PNP0C02:03: Reserved [mem 0xfd6b0000-0xfd6cffff]
[    0.822454] acpi PNP0C02:03: Reserved [mem 0xfd6f0000-0xfdffffff]
[    0.822454] acpi PNP0C02:04: Reserved [io  0xff00-0xfffe]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0x00000000-0x0009ffff]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0x000c0000-0x000c3fff]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0x000c8000-0x000cbfff]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0x000d0000-0x000d3fff]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0x000d8000-0x000dbfff]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0x000e0000-0x000e3fff]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0x000e8000-0x000ebfff]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0x000f0000-0x000fffff]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0x00100000-0xa07fffff]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0xfec00000-0xfed3ffff]
[    0.822454] acpi PNP0C01:00: Could not reserve [mem 0xfed4c000-0xffffffff]
[    0.822454] pnp: PnP ACPI init
[    0.827182] pnp: PnP ACPI: found 2 devices
[    0.832691] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.832755] NET: Registered PF_INET protocol family
[    0.832990] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.845226] tcp_listen_portaddr_hash hash table entries: 32768 (order: 7, 524288 bytes, linear)
[    0.845274] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.845620] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.846164] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.846298] TCP: Hash tables configured (established 524288 bind 65536)
[    0.846576] MPTCP token hash table entries: 65536 (order: 9, 1572864 bytes, linear)
[    0.846836] UDP hash table entries: 32768 (order: 9, 2097152 bytes, linear)
[    0.847029] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.847037] NET: Registered PF_XDP protocol family
[    0.847045] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    0.847056] pci 0000:00:02.0: VF BAR 2 [mem 0x4020000000-0x40ffffffff 64bit pref]: assigned
[    0.847062] pci 0000:00:02.0: VF BAR 0 [mem 0x4010000000-0x4016ffffff 64bit]: assigned
[    0.847067] pci 0000:00:07.0: bridge window [io  0x3000-0x3fff]: assigned
[    0.847070] pci 0000:00:07.2: bridge window [io  0x4000-0x4fff]: assigned
[    0.847073] pci 0000:00:15.0: BAR 0 [mem 0x4017000000-0x4017000fff 64bit]: assigned
[    0.847122] pci 0000:00:1f.5: BAR 0 [mem 0xa0800000-0xa0800fff]: assigned
[    0.847139] pci 0000:00:06.0: PCI bridge to [bus 02]
[    0.847165] pci 0000:00:06.0:   bridge window [mem 0xbc200000-0xbc2fffff]
[    0.847199] pci 0000:00:07.0: PCI bridge to [bus 20-49]
[    0.847202] pci 0000:00:07.0:   bridge window [io  0x3000-0x3fff]
[    0.847205] pci 0000:00:07.0:   bridge window [mem 0xb0000000-0xbc1fffff]
[    0.847208] pci 0000:00:07.0:   bridge window [mem 0x6000000000-0x601bffffff 64bit pref]
[    0.847213] pci 0000:00:07.2: PCI bridge to [bus 50-79]
[    0.847215] pci 0000:00:07.2:   bridge window [io  0x4000-0x4fff]
[    0.847219] pci 0000:00:07.2:   bridge window [mem 0xa2000000-0xae1fffff]
[    0.847222] pci 0000:00:07.2:   bridge window [mem 0x6020000000-0x603bffffff 64bit pref]
[    0.847227] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.847229] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.847231] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.847233] pci_bus 0000:00: resource 7 [mem 0xa0800000-0xbfffffff window]
[    0.847235] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
[    0.847237] pci_bus 0000:02: resource 1 [mem 0xbc200000-0xbc2fffff]
[    0.847239] pci_bus 0000:20: resource 0 [io  0x3000-0x3fff]
[    0.847241] pci_bus 0000:20: resource 1 [mem 0xb0000000-0xbc1fffff]
[    0.847243] pci_bus 0000:20: resource 2 [mem 0x6000000000-0x601bffffff 64bit pref]
[    0.847245] pci_bus 0000:50: resource 0 [io  0x4000-0x4fff]
[    0.847247] pci_bus 0000:50: resource 1 [mem 0xa2000000-0xae1fffff]
[    0.847249] pci_bus 0000:50: resource 2 [mem 0x6020000000-0x603bffffff 64bit pref]
[    0.848517] PCI: CLS 0 bytes, default 64
[    0.848601] DMAR: Intel-IOMMU force enabled due to platform opt in
[    0.848607] DMAR: No ATSR found
[    0.848608] DMAR: No SATC found
[    0.848610] DMAR: dmar0: Using Queued invalidation
[    0.848613] DMAR: dmar1: Using Queued invalidation
[    0.848904] Trying to unpack rootfs image as initramfs...
[    0.848914] pci 0000:00:02.0: Adding to iommu group 0
[    0.848973] pci 0000:00:00.0: Adding to iommu group 1
[    0.848981] pci 0000:00:04.0: Adding to iommu group 2
[    0.849040] pci 0000:00:06.0: Adding to iommu group 3
[    0.849049] pci 0000:00:07.0: Adding to iommu group 4
[    0.849060] pci 0000:00:07.2: Adding to iommu group 5
[    0.849068] pci 0000:00:0a.0: Adding to iommu group 6
[    0.849082] pci 0000:00:0d.0: Adding to iommu group 7
[    0.849089] pci 0000:00:0d.2: Adding to iommu group 7
[    0.849096] pci 0000:00:0d.3: Adding to iommu group 7
[    0.849112] pci 0000:00:14.0: Adding to iommu group 8
[    0.849119] pci 0000:00:14.2: Adding to iommu group 8
[    0.849127] pci 0000:00:14.3: Adding to iommu group 9
[    0.849136] pci 0000:00:15.0: Adding to iommu group 10
[    0.849147] pci 0000:00:16.0: Adding to iommu group 11
[    0.849165] pci 0000:00:1f.0: Adding to iommu group 12
[    0.849173] pci 0000:00:1f.3: Adding to iommu group 12
[    0.849181] pci 0000:00:1f.4: Adding to iommu group 12
[    0.849188] pci 0000:00:1f.5: Adding to iommu group 12
[    0.849197] pci 0000:00:1f.6: Adding to iommu group 12
[    0.849227] pci 0000:02:00.0: Adding to iommu group 13
[    0.849421] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    0.849423] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.849425] software IO TLB: mapped [mem 0x0000000085396000-0x0000000089396000] (64MB)
[    0.849465] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x23fa772cf26, max_idle_ns: 440795269835 ns
[    0.850037] clocksource: Switched to clocksource tsc
[    0.850075] platform rtc_cmos: registered fallback platform RTC device
[    0.852381] Initialise system trusted keyrings
[    0.852397] Key type blacklist registered
[    0.852629] workingset: timestamp_bits=36 (anon: 32) max_order=24 bucket_order=0 (anon: 0)
[    0.852809] fuse: init (API version 7.45)
[    0.853671] integrity: Platform Keyring initialized
[    0.853679] integrity: Machine keyring initialized
[    0.861236] Key type asymmetric registered
[    0.861240] Asymmetric key parser 'x509' registered
[    0.861271] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    0.861527] io scheduler mq-deadline registered
[    0.871559] ledtrig-cpu: registered to indicate activity on CPUs
[    0.871986] pcieport 0000:00:06.0: PME: Signaling with IRQ 122
[    0.872287] pcieport 0000:00:07.0: PME: Signaling with IRQ 123
[    0.872306] pcieport 0000:00:07.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.872772] pcieport 0000:00:07.2: PME: Signaling with IRQ 124
[    0.872794] pcieport 0000:00:07.2: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.873298] Monitor-Mwait will be used to enter C-1 state
[    0.873317] Monitor-Mwait will be used to enter C-2 state
[    0.873325] Monitor-Mwait will be used to enter C-3 state
[    0.881425] acpi LNXTHERM:00: registered as thermal_zone0
[    0.881432] ACPI: thermal: Thermal Zone [THM0] (47 C)
[    0.881602] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.882393] hpet_acpi_probe: no address or irqs in _CRS
[    0.885109] tpm_tis STM0177:00: 2.0 TPM (device-id 0x0, rev-id 78)
[    0.901035] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[    0.901418] i8042: Warning: Keylock active
[    0.903595] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.903600] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.903718] mousedev: PS/2 mouse device common for all mice
[    0.903745] rtc_cmos rtc_cmos: RTC can wake from S4
[    0.905637] rtc_cmos rtc_cmos: registered as rtc0
[    0.905990] rtc_cmos rtc_cmos: setting system clock to 2026-06-04T12:16:09 UTC (1780575369)
[    0.906024] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
[    0.906726] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    0.908708] intel_pstate: Intel P-state driver initializing
[    0.910777] intel_pstate: HWP enabled
[    0.911039] efifb: probing for efifb
[    0.911049] efifb: framebuffer at 0x4000000000, using 9000k, total 9000k
[    0.911051] efifb: mode is 1920x1200x32, linelength=7680, pages=1
[    0.911054] efifb: scrolling: redraw
[    0.911055] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.912892] Console: switching to colour frame buffer device 240x75
[    0.914530] fb0: EFI VGA frame buffer device
[    0.914718] NET: Registered PF_INET6 protocol family
[    0.915120] Segment Routing with IPv6
[    0.915133] In-situ OAM (IOAM) with IPv6
[    0.915155] mip6: Mobile IPv6
[    0.915162] NET: Registered PF_PACKET protocol family
[    0.915196] mpls_gso: MPLS GSO support
[    0.920112] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.922642] microcode: Current revision: 0x0000043b
[    0.924658] IPI shorthand broadcast: enabled
[    0.925561] sched_clock: Marking stable (908349812, 16446452)->(964221836, -39425572)
[    0.926554] registered taskstats version 1
[    0.926670] Loading compiled-in X.509 certificates
[    0.927249] Loaded X.509 cert 'Build time autogenerated kernel key: 5a60e7241aaebc912e5b763bb2b6721f8f5b5e7f'
[    0.928143] Demotion targets for Node 0: null
[    0.928433] Key type .fscrypt registered
[    0.928438] Key type fscrypt-provisioning registered
[    1.064667] Freeing initrd memory: 149496K
[    1.077645] Key type encrypted registered
[    1.077692] AppArmor: AppArmor sha256 policy hashing enabled
[    1.077702] ima: Allocated hash algorithm: sha256
[    1.108748] ima: No architecture policies found
[    1.108806] evm: Initialising EVM extended attributes:
[    1.108819] evm: security.selinux
[    1.108829] evm: security.SMACK64 (disabled)
[    1.108840] evm: security.SMACK64EXEC (disabled)
[    1.108852] evm: security.SMACK64TRANSMUTE (disabled)
[    1.108864] evm: security.SMACK64MMAP (disabled)
[    1.108875] evm: security.apparmor
[    1.108884] evm: security.ima
[    1.108891] evm: security.capability
[    1.108901] evm: HMAC attrs: 0x1
[    1.110555] integrity: Loading X.509 certificate: UEFI:db
[    1.110626] integrity: Loaded X.509 cert 'Lenovo Ltd.: ThinkPad Product CA 2012: 838b1f54c1550463f45f98700640f11069265949'
[    1.110652] integrity: Loading X.509 certificate: UEFI:db
[    1.110684] integrity: Loaded X.509 cert 'Lenovo UEFI CA 2014: 4b91a68732eaefdd2c8ffffc6b027ec3449e9c8f'
[    1.110704] integrity: Loading X.509 certificate: UEFI:db
[    1.110742] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    1.112581] blacklist: Duplicate blacklisted hash bin:80b4d96931bf0d02fd91a61e19d14f1da452e66db2408ca8604d411f92659f0a
[    1.112616] blacklist: Duplicate blacklisted hash bin:f52f83a3fa9cfbd6920f722824dbe4034534d25b8507246b3b957dac6e1bce7a
[    1.112640] blacklist: Duplicate blacklisted hash bin:c5d9d8a186e2c82d09afaa2a6f7f2e73870d3e64f72c4e08ef67796a840f0fbd
[    1.112663] blacklist: Duplicate blacklisted hash bin:1aec84b84b6c65a51220a9be7181965230210d62d6d33c48999c6b295a2b0a06
[    1.112685] blacklist: Duplicate blacklisted hash bin:c3a99a460da464a057c3586d83cef5f4ae08b7103979ed8932742df0ed530c66
[    1.112708] blacklist: Duplicate blacklisted hash bin:58fb941aef95a25943b3fb5f2510a0df3fe44c58c95e0ab80487297568ab9771
[    1.112731] blacklist: Duplicate blacklisted hash bin:5391c3a2fb112102a6aa1edc25ae77e19f5d6f09cd09eeb2509922bfcd5992ea
[    1.112754] blacklist: Duplicate blacklisted hash bin:d626157e1d6a718bc124ab8da27cbb65072ca03a7b6b257dbdcbbd60f65ef3d1
[    1.112776] blacklist: Duplicate blacklisted hash bin:d063ec28f67eba53f1642dbf7dff33c6a32add869f6013fe162e2c32f1cbe56d
[    1.112801] blacklist: Duplicate blacklisted hash bin:29c6eb52b43c3aa18b2cd8ed6ea8607cef3cfae1bafe1165755cf2e614844a44
[    1.112823] blacklist: Duplicate blacklisted hash bin:90fbe70e69d633408d3e170c6832dbb2d209e0272527dfb63d49d29572a6f44c
[    1.112845] blacklist: Duplicate blacklisted hash bin:106faceacfecfd4e303b74f480a08098e2d0802b936f8ec774ce21f31686689c
[    1.113680] blacklist: Duplicate blacklisted hash bin:174e3a0b5b43c6a607bbd3404f05341e3dcf396267ce94f8b50e2e23a9da920c
[    1.114450] blacklist: Duplicate blacklisted hash bin:2b99cf26422e92fe365fbf4bc30d27086c9ee14b7a6fff44fb2f6b9001699939
[    1.115088] blacklist: Duplicate blacklisted hash bin:2e70916786a6f773511fa7181fab0f1d70b557c6322ea923b2a8d3b92b51af7d
[    1.115634] blacklist: Duplicate blacklisted hash bin:3fce9b9fdf3ef09d5452b0f95ee481c2b7f06d743a737971558e70136ace3e73
[    1.116175] blacklist: Duplicate blacklisted hash bin:47cc086127e2069a86e03a6bef2cd410f8c55a6d6bdb362168c31b2ce32a5adf
[    1.116711] blacklist: Duplicate blacklisted hash bin:71f2906fd222497e54a34662ab2497fcc81020770ff51368e9e3d9bfcbfd6375
[    1.117253] blacklist: Duplicate blacklisted hash bin:82db3bceb4f60843ce9d97c3d187cd9b5941cd3de8100e586f2bda5637575f67
[    1.117764] blacklist: Duplicate blacklisted hash bin:8ad64859f195b5f58dafaa940b6a6167acd67a886e8f469364177221c55945b9
[    1.118277] blacklist: Duplicate blacklisted hash bin:8d8ea289cfe70a1c07ab7365cb28ee51edd33cf2506de888fbadd60ebf80481c
[    1.118800] blacklist: Duplicate blacklisted hash bin:aeebae3151271273ed95aa2e671139ed31a98567303a332298f83709a9d55aa1
[    1.119298] blacklist: Duplicate blacklisted hash bin:c409bdac4775add8db92aa22b5b718fb8c94a1462c1fe9a416b95d8a3388c2fc
[    1.119792] blacklist: Duplicate blacklisted hash bin:c617c1a8b1ee2a811c28b5a81b4c83d7c98b5b0c27281d610207ebe692c2967f
[    1.120285] blacklist: Duplicate blacklisted hash bin:c90f336617b8e7f983975413c997f10b73eb267fd8a10cb9e3bdbfc667abdb8b
[    1.120806] blacklist: Duplicate blacklisted hash bin:64575bd912789a2e14ad56f6341f52af6bf80cf94400785975e9f04e2d64d745
[    1.121291] blacklist: Duplicate blacklisted hash bin:45c7c8ae750acfbb48fc37527d6412dd644daed8913ccd8a24c94d856967df8e
[    1.121883] blacklist: Duplicate blacklisted hash bin:47ff1b63b140b6fc04ed79131331e651da5b2e2f170f5daef4153dc2fbc532b1
[    1.122384] blacklist: Duplicate blacklisted hash bin:5391c3a2fb112102a6aa1edc25ae77e19f5d6f09cd09eeb2509922bfcd5992ea
[    1.122888] blacklist: Duplicate blacklisted hash bin:80b4d96931bf0d02fd91a61e19d14f1da452e66db2408ca8604d411f92659f0a
[    1.123394] blacklist: Duplicate blacklisted hash bin:992d359aa7a5f789d268b94c11b9485a6b1ce64362b0edb4441ccc187c39647b
[    1.123934] blacklist: Duplicate blacklisted hash bin:c452ab846073df5ace25cca64d6b7a09d906308a1a65eb5240e3c4ebcaa9cc0c
[    1.124445] blacklist: Duplicate blacklisted hash bin:e051b788ecbaeda53046c70e6af6058f95222c046157b8c4c1b9c2cfc65f46e5
[    1.125133] RAS: Correctable Errors collector initialized.
[    1.125718] clk: Disabling unused clocks
[    1.126245] PM: genpd: Disabling unused power domains
[    1.131129] Freeing unused decrypted memory: 2036K
[    1.132378] Freeing unused kernel image (initmem) memory: 4380K
[    1.132889] Write protecting the kernel read-only data: 32768k
[    1.134378] Freeing unused kernel image (text/rodata gap) memory: 2028K
[    1.135503] Freeing unused kernel image (rodata/data gap) memory: 1788K
[    1.141150] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.141852] Run /init as init process
[    1.142546]   with arguments:
[    1.143266]     /init
[    1.143910]   with environment:
[    1.144406]     HOME=/
[    1.144926]     TERM=linux
[    1.256389] acpi-fan PNP0C0B:00: Using Microsoft fan extensions
[    1.258760] input: Sleep Button as /devices/platform/PNP0C0E:00/input/input2
[    1.259466] ACPI: button: Sleep Button [SLPB]
[    1.260929] input: Lid Switch as /devices/platform/PNP0C0D:00/input/input3
[    1.262001] ACPI: button: Lid Switch [LID]
[    1.263124] input: Power Button as /devices/platform/PNP0C0C:00/input/input4
[    1.263789] ACPI: button: Power Button [PWRB]
[    1.274595] e1000e: Intel(R) PRO/1000 Network Driver
[    1.275123] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.275941] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    1.279668] ACPI: bus type thunderbolt registered
[    1.288069] ACPI: battery: Slot [BAT0] (battery present)
[    1.290934] ACPI: bus type drm_connector registered
[    1.292858] Key type psk registered
[    1.296747] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[    1.296775] i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003)
[    1.297886] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    1.298836] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    1.300297] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    1.306096] hid: raw HID events driver (C) Jiri Kosina
[    1.310629] i2c i2c-0: Successfully instantiated SPD at 0x51
[    1.315597] ACPI: bus type USB registered
[    1.316911] usbcore: registered new interface driver usbfs
[    1.318015] usbcore: registered new interface driver hub
[    1.319107] usbcore: registered new device driver usb
[    1.321806] nvme 0000:02:00.0: platform quirk: setting simple suspend
[    1.322369] nvme nvme0: pci function 0000:02:00.0
[    1.338801] nvme nvme0: D3 entry latency set to 8 seconds
[    1.358499] nvme nvme0: passthrough uses implicit buffer lengths
[    1.366297] nvme nvme0: allocated 64 MiB host memory buffer (16 segments).
[    1.416761] nvme nvme0: 12/0/0 default/read/poll queues
[    1.427124]  nvme0n1: p1 p2 p3
[    1.432355] xhci_hcd 0000:00:0d.0: xHCI Host Controller
[    1.432398] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[    1.432984] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 1
[    1.434293] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    1.435676] xhci_hcd 0000:00:0d.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[    1.436142] input: ELAN0676:00 04F3:3195 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-ELAN0676:00/0018:04F3:3195.0001/input/input6
[    1.436455] xhci_hcd 0000:00:0d.0: xHCI Host Controller
[    1.437410] input: ELAN0676:00 04F3:3195 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-ELAN0676:00/0018:04F3:3195.0001/input/input8
[    1.437663] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 2
[    1.438753] hid-generic 0018:04F3:3195.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0676:00 04F3:3195] on i2c-ELAN0676:00
[    1.439209] xhci_hcd 0000:00:0d.0: Host supports USB 3.2 Enhanced SuperSpeed
[    1.440915] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 7.01
[    1.441921] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.442900] usb usb1: Product: xHCI Host Controller
[    1.443877] usb usb1: Manufacturer: Linux 7.1.0-rc5-drm-tip xhci-hcd
[    1.444905] usb usb1: SerialNumber: 0000:00:0d.0
[    1.445581] hub 1-0:1.0: USB hub found
[    1.446584] hub 1-0:1.0: 1 port detected
[    1.448013] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 7.01
[    1.449022] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.449554] usb usb2: Product: xHCI Host Controller
[    1.450054] usb usb2: Manufacturer: Linux 7.1.0-rc5-drm-tip xhci-hcd
[    1.450568] usb usb2: SerialNumber: 0000:00:0d.0
[    1.451202] hub 2-0:1.0: USB hub found
[    1.452149] hub 2-0:1.0: 3 ports detected
[    1.457847] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.458324] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    1.459915] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000100200009810
[    1.460738] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.461245] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    1.461741] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[    1.462323] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 7.01
[    1.462820] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.463347] usb usb3: Product: xHCI Host Controller
[    1.463837] usb usb3: Manufacturer: Linux 7.1.0-rc5-drm-tip xhci-hcd
[    1.464338] usb usb3: SerialNumber: 0000:00:14.0
[    1.464993] hub 3-0:1.0: USB hub found
[    1.465526] hub 3-0:1.0: 12 ports detected
[    1.467241] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 7.01
[    1.467735] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.468232] usb usb4: Product: xHCI Host Controller
[    1.468770] usb usb4: Manufacturer: Linux 7.1.0-rc5-drm-tip xhci-hcd
[    1.469268] usb usb4: SerialNumber: 0000:00:14.0
[    1.469865] hub 4-0:1.0: USB hub found
[    1.470392] hub 4-0:1.0: 4 ports detected
[    1.499420] input: ELAN0676:00 04F3:3195 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-ELAN0676:00/0018:04F3:3195.0001/input/input9
[    1.500655] input: ELAN0676:00 04F3:3195 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-ELAN0676:00/0018:04F3:3195.0001/input/input11
[    1.501852] hid-multitouch 0018:04F3:3195.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN0676:00 04F3:3195] on i2c-ELAN0676:00
[    1.568687] psmouse serio1: trackpoint: Elan TrackPoint firmware: 0x00, buttons: 3/3
[    1.591396] input: TPPS/2 Elan TrackPoint as /devices/platform/i8042/serio1/input/input5
[    1.700418] e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
[    1.716589] usb 3-3: new full-speed USB device number 2 using xhci_hcd
[    1.771087] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) 6c:24:08:b8:57:f0
[    1.771795] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
[    1.772669] e1000e 0000:00:1f.6 eth0: MAC: 15, PHY: 12, PBA No: FFFFFF-0FF
[    1.805245] e1000e 0000:00:1f.6 enp0s31f6: renamed from eth0
[    1.824733] Setting dangerous option enable_psr - tainting kernel
[    1.825638] i915 0000:00:02.0: enabling device (0006 -> 0007)
[    1.826441] i915 0000:00:02.0: [drm] Found alderlake_p (device ID 46a6) integrated display version 13.00 stepping D0
[    1.827228] i915 0000:00:02.0: [drm:intel_gt_common_init_early [i915]] WOPCM: 2048K
[    1.828052] i915 0000:00:02.0: [drm:intel_uc_init_early [i915]] GT0: enable_guc=3 (guc:yes submission:yes huc:yes slpc:yes)
[    1.828745] i915 0000:00:02.0: [drm:intel_pch_type [i915]] Found Alder Lake PCH
[    1.829403] i915 0000:00:02.0: [drm:intel_dmc_wl_init [i915]] Sanitized enable_dmc_wl value: 0 (disabled)
[    1.830114] i915 0000:00:02.0: [drm:intel_gt_probe_all [i915]] GT0: Setting up Primary GT
[    1.830776] i915 0000:00:02.0: [drm:intel_uncore_init_mmio [i915]] unclaimed mmio detected on uncore init, clearing
[    1.831488] i915 0000:00:02.0: [drm:intel_display_device_info_runtime_init [i915]] rawclk rate: 19200 kHz
[    1.832407] i915 0000:00:02.0: [drm:intel_engines_init_mmio [i915]] GT0: vdbox enable: 0005, instances: 0005
[    1.833065] i915 0000:00:02.0: [drm:intel_engines_init_mmio [i915]] GT0: vebox enable: 0001, instances: 0001
[    1.834010] i915 0000:00:02.0: [drm:i915_ggtt_probe_hw [i915]] GGTT size = 4096M
[    1.834744] i915 0000:00:02.0: [drm:i915_ggtt_probe_hw [i915]] GMADR size = 256M
[    1.835406] i915 0000:00:02.0: [drm:i915_ggtt_probe_hw [i915]] DSM size = 64M
[    1.836068] i915 0000:00:02.0: [drm] VT-d active for gfx access
[    1.836703] Console: switching to colour dummy device 80x25
[    1.836720] i915 0000:00:02.0: vgaarb: deactivate vga console
[    1.836774] i915 0000:00:02.0: [drm] Using Transparent Hugepages
[    1.836780] i915 0000:00:02.0: [drm:i915_gem_init_stolen [i915]] GEN6_STOLEN_RESERVED = 0x00000000a0600087
[    1.836915] i915 0000:00:02.0: [drm:i915_gem_init_stolen [i915]] Memory reserved for graphics device: 65536K, usable: 63488K
[    1.837028] i915 0000:00:02.0: [drm:intel_memory_regions_hw_probe [i915]] Memory region(0): system: 39740 MiB [mem 0x00000000-0x9b3ccdfff], io: n/a
[    1.837134] i915 0000:00:02.0: [drm:intel_memory_regions_hw_probe [i915]] Memory region(5): stolen-system: 62 MiB [mem 0x9c800000-0xa05fffff], io: n/a
[    1.837267] i915 0000:00:02.0: [drm:intel_opregion_setup [i915]] graphic opregion physical addr: 0x93e63018
[    1.837394] i915 0000:00:02.0: [drm:intel_opregion_setup [i915]] ACPI OpRegion version 2.1.0
[    1.837494] i915 0000:00:02.0: [drm:intel_opregion_setup [i915]] Public ACPI methods supported
[    1.837585] i915 0000:00:02.0: [drm:intel_opregion_setup [i915]] ASLE supported
[    1.837673] i915 0000:00:02.0: [drm:intel_opregion_setup [i915]] ASLE extension supported
[    1.837756] i915 0000:00:02.0: [drm:intel_opregion_setup [i915]] Found valid VBT in ACPI OpRegion (RVDA)
[    1.837837] i915 0000:00:02.0: [drm:intel_dram_detect [i915]] DRAM type: DDR4
[    1.837963] i915 0000:00:02.0: [drm:intel_dram_detect [i915]] DRAM channels: 2
[    1.838079] i915 0000:00:02.0: [drm:intel_dram_detect [i915]] Num QGV points 4
[    1.838187] i915 0000:00:02.0: [drm:intel_dram_detect [i915]] Num PSF GV points 3
[    1.838308] i915 0000:00:02.0: [drm:icl_get_qgv_points.constprop.0 [i915]] QGV 0: DCLK=2134 tRP=15 tRDPRE=8 tRAS=35 tRCD=15 tRC=50
[    1.838436] i915 0000:00:02.0: [drm:icl_get_qgv_points.constprop.0 [i915]] QGV 1: DCLK=2934 tRP=21 tRDPRE=12 tRAS=47 tRCD=21 tRC=68
[    1.838553] i915 0000:00:02.0: [drm:icl_get_qgv_points.constprop.0 [i915]] QGV 2: DCLK=3201 tRP=22 tRDPRE=12 tRAS=52 tRCD=22 tRC=74
[    1.838670] i915 0000:00:02.0: [drm:icl_get_qgv_points.constprop.0 [i915]] QGV 3: DCLK=2668 tRP=19 tRDPRE=10 tRAS=43 tRCD=19 tRC=62
[    1.838787] i915 0000:00:02.0: [drm:icl_get_qgv_points.constprop.0 [i915]] PSF GV 0: CLK=32
[    1.838899] i915 0000:00:02.0: [drm:icl_get_qgv_points.constprop.0 [i915]] PSF GV 1: CLK=48
[    1.839007] i915 0000:00:02.0: [drm:icl_get_qgv_points.constprop.0 [i915]] PSF GV 2: CLK=48
[    1.839111] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW0 / QGV 0: num_planes=0 deratedbw=9299 peakbw: 34144
[    1.839218] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW0 / QGV 1: num_planes=0 deratedbw=10925 peakbw: 46944
[    1.839331] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW0 / QGV 2: num_planes=0 deratedbw=11707 peakbw: 51216
[    1.839441] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW0 / QGV 3: num_planes=0 deratedbw=10508 peakbw: 42688
[    1.839571] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW0 / PSF GV 0: num_planes=0 bw=34133
[    1.839679] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW0 / PSF GV 1: num_planes=0 bw=51200
[    1.839786] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW0 / PSF GV 2: num_planes=0 bw=51200
[    1.839892] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW1 / QGV 0: num_planes=2 deratedbw=11064 peakbw: 34144
[    1.839996] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW1 / QGV 1: num_planes=2 deratedbw=13813 peakbw: 46944
[    1.840101] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW1 / QGV 2: num_planes=2 deratedbw=14899 peakbw: 51216
[    1.840198] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW1 / QGV 3: num_planes=2 deratedbw=13010 peakbw: 42688
[    1.840295] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW1 / PSF GV 0: num_planes=2 bw=34133
[    1.840404] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW1 / PSF GV 1: num_planes=2 bw=51200
[    1.841393] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW1 / PSF GV 2: num_planes=2 bw=51200
[    1.841507] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW2 / QGV 0: num_planes=0 deratedbw=12225 peakbw: 34144
[    1.841610] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW2 / QGV 1: num_planes=0 deratedbw=15917 peakbw: 46944
[    1.841706] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW2 / QGV 2: num_planes=0 deratedbw=17252 peakbw: 51216
[    1.841805] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW2 / QGV 3: num_planes=0 deratedbw=14768 peakbw: 42688
[    1.841903] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW2 / PSF GV 0: num_planes=0 bw=34133
[    1.841997] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW2 / PSF GV 1: num_planes=0 bw=51200
[    1.842089] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW2 / PSF GV 2: num_planes=0 bw=51200
[    1.842180] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW3 / QGV 0: num_planes=0 deratedbw=12902 peakbw: 34144
[    1.842276] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW3 / QGV 1: num_planes=0 deratedbw=17230 peakbw: 46944
[    1.842373] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW3 / QGV 2: num_planes=0 deratedbw=18731 peakbw: 51216
[    1.842469] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW3 / QGV 3: num_planes=0 deratedbw=15838 peakbw: 42688
[    1.844836] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW3 / PSF GV 0: num_planes=0 bw=34133
[    1.844973] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW3 / PSF GV 1: num_planes=0 bw=51200
[    1.845097] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW3 / PSF GV 2: num_planes=0 bw=51200
[    1.846027] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW4 / QGV 0: num_planes=0 deratedbw=13269 peakbw: 34144
[    1.846136] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW4 / QGV 1: num_planes=0 deratedbw=17970 peakbw: 46944
[    1.846227] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW4 / QGV 2: num_planes=0 deratedbw=19569 peakbw: 51216
[    1.846308] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW4 / QGV 3: num_planes=0 deratedbw=16433 peakbw: 42688
[    1.846395] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW4 / PSF GV 0: num_planes=0 bw=34133
[    1.846493] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW4 / PSF GV 1: num_planes=0 bw=51200
[    1.846594] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW4 / PSF GV 2: num_planes=0 bw=51200
[    1.846687] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW5 / QGV 0: num_planes=0 deratedbw=13460 peakbw: 34144
[    1.846768] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW5 / QGV 1: num_planes=0 deratedbw=18365 peakbw: 46944
[    1.846847] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW5 / QGV 2: num_planes=0 deratedbw=20017 peakbw: 51216
[    1.846930] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW5 / QGV 3: num_planes=0 deratedbw=16748 peakbw: 42688
[    1.847021] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW5 / PSF GV 0: num_planes=0 bw=34133
[    1.847112] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW5 / PSF GV 1: num_planes=0 bw=51200
[    1.847201] i915 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [i915]] BW5 / PSF GV 2: num_planes=0 bw=51200
[    1.849563] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Set default to SSC at 120000 kHz
[    1.849721] i915 0000:00:02.0: [drm:intel_bios_init [i915]] VBT signature "$VBT ALDERLAKE-P    ", BDB version 249
[    1.849826] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 1 (size 6, min size 7)
[    1.849926] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 2 (size 395, min size 5)
[    1.850022] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 9 (size 100, min size 100)
[    1.850118] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 12 (size 19, min size 19)
[    1.850213] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 27 (size 812, min size 850)
[    1.850309] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 40 (size 34, min size 34)
[    1.850416] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Generating LFP data table pointers
[    1.852871] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 41 (size 148, min size 148)
[    1.852977] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 42 (size 1366, min size 1366)
[    1.853079] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 43 (size 305, min size 305)
[    1.853181] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 44 (size 78, min size 136)
[    1.854196] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 52 (size 822, min size 822)
[    1.854312] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found BDB block 56 (size 210, min size 210)
[    1.854431] 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
[    1.854547] i915 0000:00:02.0: [drm:intel_bios_init [i915]] crt_ddc_bus_pin: 2
[    1.854654] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found VBT child device with type 0x1806
[    1.854764] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found VBT child device with type 0x60d2
[    1.854880] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found VBT child device with type 0x68c6
[    1.854990] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found VBT child device with type 0x68c6
[    1.855098] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found VBT child device with type 0x68c6
[    1.856009] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Found VBT child device with type 0x68c6
[    1.856111] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Skipping SDVO device mapping
[    1.856213] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port A VBT info: CRT:0 DVI:0 HDMI:0 DP:1 eDP:1 DSI:0 DP++:0 LSPCON:0 USB-Type-C:0 TBT:0 DSC:0
[    1.856314] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port A VBT HDMI level shift: 0
[    1.859168] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port B VBT info: CRT:0 DVI:1 HDMI:1 DP:0 eDP:0 DSI:0 DP++:0 LSPCON:0 USB-Type-C:0 TBT:0 DSC:0
[    1.859283] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port B VBT HDMI level shift: 0
[    1.859391] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port B VBT DP max link rate: 810000
[    1.859495] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port D VBT info: CRT:0 DVI:0 HDMI:0 DP:1 eDP:0 DSI:0 DP++:0 LSPCON:0 USB-Type-C:1 TBT:1 DSC:0
[    1.859596] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port D VBT HDMI level shift: 0
[    1.859693] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port D VBT DP max link rate: 810000
[    1.859788] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port E VBT info: CRT:0 DVI:0 HDMI:0 DP:1 eDP:0 DSI:0 DP++:0 LSPCON:0 USB-Type-C:1 TBT:1 DSC:0
[    1.859884] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port E VBT HDMI level shift: 0
[    1.859990] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port E VBT DP max link rate: 810000
[    1.860098] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port F VBT info: CRT:0 DVI:0 HDMI:0 DP:1 eDP:0 DSI:0 DP++:0 LSPCON:0 USB-Type-C:1 TBT:1 DSC:0
[    1.860588] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port F VBT HDMI level shift: 0
[    1.860683] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port F VBT DP max link rate: 810000
[    1.860777] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port G VBT info: CRT:0 DVI:0 HDMI:0 DP:1 eDP:0 DSI:0 DP++:0 LSPCON:0 USB-Type-C:1 TBT:1 DSC:0
[    1.862737] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port G VBT HDMI level shift: 0
[    1.862840] i915 0000:00:02.0: [drm:intel_bios_init [i915]] Port G VBT DP max link rate: 810000
[    1.862943] i915 0000:00:02.0: [drm:intel_power_domains_init [i915]] Allowed DC state mask 4000000a
[    1.863063] i915 0000:00:02.0: [drm:gen9_set_dc_state.part.0 [i915]] Setting DC state from 00 to 00
[    1.863215] i915 0000:00:02.0: [drm:check_phy_reg [i915]] Combo PHY A reg 001628a0 state mismatch: current 9003593c mask e0000000 expected a0000000
[    1.863344] i915 0000:00:02.0: [drm:icl_combo_phys_init [i915]] Initializing combo PHY A (Voltage/Process Info : 0.85V dot0 (low-voltage))
[    1.863496] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_1
[    1.863614] i915 0000:00:02.0: [drm:intel_cdclk_init_hw [i915]] Current CDCLK 179200 kHz, VCO 537600 kHz, ref 38400 kHz, bypass 19200 kHz, voltage level 0
[    1.864176] i915 0000:00:02.0: [drm:gen9_dbuf_slices_update [i915]] Updating dbuf slices to 0xf
[    1.864329] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling always-on
[    1.864430] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling DC_off
[    1.864509] usb 3-3: New USB device found, idVendor=06cb, idProduct=00f9, bcdDevice= 0.00
[    1.864511] usb 3-3: New USB device strings: Mfr=0, Product=0, SerialNumber=1
[    1.864512] usb 3-3: SerialNumber: eddde7adb083
[    1.864539] i915 0000:00:02.0: [drm:gen9_set_dc_state.part.0 [i915]] Setting DC state from 00 to 00
[    1.864685] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_2
[    1.864776] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_A
[    1.864858] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_B
[    1.864939] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_C
[    1.865018] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_D
[    1.865135] i915 0000:00:02.0: [drm:intel_dmc_init [i915]] Loading i915/adlp_dmc.bin
[    1.865239] i915 0000:00:02.0: [drm:intel_bw_init [i915]] Forcing SAGV disable: mask 0x10b
[    1.865638] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]] DMC 0:
[    1.865623] i915 0000:00:02.0: [drm:intel_fbc_init [i915]] Sanitized enable_fbc value: 1
[    1.865730] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[0]: 0x8f074 = 0x86fc0
[    1.865833] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[1]: 0x8f034 = 0xc003b400 (EVT_CTL)
[    1.865934] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[2]: 0x8f004 = 0x1240108 (EVT_HTP)
[    1.866031] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[3]: 0x8f038 = 0xc003b200 (EVT_CTL)
[    1.866129] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[4]: 0x8f008 = 0x512050d4 (EVT_HTP)
[    1.866225] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[5]: 0x8f03c = 0xc003b300 (EVT_CTL)
[    1.866233] i915 0000:00:02.0: [drm:skl_wm_init [i915]] SAGV supported: yes, original SAGV block time: 35 us
[    1.866320] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[6]: 0x8f00c = 0x584c57fc (EVT_HTP)
[    1.866373] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] original WM0 latency not provided
[    1.866419] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]] DMC 1:
[    1.866484] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] original WM1 latency 51 (51.0 usec)
[    1.866517] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[0]: 0x5f074 = 0x96fc0
[    1.866579] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] original WM2 latency 80 (80.0 usec)
[    1.866627] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[1]: 0x5f034 = 0xc003df00 (EVT_CTL) (disabling)
[    1.866664] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] original WM3 latency 99 (99.0 usec)
[    1.866733] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[2]: 0x5f004 = 0x214c2114 (EVT_HTP)
[    1.866746] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] original WM4 latency 144 (144.0 usec)
[    1.866823] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] original WM5 latency 144 (144.0 usec)
[    1.866836] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[3]: 0x5f038 = 0xc003e000 (EVT_CTL) (disabling)
[    1.866901] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] adjusted WM0 latency 3 (3.0 usec)
[    1.866933] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[4]: 0x5f008 = 0x22402208 (EVT_HTP)
[    1.866988] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] adjusted WM1 latency 54 (54.0 usec)
[    1.867029] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[5]: 0x5f03c = 0xc0032c00 (EVT_CTL) (disabling)
[    1.867070] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] adjusted WM2 latency 83 (83.0 usec)
[    1.867124] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[6]: 0x5f00c = 0x241422fc (EVT_HTP)
[    1.867148] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] adjusted WM3 latency 102 (102.0 usec)
[    1.867217] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[7]: 0x5f040 = 0xc0033100 (EVT_CTL) (disabling)
[    1.867225] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] adjusted WM4 latency 147 (147.0 usec)
[    1.867307] i915 0000:00:02.0: [drm:intel_print_wm_latency [i915]] adjusted WM5 latency 147 (147.0 usec)
[    1.867312] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[8]: 0x5f010 = 0x26f826cc (EVT_HTP)
[    1.867407] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]] DMC 2:
[    1.867499] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[0]: 0x5f474 = 0x9efc0
[    1.867552] i915 0000:00:02.0: [drm:intel_crtc_init [i915]] 4 display pipes available.
[    1.867591] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[1]: 0x5f434 = 0xc003df00 (EVT_CTL) (disabling)
[    1.867693] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[2]: 0x5f404 = 0xa968a930 (EVT_HTP)
[    1.867797] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[3]: 0x5f438 = 0xc003e000 (EVT_CTL) (disabling)
[    1.867895] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[4]: 0x5f408 = 0xaa5caa24 (EVT_HTP)
[    1.867991] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[5]: 0x5f43c = 0xc0032c00 (EVT_CTL) (disabling)
[    1.868085] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[6]: 0x5f40c = 0xac30ab18 (EVT_HTP)
[    1.868083] i915 0000:00:02.0: [drm:intel_cdclk_read_hw [i915]] Current CDCLK 179200 kHz, VCO 537600 kHz, ref 38400 kHz, bypass 19200 kHz, voltage level 0
[    1.868180] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[7]: 0x5f440 = 0xc0033100 (EVT_CTL) (disabling)
[    1.868218] i915 0000:00:02.0: [drm:intel_update_max_cdclk [i915]] Max CD clock rate: 652800 kHz
[    1.868273] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[8]: 0x5f410 = 0xaf14aee8 (EVT_HTP)
[    1.868342] i915 0000:00:02.0: [drm:intel_display_driver_probe_nogem [i915]] Max dotclock rate: 1305600 kHz
[    1.868368] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]] DMC 3:
[    1.868477] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[0]: 0x5f874 = 0x53fc0
[    1.868480] i915 0000:00:02.0: [drm:intel_dp_aux_ch [i915]] [ENCODER:507:DDI A/PHY A] Using AUX CH A (VBT)
[    1.868582] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[1]: 0x5f83c = 0xc0032c00 (EVT_CTL) (disabling)
[    1.868590] i915 0000:00:02.0: [drm:intel_dp_init_connector [i915]] Adding eDP connector on [ENCODER:507:DDI A/PHY A]
[    1.868681] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[2]: 0x5f80c = 0x25202408 (EVT_HTP)
[    1.868681] i915 0000:00:02.0: [drm:intel_bios_init_panel [i915]] Panel type (VBT): 2
[    1.868774] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[3]: 0x5f840 = 0xc0033100 (EVT_CTL) (disabling)
[    1.868800] i915 0000:00:02.0: [drm:intel_bios_init_panel [i915]] Selected panel type (VBT): 2
[    1.868866] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[4]: 0x5f810 = 0x280427d8 (EVT_HTP)
[    1.868913] i915 0000:00:02.0: [drm:intel_bios_init_panel [i915]] DRRS supported mode is seamless
[    1.868955] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]] DMC 4:
[    1.869021] i915 0000:00:02.0: [drm:intel_bios_init_panel [i915]] Found panel mode in BIOS VBT legacy lfp table: "1024x768": 60 65000 1024 1048 1184 1344 768 771 777 806 0x8 0xa
[    1.869044] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[0]: 0x5fc74 = 0x5afc0
[    1.869125] i915 0000:00:02.0: [drm:intel_bios_init_panel [i915]] VBT initial LVDS value 300
[    1.869132] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[1]: 0x5fc3c = 0xc0032c00 (EVT_CTL) (disabling)
[    1.869225] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[2]: 0x5fc0c = 0x95209408 (EVT_HTP)
[    1.869232] i915 0000:00:02.0: [drm:intel_bios_init_panel [i915]] Panel manufacturer name: MS_, product code: 3, serial number: 3, year of manufacture: 2002
[    1.869330] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[3]: 0x5fc40 = 0xc0033100 (EVT_CTL) (disabling)
[    1.869340] i915 0000:00:02.0: [drm:intel_bios_init_panel [i915]] Panel name: LFP_PanelName
[    1.869430] i915 0000:00:02.0: [drm:dmc_load_work_fn [i915]]  mmio[4]: 0x5fc10 = 0x980497d8 (EVT_HTP)
[    1.869440] i915 0000:00:02.0: [drm:intel_bios_init_panel [i915]] Seamless DRRS min refresh rate: 0 Hz
[    1.869539] i915 0000:00:02.0: [drm:intel_bios_init_panel [i915]] VBT backlight PWM modulation frequency 990 Hz, active high, min brightness 3, level 21845, controller 0
[    1.869637] i915 0000:00:02.0: [drm:intel_pps_init [i915]] [ENCODER:507:DDI A/PHY A] initial power sequencer: PPS 0
[    1.869827] i915 0000:00:02.0: [drm:intel_pps_dump_state [i915]] bios power_up 1 backlight_on 1 backlight_off 1 power_down 500 power_cycle 5000
[    1.869912] i915 0000:00:02.0: [drm:intel_pps_dump_state [i915]] vbt power_up 2000 backlight_on 1000 backlight_off 2000 power_down 500 power_cycle 5000
[    1.869984] i915 0000:00:02.0: [drm:intel_pps_dump_state [i915]] spec power_up 2100 backlight_on 500 backlight_off 500 power_down 5000 power_cycle 5100
[    1.870049] i915 0000:00:02.0: [drm:pps_init_delays [i915]] panel power up delay 200, power down delay 50, power cycle delay 500
[    1.870111] i915 0000:00:02.0: [drm:pps_init_delays [i915]] backlight on delay 100, off delay 200
[    1.870364] i915 0000:00:02.0: [drm:pps_init_registers [i915]] panel power sequencer register settings: PP_ON 0x7d00001, PP_OFF 0x1f40001, PP_DIV 0x60
[    1.870589] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling AUX_A
[    1.870758] i915 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turning VDD on
[    1.871017] i915 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x0000006f
[    1.871262] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/adlp_dmc.bin (v2.20)
[    1.871444] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00000 AUX -> (ret= 15) 11 0a 82 41 00 00 01 40 02 02 06 00 00 0b 00
[    1.871463] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX A/DDI A/PHY A: DPCD: 11 0a 82 41 00 00 01 40 02 02 06 00 00 0b 00
[    1.871766] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00400 AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[    1.871778] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX A/DDI A/PHY A: DP sink: OUI 00-00-00 dev-ID  HW-rev 0.0 SW-rev 0.0 quirks 0x0000
[    1.871990] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x02210 AUX -> (ret=  1) 00
[    1.872234] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00700 AUX -> (ret=  5) 01 12 07 00 00
[    1.872243] i915 0000:00:02.0: [drm:intel_dp_init_connector [i915]] eDP DPCD: 01 12 07 00 00
[    1.872562] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00300 AUX -> (ret=  3) 00 aa 01
[    1.872785] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x0002e AUX -> (ret=  1) 00
[    1.873007] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00070 AUX -> (ret=  2) 00 00
[    1.873267] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x000b0 AUX -> (ret=  7) 00 00 00 00 00 00 00
[    1.877760] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[    1.877800] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[    1.877828] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[    1.877854] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[    1.877902] i915 0000:00:02.0: [drm:intel_panel_add_edid_fixed_modes [i915]] [CONNECTOR:508:eDP-1] using preferred EDID fixed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[    1.878026] i915 0000:00:02.0: [drm:intel_dp_wait_source_oui [i915]] [CONNECTOR:508:eDP-1] Performing OUI wait (0 ms)
[    1.878370] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00340 AUX -> (ret=  4) 00 00 00 00
[    1.878383] i915 0000:00:02.0: [drm:intel_dp_aux_init_backlight_funcs [i915]] [CONNECTOR:508:eDP-1] Detected unsupported HDR backlight interface version 0
[    1.878474] i915 0000:00:02.0: [drm:intel_panel_init [i915]] [CONNECTOR:508:eDP-1] DRRS type: none
[    1.878626] i915 0000:00:02.0: [drm:cnp_setup_backlight [i915]] [CONNECTOR:508:eDP-1] Using native PCH PWM for backlight control (controller=0)
[    1.878768] i915 0000:00:02.0: [drm:intel_backlight_setup [i915]] [CONNECTOR:508:eDP-1] backlight initialized, enabled, brightness 6464/19393
[    1.878857] i915 0000:00:02.0: [drm:intel_pps_dump_state [i915]] bios power_up 1 backlight_on 1 backlight_off 1 power_down 500 power_cycle 5000
[    1.878935] i915 0000:00:02.0: [drm:intel_pps_dump_state [i915]] vbt power_up 2000 backlight_on 1000 backlight_off 2000 power_down 500 power_cycle 5000
[    1.879011] i915 0000:00:02.0: [drm:intel_pps_dump_state [i915]] spec power_up 2100 backlight_on 500 backlight_off 500 power_down 5000 power_cycle 5100
[    1.879083] i915 0000:00:02.0: [drm:pps_init_delays [i915]] panel power up delay 200, power down delay 50, power cycle delay 500
[    1.879148] i915 0000:00:02.0: [drm:pps_init_delays [i915]] backlight on delay 100, off delay 200
[    1.879402] i915 0000:00:02.0: [drm:pps_init_registers [i915]] panel power sequencer register settings: PP_ON 0x7d00001, PP_OFF 0x1f40001, PP_DIV 0x60
[    1.879511] i915 0000:00:02.0: [drm:intel_hdmi_init_connector [i915]] Adding HDMI connector on [ENCODER:516:DDI B/PHY B]
[    1.879591] i915 0000:00:02.0: [drm:intel_hdmi_init_connector [i915]] [ENCODER:516:DDI B/PHY B] Using DDC pin 0x2 (VBT)
[    1.879673] i915 0000:00:02.0: [drm:intel_dp_aux_ch [i915]] [ENCODER:525:DDI TC1/PHY TC1] Using AUX CH USBC1 (VBT)
[    1.879797] i915 0000:00:02.0: [drm:tc_phy_get_current_mode [i915]] Port D/TC#1: PHY mode: tbt-alt (ready: yes, owned: no, HPD: disconnected)
[    1.879948] i915 0000:00:02.0: [drm:intel_dp_init_connector [i915]] Adding DP connector on [ENCODER:525:DDI TC1/PHY TC1]
[    1.880053] i915 0000:00:02.0: [drm:intel_dp_aux_ch [i915]] [ENCODER:535:DDI TC2/PHY TC2] Using AUX CH USBC2 (VBT)
[    1.880179] i915 0000:00:02.0: [drm:tc_phy_get_current_mode [i915]] Port E/TC#2: PHY mode: tbt-alt (ready: no, owned: no, HPD: disconnected)
[    1.880318] i915 0000:00:02.0: [drm:intel_dp_init_connector [i915]] Adding DP connector on [ENCODER:535:DDI TC2/PHY TC2]
[    1.880400] i915 0000:00:02.0: [drm:intel_dp_aux_ch [i915]] [ENCODER:544:DDI TC3/PHY TC3] Using AUX CH USBC3 (VBT)
[    1.880527] i915 0000:00:02.0: [drm:tc_phy_get_current_mode [i915]] Port F/TC#3: PHY mode: tbt-alt (ready: yes, owned: no, HPD: disconnected)
[    1.880677] i915 0000:00:02.0: [drm:intel_dp_init_connector [i915]] Adding DP connector on [ENCODER:544:DDI TC3/PHY TC3]
[    1.880766] i915 0000:00:02.0: [drm:intel_dp_aux_ch [i915]] [ENCODER:553:DDI TC4/PHY TC4] Using AUX CH USBC4 (VBT)
[    1.880886] i915 0000:00:02.0: [drm:tc_phy_get_current_mode [i915]] Port G/TC#4: PHY mode: tbt-alt (ready: no, owned: no, HPD: disconnected)
[    1.881025] i915 0000:00:02.0: [drm:intel_dp_init_connector [i915]] Adding DP connector on [ENCODER:553:DDI TC4/PHY TC4]
[    1.881129] i915 0000:00:02.0: [drm:intel_vga_disable [i915]] VGA plane is disabled
[    1.881226] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io:owns=mem
[    1.881559] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CRTC:151:pipe A] hw state readout: enabled
[    1.881676] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CRTC:269:pipe B] hw state readout: disabled
[    1.881791] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CRTC:387:pipe C] hw state readout: disabled
[    1.881895] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CRTC:505:pipe D] hw state readout: disabled
[    1.881988] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:35:plane 1A] hw state readout: enabled, pipe A
[    1.882078] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:65:plane 2A] hw state readout: disabled, pipe A
[    1.882168] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:95:plane 3A] hw state readout: disabled, pipe A
[    1.882270] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:125:plane 4A] hw state readout: disabled, pipe A
[    1.882364] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:135:plane 5A] hw state readout: disabled, pipe A
[    1.882453] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:145:cursor A] hw state readout: disabled, pipe A
[    1.882539] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:153:plane 1B] hw state readout: disabled, pipe B
[    1.882623] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:183:plane 2B] hw state readout: disabled, pipe B
[    1.882706] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:213:plane 3B] hw state readout: disabled, pipe B
[    1.882794] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:243:plane 4B] hw state readout: disabled, pipe B
[    1.882894] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:253:plane 5B] hw state readout: disabled, pipe B
[    1.882989] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:263:cursor B] hw state readout: disabled, pipe B
[    1.883080] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:271:plane 1C] hw state readout: disabled, pipe C
[    1.883166] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:301:plane 2C] hw state readout: disabled, pipe C
[    1.883249] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:331:plane 3C] hw state readout: disabled, pipe C
[    1.883340] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:361:plane 4C] hw state readout: disabled, pipe C
[    1.883434] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:371:plane 5C] hw state readout: disabled, pipe C
[    1.883522] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:381:cursor C] hw state readout: disabled, pipe C
[    1.883608] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:389:plane 1D] hw state readout: disabled, pipe D
[    1.883692] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:419:plane 2D] hw state readout: disabled, pipe D
[    1.883779] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:449:plane 3D] hw state readout: disabled, pipe D
[    1.883879] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:479:plane 4D] hw state readout: disabled, pipe D
[    1.883970] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:489:plane 5D] hw state readout: disabled, pipe D
[    1.884058] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:499:cursor D] hw state readout: disabled, pipe D
[    1.884153] i915 0000:00:02.0: [drm:intel_edp_fixup_vbt_bpp [i915]] pipe has 24 bpp for eDP panel, overriding BIOS-provided max 18 bpp
[    1.884255] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:507:DDI A/PHY A] hw state readout: enabled, pipe A
[    1.884364] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:516:DDI B/PHY B] hw state readout: disabled, pipe A
[    1.884465] i915 0000:00:02.0: [drm:intel_tc_port_sanitize_mode [i915]] Port D/TC#1: sanitize mode (disconnected) pin assignment: - max lanes: 4
[    1.884567] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:525:DDI TC1/PHY TC1] hw state readout: disabled, pipe A
[    1.884660] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:527:DP-MST A] hw state readout: disabled, pipe A
[    1.884749] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:528:DP-MST B] hw state readout: disabled, pipe B
[    1.884846] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:529:DP-MST C] hw state readout: disabled, pipe C
[    1.884939] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:530:DP-MST D] hw state readout: disabled, pipe D
[    1.885029] i915 0000:00:02.0: [drm:intel_tc_port_sanitize_mode [i915]] Port E/TC#2: sanitize mode (disconnected) pin assignment: - max lanes: 4
[    1.885130] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:535:DDI TC2/PHY TC2] hw state readout: disabled, pipe A
[    1.885234] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:537:DP-MST A] hw state readout: disabled, pipe A
[    1.885333] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:538:DP-MST B] hw state readout: disabled, pipe B
[    1.885427] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:539:DP-MST C] hw state readout: disabled, pipe C
[    1.885516] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:540:DP-MST D] hw state readout: disabled, pipe D
[    1.885604] i915 0000:00:02.0: [drm:intel_tc_port_sanitize_mode [i915]] Port F/TC#3: sanitize mode (disconnected) pin assignment: - max lanes: 4
[    1.885704] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:544:DDI TC3/PHY TC3] hw state readout: disabled, pipe A
[    1.885805] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:546:DP-MST A] hw state readout: disabled, pipe A
[    1.885899] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:547:DP-MST B] hw state readout: disabled, pipe B
[    1.885989] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:548:DP-MST C] hw state readout: disabled, pipe C
[    1.886076] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:549:DP-MST D] hw state readout: disabled, pipe D
[    1.886163] i915 0000:00:02.0: [drm:intel_tc_port_sanitize_mode [i915]] Port G/TC#4: sanitize mode (disconnected) pin assignment: - max lanes: 4
[    1.886265] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:553:DDI TC4/PHY TC4] hw state readout: disabled, pipe A
[    1.886365] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:555:DP-MST A] hw state readout: disabled, pipe A
[    1.886457] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:556:DP-MST B] hw state readout: disabled, pipe B
[    1.886548] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:557:DP-MST C] hw state readout: disabled, pipe C
[    1.886634] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [ENCODER:558:DP-MST D] hw state readout: disabled, pipe D
[    1.886720] i915 0000:00:02.0: [drm:intel_dpll_readout_hw_state [i915]] DPLL 0 hw state readout: pipe_mask 0x0, on 0
[    1.886840] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:151:pipe A] reserving DPLL 1
[    1.886954] i915 0000:00:02.0: [drm:intel_dpll_readout_hw_state [i915]] DPLL 1 hw state readout: pipe_mask 0x1, on 1
[    1.887063] i915 0000:00:02.0: [drm:intel_dpll_readout_hw_state [i915]] TBT PLL hw state readout: pipe_mask 0x0, on 0
[    1.887160] i915 0000:00:02.0: [drm:intel_dpll_readout_hw_state [i915]] TC PLL 1 hw state readout: pipe_mask 0x0, on 0
[    1.887253] i915 0000:00:02.0: [drm:intel_dpll_readout_hw_state [i915]] TC PLL 2 hw state readout: pipe_mask 0x0, on 0
[    1.887331] i915 0000:00:02.0: [drm:intel_dpll_readout_hw_state [i915]] TC PLL 3 hw state readout: pipe_mask 0x0, on 0
[    1.887408] i915 0000:00:02.0: [drm:intel_dpll_readout_hw_state [i915]] TC PLL 4 hw state readout: pipe_mask 0x0, on 0
[    1.887488] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:508:eDP-1] hw state readout: enabled
[    1.887573] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:517:HDMI-A-1] hw state readout: disabled
[    1.887658] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:526:DP-1] hw state readout: disabled
[    1.887736] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:536:DP-2] hw state readout: disabled
[    1.887809] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:545:DP-3] hw state readout: disabled
[    1.887879] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CONNECTOR:554:DP-4] hw state readout: disabled
[    1.887947] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:35:plane 1A] min_cdclk 80895 kHz
[    1.888027] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:65:plane 2A] min_cdclk 0 kHz
[    1.888110] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:95:plane 3A] min_cdclk 0 kHz
[    1.888203] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:125:plane 4A] min_cdclk 0 kHz
[    1.888278] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:135:plane 5A] min_cdclk 0 kHz
[    1.888349] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:145:cursor A] min_cdclk 0 kHz
[    1.888419] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CRTC:151:pipe A] min_cdclk 80895 kHz
[    1.888503] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:153:plane 1B] min_cdclk 0 kHz
[    1.888593] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:183:plane 2B] min_cdclk 0 kHz
[    1.888673] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:213:plane 3B] min_cdclk 0 kHz
[    1.888744] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:243:plane 4B] min_cdclk 0 kHz
[    1.888811] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:253:plane 5B] min_cdclk 0 kHz
[    1.888877] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:263:cursor B] min_cdclk 0 kHz
[    1.889845] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CRTC:269:pipe B] min_cdclk 0 kHz
[    1.889922] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:271:plane 1C] min_cdclk 0 kHz
[    1.889989] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:301:plane 2C] min_cdclk 0 kHz
[    1.890052] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:331:plane 3C] min_cdclk 0 kHz
[    1.890121] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:361:plane 4C] min_cdclk 0 kHz
[    1.890202] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:371:plane 5C] min_cdclk 0 kHz
[    1.890281] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:381:cursor C] min_cdclk 0 kHz
[    1.890359] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CRTC:387:pipe C] min_cdclk 0 kHz
[    1.890437] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:389:plane 1D] min_cdclk 0 kHz
[    1.890506] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:419:plane 2D] min_cdclk 0 kHz
[    1.890582] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:449:plane 3D] min_cdclk 0 kHz
[    1.890658] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:479:plane 4D] min_cdclk 0 kHz
[    1.890729] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:489:plane 5D] min_cdclk 0 kHz
[    1.890807] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [PLANE:499:cursor D] min_cdclk 0 kHz
[    1.890884] i915 0000:00:02.0: [drm:intel_modeset_setup_hw_state [i915]] [CRTC:505:pipe D] min_cdclk 0 kHz
[    1.890989] i915 0000:00:02.0: [drm:skl_wm_get_hw_state [i915]] [CRTC:151:pipe A] dbuf slices 0x3, ddb (0 - 2048), active pipes 0x1, mbus joined: no
[    1.891073] i915 0000:00:02.0: [drm:skl_wm_get_hw_state [i915]] [CRTC:269:pipe B] dbuf slices 0x0, ddb (0 - 0), active pipes 0x1, mbus joined: no
[    1.891147] i915 0000:00:02.0: [drm:skl_wm_get_hw_state [i915]] [CRTC:387:pipe C] dbuf slices 0x0, ddb (0 - 0), active pipes 0x1, mbus joined: no
[    1.891218] i915 0000:00:02.0: [drm:skl_wm_get_hw_state [i915]] [CRTC:505:pipe D] dbuf slices 0x0, ddb (0 - 0), active pipes 0x1, mbus joined: no
[    1.893675] i915 0000:00:02.0: [drm:intel_bw_update_hw_state [i915]] pipe A data rate 647160 num active planes 1
[    1.893796] i915 0000:00:02.0: [drm:intel_bw_update_hw_state [i915]] pipe B data rate 0 num active planes 0
[    1.893890] i915 0000:00:02.0: [drm:intel_bw_update_hw_state [i915]] pipe C data rate 0 num active planes 0
[    1.894900] i915 0000:00:02.0: [drm:intel_bw_update_hw_state [i915]] pipe D data rate 0 num active planes 0
[    1.895005] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling DDI_IO_A
[    1.895106] i915 0000:00:02.0: [drm:intel_cmtg_sanitize [i915]] CMTG readout: CMTG A: disabled, CMTG B: n/a, Transcoder A secondary: no, Transcoder B secondary: no
[    1.895220] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [setup_hw_state]
[    1.895316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[    1.895405] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[    1.895504] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[    1.895587] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[    1.895670] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[    1.895757] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[    1.895847] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[    1.895932] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[    1.896018] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[    1.896113] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[    1.896206] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[    1.897249] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[    1.897362] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[    1.897458] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[    1.897540] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[    1.900575] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: no, vmin: 0, vmax: 0, flipline: 0, pipeline full: 0, guardband: 0 vsync start: 0, vsync end: 0
[    1.900696] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 0, vmax vblank: 0, vmin vtotal: 0, vmax vtotal: 0
[    1.900795] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[    1.900880] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[    1.900965] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[    1.901050] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[    1.901137] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[    1.901236] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[    1.901330] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[    1.901420] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[    1.901507] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[    1.901589] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[    1.901680] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[    1.901780] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[    1.901867] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[    1.901952] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[    1.902505] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x20000000 gamma_mode: 0x20000000 gamma_enable: 0 csc_enable: 0
[    1.902586] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[    1.902667] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[    1.904632] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[    1.904741] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[    1.904844] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[    1.904929] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[    1.905012] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[    1.905093] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[    1.905173] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[    1.905251] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[    1.905329] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[    1.905406] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: no [setup_hw_state]
[    1.905484] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: no [setup_hw_state]
[    1.905562] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:505:pipe D] enable: no [setup_hw_state]
[    1.905654] i915 0000:00:02.0: [drm:skl_get_initial_plane_config [i915]] [CRTC:151:pipe A][PLANE:35:plane 1A] with fb: size=1920x1200@32, offset=0, pitch 7680, size 0x8ca000
[    1.905746] i915 0000:00:02.0: [drm:initial_plane_vma [i915]] Using dma_addr=0x000000009c800000, based on initial plane programming
[    1.905828] i915 0000:00:02.0: [drm:_i915_gem_object_stolen_init [i915]] creating preallocated stolen object: stolen_offset=0x0000000000000000, size=0x00000000008ca000
[    1.906105] i915 0000:00:02.0: [drm:initial_plane_vma [i915]] Initial plane fb bound to 0x0 in the ggtt (original 0x0)
[    1.907131] i915 0000:00:02.0: [drm:intel_wopcm_init [i915]] Calculated GuC WOPCM [592K, 1420K)
[    1.907215] i915 0000:00:02.0: [drm:i915_init_ggtt [i915]] Reserved GGTT:[8ca000, 8cc000] for use by error capture
[    1.907291] i915 0000:00:02.0: [drm:i915_init_ggtt [i915]] clearing unused GTT space: [8cc000, fee00000]
[    1.907356] i915 0000:00:02.0: [drm:i915_gem_init [i915]] No clock gating settings or workarounds applied.
[    1.907448] i915 0000:00:02.0: [drm:debug_dump_steering [i915]] MCR Steering: Default steering: group=0x0, instance=0x0
[    1.907529] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 5 GT workarounds on global
[    1.907638] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 11 engine workarounds on rcs'0
[    1.907708] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 4 whitelist workarounds on rcs'0
[    1.907778] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 6 context workarounds on rcs'0
[    1.907876] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 1 engine workarounds on bcs'0
[    1.907941] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 1 whitelist workarounds on bcs'0
[    1.908002] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 1 context workarounds on bcs'0
[    1.908067] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 1 engine workarounds on vcs'0
[    1.908123] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 1 whitelist workarounds on vcs'0
[    1.908186] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 1 engine workarounds on vcs'2
[    1.908242] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 1 whitelist workarounds on vcs'2
[    1.908303] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 1 engine workarounds on vecs'0
[    1.908358] i915 0000:00:02.0: [drm:wa_init_finish [i915]] GT0: Initialized 1 whitelist workarounds on vecs'0
[    1.908583] i915 0000:00:02.0: [drm:intel_guc_log_create [i915]] GT0: GUC: guc_log_level=1 (enabled, verbose:no, verbosity:0)
[    1.908689] i915 0000:00:02.0: [drm:intel_guc_capture_init [i915]] GT0: GUC: capture found 12 ext-regs.
[    1.908792] i915 0000:00:02.0: [drm:intel_guc_ads_create [i915]] GT0: GUC: Used 8 KB for temporary ADS regset
[    1.910569] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[ 0] = 0x8cc3d7
[    1.910660] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[ 1] = 0x444000
[    1.910740] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[ 2] = 0x6
[    1.910820] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[ 3] = 0x40
[    1.910897] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[ 4] = 0x13be
[    1.910974] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[ 5] = 0x46a6000c
[    1.911055] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[ 6] = 0x0
[    1.911135] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[ 7] = 0x0
[    1.911213] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[ 8] = 0x0
[    1.911288] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[ 9] = 0x0
[    1.911359] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[10] = 0x0
[    1.911430] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[11] = 0x0
[    1.911505] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[12] = 0x0
[    1.911586] i915 0000:00:02.0: [drm:intel_guc_init [i915]] GT0: GUC: param[13] = 0x0
[    1.911665] i915 0000:00:02.0: [drm:intel_huc_init [i915]] GT0: HuC: loaded by GSC = no
[    1.912149] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/adlp_guc_70.bin version 70.36.0
[    1.912151] i915 0000:00:02.0: [drm] GT0: HuC firmware i915/tgl_huc.bin version 7.9.3
[    1.925979] i915 0000:00:02.0: [drm:intel_guc_fw_upload [i915]] GT0: GUC: init took 12ms, freq = 1300MHz -> 1300MHz vs 1400MHz, status = 0x8002F0EC, count = 0, ret = 0
[    1.926314] i915 0000:00:02.0: [drm:guc_enable_communication [i915]] GT0: GUC: communication enabled
[    1.927259] i915 0000:00:02.0: [drm:intel_huc_wait_for_auth_complete [i915]] GT0: HuC: auth took 0ms, freq = 1300MHz -> 1300MHz vs 1400MHz, status = 0x0000C1DC, count = 0, ret = 0
[    1.927435] i915 0000:00:02.0: [drm] GT0: HuC: authenticated for all workloads
[    1.929040] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
[    1.929042] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
[    1.929571] i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
[    1.929578] i915 0000:00:02.0: [drm:__guc_action_get_hwconfig [i915]] GT0: GUC: Querying HW config table: size = 0, offset = 0x00000000
[    1.929723] i915 0000:00:02.0: [drm:__guc_action_get_hwconfig [i915]] GT0: GUC: Querying HW config table: size = 964, offset = 0x0120D000
[    1.930581] i915 0000:00:02.0: [drm:intel_engines_driver_register [i915]] renamed rcs'0 to rcs0
[    1.930707] i915 0000:00:02.0: [drm:intel_engines_driver_register [i915]] renamed bcs'0 to bcs0
[    1.930793] i915 0000:00:02.0: [drm:intel_engines_driver_register [i915]] renamed vcs'0 to vcs0
[    1.930865] i915 0000:00:02.0: [drm:intel_engines_driver_register [i915]] renamed vcs'2 to vcs1
[    1.930933] i915 0000:00:02.0: [drm:intel_engines_driver_register [i915]] renamed vecs'0 to vecs0
[    1.931014] i915 0000:00:02.0: [drm] Protected Xe Path (PXP) protected content support initialized
[    1.931017] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:151:pipe A] FQ 0: start 0x90008
[    1.931137] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:151:pipe A] FQ 1: start 0x90108
[    1.931246] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:151:pipe A] FQ 2: start 0x90208
[    1.931348] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:151:pipe A] FQ 3: start 0x90308
[    1.931453] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:151:pipe A] FQ 4: start 0x903c8
[    1.931552] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:269:pipe B] FQ 0: start 0x98008
[    1.931645] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:269:pipe B] FQ 1: start 0x98108
[    1.931734] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:269:pipe B] FQ 2: start 0x98208
[    1.931826] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:269:pipe B] FQ 3: start 0x98308
[    1.931926] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:269:pipe B] FQ 4: start 0x983c8
[    1.932026] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:387:pipe C] FQ 0: start 0x52008
[    1.932117] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:387:pipe C] FQ 1: start 0x52108
[    1.932205] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:387:pipe C] FQ 2: start 0x52208
[    1.932292] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:387:pipe C] FQ 3: start 0x52308
[    1.932385] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:387:pipe C] FQ 4: start 0x523c8
[    1.932497] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:505:pipe D] FQ 0: start 0x59008
[    1.932586] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:505:pipe D] FQ 1: start 0x59108
[    1.932669] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:505:pipe D] FQ 2: start 0x59208
[    1.932743] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:505:pipe D] FQ 3: start 0x59308
[    1.932823] i915 0000:00:02.0: [drm:intel_flipq_init [i915]] [CRTC:505:pipe D] FQ 4: start 0x593c8
[    1.932936] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? no->yes
[    1.933027] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0x3 -> 0xf, ddb (0 - 2048) -> (0 - 4096), active pipes 0x1 -> 0x1
[    1.933113] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 2048) -> (   0 - 4054), size 2048 -> 4054
[    1.933193] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (   0 -    0) -> (4054 - 4096), size    0 ->   42
[    1.933261] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]      level *wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm,*swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7, twm,*swm, stwm
[    1.933326] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]      lines    1,   1,   1,   1,   1,   1,   0,   0,   1,   3,    1 ->    1,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0
[    1.933388] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]     blocks   17,  17,   7,   7,   7,   7,   0,   0,   7,  49,    7 ->   16,  81, 113, 129, 193, 193,   0,   0,   0,  49,    0
[    1.933460] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   19,  91, 126, 143, 214, 214,   0,   0,   0,  55,    0
[    1.933538] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: no [fastset]
[    1.933643] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: no [fastset]
[    1.933745] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:505:pipe D] enable: no [fastset]
[    1.933871] i915 0000:00:02.0: [drm:intel_fbc_update [i915]] reserved 19660800 bytes of contiguous stolen space for FBC, limit: 1
[    1.933980] i915 0000:00:02.0: [drm:intel_fbc_update [i915]] Enabling FBC on [PLANE:35:plane 1A]
[    1.934072] i915 0000:00:02.0: [drm:intel_dbuf_mbus_join_update [i915]] Changing mbus joined: no -> yes (pipe: A)
[    1.934159] i915 0000:00:02.0: [drm:intel_dbuf_mdclk_cdclk_ratio_update [i915]] Updating dbuf ratio to 4 (mbus joined: yes)
[    1.940660] i915 0000:00:02.0: [drm:intel_modeset_verify_crtc [i915]] [CRTC:269:pipe B]
[    1.940843] i915 0000:00:02.0: [drm:intel_modeset_verify_crtc [i915]] [CRTC:387:pipe C]
[    1.940942] i915 0000:00:02.0: [drm:intel_modeset_verify_crtc [i915]] [CRTC:505:pipe D]
[    1.941796] i915 0000:00:02.0: [drm:drm_sysfs_connector_add [drm]] [CONNECTOR:508:eDP-1] adding connector to sysfs
[    1.942206] i915 0000:00:02.0: [drm:intel_backlight_device_register [i915]] [CONNECTOR:508:eDP-1] backlight device intel_backlight registered
[    1.942310] i915 0000:00:02.0: [drm:intel_panel_register [i915]] [CONNECTOR:508:eDP-1] Registered panel device 'card0-eDP-1', has fwnode: yes
[    1.942391] i915 0000:00:02.0: [drm:intel_panel_register [i915]] [CONNECTOR:508:eDP-1] Panel prepare
[    1.942474] i915 0000:00:02.0: [drm:intel_dp_connector_register [i915]] registering AUX A/DDI A/PHY A bus for card0-eDP-1
[    1.942680] i915 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event [drm]] [CONNECTOR:508:eDP-1] generating connector hotplug event
[    1.942711] i915 0000:00:02.0: [drm:drm_sysfs_connector_add [drm]] [CONNECTOR:517:HDMI-A-1] adding connector to sysfs
[    1.942747] i915 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event [drm]] [CONNECTOR:517:HDMI-A-1] generating connector hotplug event
[    1.942767] i915 0000:00:02.0: [drm:drm_sysfs_connector_add [drm]] [CONNECTOR:526:DP-1] adding connector to sysfs
[    1.942803] i915 0000:00:02.0: [drm:intel_dp_connector_register [i915]] registering AUX USBC1/DDI TC1/PHY TC1 bus for card0-DP-1
[    1.943013] i915 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event [drm]] [CONNECTOR:526:DP-1] generating connector hotplug event
[    1.943042] i915 0000:00:02.0: [drm:drm_sysfs_connector_add [drm]] [CONNECTOR:536:DP-2] adding connector to sysfs
[    1.943090] i915 0000:00:02.0: [drm:intel_dp_connector_register [i915]] registering AUX USBC2/DDI TC2/PHY TC2 bus for card0-DP-2
[    1.943206] i915 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event [drm]] [CONNECTOR:536:DP-2] generating connector hotplug event
[    1.943230] i915 0000:00:02.0: [drm:drm_sysfs_connector_add [drm]] [CONNECTOR:545:DP-3] adding connector to sysfs
[    1.943266] i915 0000:00:02.0: [drm:intel_dp_connector_register [i915]] registering AUX USBC3/DDI TC3/PHY TC3 bus for card0-DP-3
[    1.943455] i915 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event [drm]] [CONNECTOR:545:DP-3] generating connector hotplug event
[    1.943485] i915 0000:00:02.0: [drm:drm_sysfs_connector_add [drm]] [CONNECTOR:554:DP-4] adding connector to sysfs
[    1.943526] i915 0000:00:02.0: [drm:intel_dp_connector_register [i915]] registering AUX USBC4/DDI TC4/PHY TC4 bus for card0-DP-4
[    1.943712] i915 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event [drm]] [CONNECTOR:554:DP-4] generating connector hotplug event
[    1.968778] [drm] Initialized i915 1.6.0 for 0000:00:02.0 on minor 0
[    1.968888] i915 0000:00:02.0: [drm:intel_opregion_resume [i915]] 6 outputs detected
[    1.984122] ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    1.984468] input: Video Bus as /devices/pci0000:00/acpi.video_bus.0/input/input12
[    1.989381] usb 3-4: new high-speed USB device number 3 using xhci_hcd
[    1.989892] i915 0000:00:02.0: [drm:intel_audio_init [i915]] use AUD_FREQ_CNTRL of 0x8010 (init value 0x8010)
[    1.990493] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] aud_ts_cdclk set to M=60, N=448
[    1.990980] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] found possible fb from [PLANE:35:plane 1A]
[    1.991171] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] [CRTC:269:pipe B] not active, skipping
[    1.992414] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] [CRTC:387:pipe C] not active, skipping
[    1.992779] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[    1.993200] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] [CRTC:505:pipe D] not active, skipping
[    1.993366] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] checking [PLANE:35:plane 1A] for BIOS fb
[    1.993514] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] [CRTC:151:pipe A] area: 1920x1200, bpp: 32, size: 9216000
[    1.993654] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] fb big enough [PLANE:35:plane 1A] (9216000 >= 9216000)
[    1.993784] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] [CRTC:269:pipe B] not active, skipping
[    1.993907] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] [CRTC:387:pipe C] not active, skipping
[    1.994035] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] [CRTC:505:pipe D] not active, skipping
[    1.994155] i915 0000:00:02.0: [drm:intel_fbdev_setup [i915]] using BIOS fb for initial console
[    1.994275] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[    1.997447] i915 0000:00:02.0: [drm:intel_hotplug_detect_connector [i915]] [CONNECTOR:517:HDMI-A-1] status updated from unknown to disconnected (epoch counter 0->1)
[    1.997762] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[    1.998127] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port D/TC#1: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[    1.998299] i915 0000:00:02.0: [drm:intel_hotplug_detect_connector [i915]] [CONNECTOR:526:DP-1] status updated from unknown to disconnected (epoch counter 0->1)
[    1.998854] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[    1.999032] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port E/TC#2: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[    1.999192] i915 0000:00:02.0: [drm:intel_hotplug_detect_connector [i915]] [CONNECTOR:536:DP-2] status updated from unknown to disconnected (epoch counter 0->1)
[    2.000901] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] 
[    2.001320] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[    2.001684] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port F/TC#3: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[    2.001823] i915 0000:00:02.0: [drm:intel_hotplug_detect_connector [i915]] [CONNECTOR:545:DP-3] status updated from unknown to disconnected (epoch counter 0->1)
[    2.001922] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[    2.002070] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port G/TC#4: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[    2.002189] i915 0000:00:02.0: [drm:intel_hotplug_detect_connector [i915]] [CONNECTOR:554:DP-4] status updated from unknown to disconnected (epoch counter 0->1)
[    2.002280] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1]
[    2.002277] i915 0000:00:02.0: [drm:drm_sysfs_hotplug_event [drm]] generating hotplug event
[    2.002300] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:508:eDP-1]
[    2.002438] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[    2.002523] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[    2.002599] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[    2.002674] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[    2.002701] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[    2.002724] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[    2.002746] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[    2.002773] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] VRR capable: yes
[    2.002856] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
[    2.002932] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
[    2.003210] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x03000 AUX -> (ret=  1) 00
[    2.003239] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] status updated from unknown to connected
[    2.003273] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] probed modes:
[    2.003283] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[    2.003291] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1]
[    2.003299] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[    2.003423] i915 0000:00:02.0: [drm:drm_sysfs_hotplug_event [drm]] generating hotplug event
[    2.007430] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1] disconnected
[    2.007439] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1]
[    2.007445] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[    2.007589] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1] disconnected
[    2.007596] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2]
[    2.007602] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[    2.007734] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2] disconnected
[    2.007740] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3]
[    2.007747] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[    2.007878] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3] disconnected
[    2.007885] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4]
[    2.007891] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[    2.008017] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4] disconnected
[    2.008024] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:508:eDP-1] enabled? yes
[    2.008041] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:517:HDMI-A-1] enabled? no
[    2.008057] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:526:DP-1] enabled? no
[    2.008072] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:536:DP-2] enabled? no
[    2.008086] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:545:DP-3] enabled? no
[    2.008101] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:554:DP-4] enabled? no
[    2.008116] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] Not using firmware configuration
[    2.008130] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:508:eDP-1] found preferred mode: 1920x1200
[    2.008144] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] picking CRTCs for 16384x16384 config
[    2.008159] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CRTC:151:pipe A] desired mode 1920x1200 set (0,0)
[    2.008175] i915 0000:00:02.0: [drm:__drm_fb_helper_initial_config_and_unlock [drm_kms_helper]] test CRTC 0 primary plane
[    2.008182] i915 0000:00:02.0: [drm:intel_fbdev_driver_fbdev_probe [i915]] re-using BIOS fb
[    2.008269] i915 0000:00:02.0: [drm:intel_fbdev_driver_fbdev_probe [i915]] allocated 1920x1200 fb
[    2.008525] fbcon: i915drmfb (fb0) is primary device
[    2.008608] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:508:eDP-1] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 36, max platform bpp 36)
[    2.008753] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:507:DDI A/PHY A][CRTC:151:pipe A] DP link limits: pixel clock 161790 kHz DSC off max lanes 2 max rate 270000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[    2.008835] i915 0000:00:02.0: [drm:intel_dp_compute_output_format [i915]] DP lane count 2 clock 270000 bpp input 24 compressed 0.0000 HDR no link rate required 485370 available 540000
[    2.008919] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:151:pipe A] hw max bpp: 24, pipe bpp: 24, dithering: 0
[    2.009017] i915 0000:00:02.0: [drm:intel_ddi_compute_config_late [i915]] [ENCODER:507:DDI A/PHY A] [CRTC:151:pipe A]
[    2.009114] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7, twm,*swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[    2.009193] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]      lines    1,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    1,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0
[    2.009272] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]     blocks   16,  81, 113, 129, 193, 193,   0,   0,   0,  49,    0 ->   16,  81, 113, 129, 193, 193,   0,   0,  30,  49,   63
[    2.009343] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]    min_ddb   19,  91, 126, 143, 214, 214,   0,   0,   0,  55,    0 ->   19,  91, 126, 143, 214, 214,   0,   0,  31,  55,   64
[    2.009409] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:65:plane 2A]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[    2.009469] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:65:plane 2A]      lines    1,   1,   1,   1,   1,   1,   0,   0,   1,   1,    1 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.009528] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:65:plane 2A]     blocks    7,   7,   7,   7,   7,   7,   0,   0,   7,   7,    7 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.009584] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:65:plane 2A]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.009640] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:95:plane 3A]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[    2.009694] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:95:plane 3A]      lines    1,   1,   1,   1,   1,   1,   0,   0,   1,   1,    1 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.009756] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:95:plane 3A]     blocks    7,   7,   7,   7,   7,   7,   0,   0,   7,   7,    7 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.009816] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:95:plane 3A]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.009878] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:125:plane 4A]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[    2.009941] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:125:plane 4A]      lines    1,   1,   1,   1,   1,   1,   0,   0,   1,   1,    1 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.010000] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:125:plane 4A]     blocks    7,   7,   7,   7,   7,   7,   0,   0,   7,   7,    7 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.010057] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:125:plane 4A]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.010111] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:135:plane 5A]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[    2.010169] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:135:plane 5A]      lines    1,   1,   1,   1,   1,   1,   0,   0,   1,   1,    1 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.010232] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:135:plane 5A]     blocks    7,   7,   7,   7,   7,   7,   0,   0,   7,   7,    7 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.010290] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:135:plane 5A]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.010346] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[    2.010401] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    1,   1,   1,   1,   1,   1,   0,   0,   1,   1,    1 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.010465] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    7,   7,   7,   7,   7,   7,   0,   0,   7,   7,    7 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.010527] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[    2.010587] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 680
[    2.010686] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 680
[    2.010776] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 680
[    2.010861] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 680
[    2.010944] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 680
[    2.011023] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 680
[    2.011103] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 680
[    2.011188] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [fastset]
[    2.011279] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[    2.011365] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[    2.011452] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[    2.011541] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[    2.011626] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[    2.011707] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[    2.011789] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[    2.011868] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[    2.011948] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[    2.012027] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[    2.012105] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[    2.012183] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[    2.012260] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[    2.012338] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[    2.012415] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[    2.012513] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[    2.012605] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[    2.012700] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[    2.012789] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[    2.012876] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[    2.012959] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[    2.013041] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[    2.013121] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[    2.013200] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[    2.013282] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[    2.013372] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[    2.013459] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[    2.013544] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[    2.013632] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[    2.013722] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[    2.013808] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[    2.013892] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[    2.013972] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[    2.014053] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[    2.014141] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[    2.014232] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[    2.014318] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[    2.014401] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[    2.014482] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[    2.014563] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[    2.014642] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[    2.014720] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[    2.014809] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[    2.014896] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:563] 1920x1200 format = XR24 little-endian (0x34325258) modifier = 0x0, visible: yes
[    2.014980] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[    2.015062] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[    2.015143] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[    2.015223] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[    2.015302] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[    2.015379] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[    2.015456] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [NOFB], visible: no
[    2.024132] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:508:eDP-1]
[    2.024290] i915 0000:00:02.0: [drm:intel_modeset_verify_crtc [i915]] [CRTC:151:pipe A]
[    2.024424] i915 0000:00:02.0: [drm:icl_sagv_post_plane_update [i915]] Relaxing QGV points: 0x10b -> 0x0
[    2.024562] Console: switching to colour frame buffer device 240x75
[    2.092265] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[    2.092864] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: display version: 13
[    2.093603] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: display stepping: D0
[    2.097150] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: cursor_needs_physical: no
[    2.097813] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_cdclk_crawl: yes
[    2.098916] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_cdclk_squash: no
[    2.101448] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_ddi: yes
[    2.102091] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_dp_mst: yes
[    2.102727] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_dsb: yes
[    2.103356] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_fpga_dbg: yes
[    2.103986] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_gmch: no
[    2.104608] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_hotplug: yes
[    2.105233] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_hti: no
[    2.105851] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_ipc: yes
[    2.106477] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_overlay: no
[    2.107015] i915 0000:00:02.0: [drm:drm_fb_helper_hotplug_event [drm_kms_helper]] 
[    2.107118] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_psr: yes
[    2.107664] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] 
[    2.108206] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_psr_hw_tracking: no
[    2.108817] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1]
[    2.109365] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: overlay_needs_physical: no
[    2.109915] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:508:eDP-1]
[    2.110460] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: supports_tv: no
[    2.111061] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[    2.111554] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_hdcp: yes
[    2.112112] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[    2.112668] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_dmc: yes
[    2.113226] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[    2.113767] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: has_dsc: yes
[    2.114325] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[    2.114865] i915 0000:00:02.0: [drm:intel_display_driver_register [i915]] i915 display info: rawclk rate: 19200 kHz
[    2.115422] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[    2.115988] [drm:intel_dsm_detect.isra.0 [i915]] no _DSM method for intel device
[    2.116580] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[    2.117119] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: pciid=0x46a6 rev=0x0c platform=ALDERLAKE_P (subplatform=0x0) gen=12
[    2.117674] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[    2.118229] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: graphics version: 12
[    2.118786] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] VRR capable: yes
[    2.119334] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: media version: 12
[    2.119930] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
[    2.120456] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: graphics stepping: C0
[    2.121054] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
[    2.121569] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: media stepping: C0
[    2.122394] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x03000 AUX -> (ret=  1) 00
[    2.122695] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: gt: 0
[    2.123280] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] probed modes:
[    2.123839] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: memory-regions: 0x21
[    2.124392] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[    2.124974] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: page-sizes: 0x211000
[    2.125541] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1]
[    2.126098] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: platform: ALDERLAKE_P
[    2.126655] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[    2.127208] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: ppgtt-size: 48
[    2.128308] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: ppgtt-type: 2
[    2.128585] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling PW_B
[    2.128946] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: dma_mask_size: 39
[    2.129610] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling PW_C
[    2.130074] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: is_mobile: no
[    2.130743] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling PW_D
[    2.131216] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: require_force_probe: no
[    2.131889] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling PW_2
[    2.132366] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: is_dgfx: no
[    2.133207] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1] disconnected
[    2.134014] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_64bit_reloc: yes
[    2.135721] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1]
[    2.136066] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_64k_pages: no
[    2.136959] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[    2.137874] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: gpu_reset_clobbers_display: no
[    2.138195] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1] disconnected
[    2.140927] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_reset_engine: yes
[    2.142876] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2]
[    2.143003] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_3d_pipeline: yes
[    2.143802] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[    2.144189] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_flat_ccs: no
[    2.145801] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2] disconnected
[    2.146243] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_global_mocs: yes
[    2.149652] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3]
[    2.150250] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_gmd_id: no
[    2.151417] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[    2.151461] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_gt_uc: yes
[    2.152124] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_heci_pxp: no
[    2.153086] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3] disconnected
[    2.153809] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_heci_gscfi: no
[    2.156447] usb 3-4: New USB device found, idVendor=174f, idProduct=1812, bcdDevice=10.20
[    2.156905] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_guc_deprivilege: no
[    2.157501] usb 3-4: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[    2.158102] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_guc_tlb_invalidation: no
[    2.158707] usb 3-4: Product: Integrated Camera
[    2.159317] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_l3_ccs_read: no
[    2.159928] usb 3-4: Manufacturer:  
[    2.160546] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_l3_dpf: no
[    2.161167] usb 3-4: SerialNumber: 0001
[    2.161779] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_llc: yes
[    2.162485] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4]
[    2.163013] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_logical_ring_contexts: yes
[    2.163637] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[    2.164254] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_logical_ring_elsq: yes
[    2.164997] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4] disconnected
[    2.165543] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_media_ratio_mode: no
[    2.166162] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:508:eDP-1] enabled? yes
[    2.166780] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_mslice_steering: no
[    2.167398] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:517:HDMI-A-1] enabled? no
[    2.168012] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_oa_bpc_reporting: no
[    2.168702] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:526:DP-1] enabled? no
[    2.169286] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_oa_slice_contrib_limits: no
[    2.169899] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:536:DP-2] enabled? no
[    2.170515] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_oam: no
[    2.171131] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:545:DP-3] enabled? no
[    2.171740] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_one_eu_per_fuse_bit: no
[    2.172368] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:554:DP-4] enabled? no
[    2.172966] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_pxp: yes
[    2.173596] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] Not using firmware configuration
[    2.174171] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_rc6: yes
[    2.174771] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:508:eDP-1] found preferred mode: 1920x1200
[    2.175369] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_rc6p: no
[    2.175967] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] picking CRTCs for 1920x1200 config
[    2.176568] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_rps: yes
[    2.177192] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CRTC:151:pipe A] desired mode 1920x1200 set (0,0)
[    2.177764] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_runtime_pm: yes
[    2.178947] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_snoop: no
[    2.179596] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_coherent_ggtt: no
[    2.180255] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: tuning_thread_rr_after_dep: no
[    2.180917] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: unfenced_needs_alignment: no
[    2.181539] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: hws_needs_physical: no
[    2.182153] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has_pooled_eu: no
[    2.182759] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: iommu: enabled
[    2.183363] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: available engines: 41403
[    2.183967] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: slice total: 1, mask=0001
[    2.184579] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: subslice total: 6
[    2.185188] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: slice0: 6 subslices, mask=0000003f
[    2.185803] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: EU total: 96
[    2.186406] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: EU per subslice: 16
[    2.187013] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has slice power gating: yes
[    2.187623] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has subslice power gating: no
[    2.188232] i915 0000:00:02.0: [drm:i915_driver_probe [i915]] device info: has EU power gating: no
[    2.190285] i915 0000:00:02.0: [drm:drm_client_hotplug [drm]] fbdev: ret=0
[    2.205548] typec port0: bound usb3-port5 (ops connector_ops [usbcore])
[    2.206331] typec port0: bound usb2-port1 (ops connector_ops [usbcore])
[    2.207146] typec port0: bound usb4_port1 (ops connector_ops [thunderbolt])
[    2.223407] i915 0000:00:02.0: [drm:drm_fb_helper_hotplug_event [drm_kms_helper]] 
[    2.224274] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] 
[    2.225198] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1]
[    2.225911] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:508:eDP-1]
[    2.226775] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[    2.227603] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[    2.228361] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[    2.229019] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[    2.229636] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[    2.230251] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[    2.230857] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[    2.231469] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] VRR capable: yes
[    2.232144] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
[    2.232863] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
[    2.234536] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x03000 AUX -> (ret=  1) 00
[    2.237490] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] probed modes:
[    2.239019] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[    2.240656] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1]
[    2.241234] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[    2.245919] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1] disconnected
[    2.246952] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1]
[    2.249430] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[    2.250121] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1] disconnected
[    2.250675] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2]
[    2.251228] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[    2.251897] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2] disconnected
[    2.252448] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3]
[    2.253008] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[    2.253672] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3] disconnected
[    2.254217] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4]
[    2.254758] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[    2.255420] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4] disconnected
[    2.256017] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:508:eDP-1] enabled? yes
[    2.256624] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:517:HDMI-A-1] enabled? no
[    2.257204] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:526:DP-1] enabled? no
[    2.257781] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:536:DP-2] enabled? no
[    2.258358] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:545:DP-3] enabled? no
[    2.258915] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:554:DP-4] enabled? no
[    2.259467] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] Not using firmware configuration
[    2.260012] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CONNECTOR:508:eDP-1] found preferred mode: 1920x1200
[    2.260575] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] picking CRTCs for 1920x1200 config
[    2.261112] i915 0000:00:02.0: [drm:drm_client_modeset_probe [drm]] [CRTC:151:pipe A] desired mode 1920x1200 set (0,0)
[    2.273934] i915 0000:00:02.0: [drm:drm_client_hotplug [drm]] fbdev: ret=0
[    2.300569] usb 3-7: new full-speed USB device number 4 using xhci_hcd
[    2.450879] usb 3-7: New USB device found, idVendor=1050, idProduct=0406, bcdDevice= 5.43
[    2.451769] usb 3-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.454785] usb 3-7: Product: YubiKey FIDO+CCID
[    2.455614] usb 3-7: Manufacturer: Yubico
[    2.580595] usb 3-10: new full-speed USB device number 5 using xhci_hcd
[    2.724108] usb 3-10: New USB device found, idVendor=8087, idProduct=0033, bcdDevice= 0.00
[    2.726176] usb 3-10: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.745421] hid-generic 0003:1050:0406.0002: hiddev0,hidraw1: USB HID v1.10 Device [Yubico YubiKey FIDO+CCID] on usb-0000:00:14.0-7/input0
[    2.746178] usbcore: registered new interface driver usbhid
[    2.746878] usbhid: USB HID core driver
[    2.987476] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    2.987513] device-mapper: uevent: version 1.0.3
[    2.987611] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
[    3.270513] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_2
[    3.270740] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling PW_2
[    3.270895] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port G/TC#4: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[    3.270900] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_2
[    3.272080] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port D/TC#1: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[    3.272082] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port F/TC#3: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[    3.272084] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling PW_2
[    3.272267] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port E/TC#2: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[    4.932715] i915 0000:00:02.0: [drm:intel_pps_vdd_off_sync_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turning VDD off
[    4.934081] i915 0000:00:02.0: [drm:intel_pps_vdd_off_sync_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x00000067
[   12.129056] PM: Image not found (code -22)
[   12.233191] EXT4-fs (dm-1): mounted filesystem 622c9f44-5f41-43a1-872a-da0f8f5f4759 ro with ordered data mode. Quota mode: none.
[   12.291875] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
[   12.393369] systemd[1]: Inserted module 'autofs4'
[   12.516188] systemd[1]: systemd 257.13-1~deb13u1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF -XKBCOMMON -UTMP +SYSVINIT +LIBARCHIVE)
[   12.518588] systemd[1]: Detected architecture x86-64.
[   12.519831] systemd[1]: Hostname set to <debian-t14-gen1-fuhrysteve>.
[   12.582321] systemd[1]: bpf-restrict-fs: LSM BPF program attached
[   12.713338] systemd-sysv-generator[525]: SysV service '/etc/init.d/openipmi' lacks a native systemd unit file, automatically generating a unit file for compatibility.
[   12.713534] systemd-fstab-generator[516]: x-systemd.device-timeout ignored for synology:/volume1/video
[   12.714227] systemd-sysv-generator[525]: Please update package to include a native systemd unit file.
[   12.715183] systemd-fstab-generator[516]: x-systemd.device-timeout ignored for synology:/volume1/homes
[   12.715905] systemd-sysv-generator[525]: ! This compatibility logic is deprecated, expect removal soon. !
[   12.817117] systemd[1]: Queued start job for default target graphical.target.
[   12.843988] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[   12.845361] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[   12.847081] systemd[1]: Created slice system-systemd\x2dcryptsetup.slice - Encrypted Volume Units Service Slice.
[   12.848512] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[   12.850147] systemd[1]: Created slice system-wg\x2dquick.slice - Slice /system/wg-quick.
[   12.851473] systemd[1]: Created slice user.slice - User and Session Slice.
[   12.852704] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[   12.854318] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[   12.855584] systemd[1]: Expecting device dev-disk-by\x2duuid-65eb294d\x2d871a\x2d4c76\x2db438\x2dec9bd34837bf.device - /dev/disk/by-uuid/65eb294d-871a-4c76-b438-ec9bd34837bf...
[   12.857255] systemd[1]: Expecting device dev-disk-by\x2duuid-8ec246e1\x2d94df\x2d4208\x2dbd8f\x2ddad88d29fe85.device - /dev/disk/by-uuid/8ec246e1-94df-4208-bd8f-dad88d29fe85...
[   12.858787] systemd[1]: Expecting device dev-disk-by\x2duuid-FD2A\x2d85AF.device - /dev/disk/by-uuid/FD2A-85AF...
[   12.859707] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[   12.860553] systemd[1]: Reached target nss-lookup.target - Host and Network Name Lookups.
[   12.862083] systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups.
[   12.862970] systemd[1]: Reached target slices.target - Slice Units.
[   12.864376] systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
[   12.865931] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[   12.866813] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[   12.868370] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[   12.875372] systemd[1]: Listening on rpcbind.socket - RPCbind Server Activation Socket.
[   12.881182] systemd[1]: Listening on systemd-coredump.socket - Process Core Dump Socket.
[   12.883392] systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
[   12.884937] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[   12.886561] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[   12.888124] systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
[   12.889662] systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements skipped, unmet condition check ConditionSecurity=measured-uki
[   12.889687] systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy skipped, unmet condition check ConditionSecurity=measured-uki
[   12.889813] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[   12.892732] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[   12.895220] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[   12.896902] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[   12.897780] systemd[1]: run-lock.mount: Directory /run/lock to mount over is not empty, mounting anyway.
[   12.899272] systemd[1]: Mounting run-lock.mount - Legacy Locks Directory /run/lock...
[   12.900806] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[   12.903709] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[   12.904932] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS skipped, unmet condition check ConditionPathExists=/etc/krb5.keytab
[   12.906234] systemd[1]: Starting blk-availability.service - Availability of block devices...
[   12.910278] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[   12.912548] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[   12.914668] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[   12.917372] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[   12.919333] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[   12.921156] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[   12.923112] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[   12.924204] systemd[1]: systemd-fsck-root.service - File System Check on Root Device skipped, unmet condition check ConditionPathExists=!/run/initramfs/fsck-root
[   12.924269] systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
[   12.927286] systemd[1]: Starting systemd-journald.service - Journal Service...
[   12.929811] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[   12.930589] systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement skipped, unmet condition check ConditionSecurity=measured-uki
[   12.931470] pstore: Using crash dump compression: deflate
[   12.931691] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[   12.934152] systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
[   12.946384] systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
[   12.956930] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[   12.971278] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[   12.972295] systemd-journald[549]: Collecting audit messages is disabled.
[   12.978681] pstore: Registered efi_pstore as persistent store backend
[   12.980474] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[   12.981691] systemd[1]: Mounted run-lock.mount - Legacy Locks Directory /run/lock.
[   12.983100] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[   12.984515] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[   12.986134] systemd[1]: Finished blk-availability.service - Availability of block devices.
[   12.987532] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[   12.988829] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[   12.989016] lp: driver loaded but no devices found
[   12.990850] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[   12.990974] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[   12.992999] systemd[1]: modprobe@drm.service: Deactivated successfully.
[   12.993109] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[   12.995072] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[   12.995172] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[   12.995477] ppdev: user-space parallel port driver
[   12.997911] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[   12.998020] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[   13.000092] systemd[1]: Finished systemd-udev-load-credentials.service - Load udev Rules from Credentials.
[   13.002612] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[   13.005098] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[   13.005566] EXT4-fs (dm-1): re-mounted 622c9f44-5f41-43a1-872a-da0f8f5f4759 r/w.
[   13.008080] i2c_dev: i2c /dev entries driver
[   13.008672] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[   13.011704] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[   13.013731] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[   13.017107] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[   13.019408] systemd[1]: Activating swap swapfile.swap - /swapfile...
[   13.020405] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database skipped, unmet condition check ConditionNeedsUpdate=/etc
[   13.020464] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival skipped, unmet condition check ConditionDirectoryNotEmpty=/sys/fs/pstore
[   13.021664] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[   13.023543] systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
[   13.024038] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[   13.027468] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[   13.028348] Adding 4194300k swap on /swapfile.  Priority:-1 extents:186 across:684662784k SS
[   13.029771] systemd[1]: Activated swap swapfile.swap - /swapfile.
[   13.032336] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[   13.033759] systemd[1]: Finished systemd-random-seed.service - Load/Save OS Random Seed.
[   13.034827] systemd[1]: Reached target swap.target - Swaps.
[   13.035603] systemd[1]: systemd-sysusers.service - Create System Users skipped, no trigger condition checks were met.
[   13.037514] systemd[1]: Starting systemd-timesyncd.service - Network Time Synchronization...
[   13.039357] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[   13.041517] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
[   13.045798] systemd[1]: Finished lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
[   13.053157] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[   13.054660] systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.
[   13.056850] systemd[1]: Set up automount mnt-synology\x2dhomes.automount.
[   13.058010] systemd[1]: Set up automount mnt-synology\x2dvideo.automount.
[   13.060916] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[   13.070063] systemd[1]: Started systemd-timesyncd.service - Network Time Synchronization.
[   13.071774] systemd[1]: Reached target time-set.target - System Time Set.
[   13.073963] systemd[1]: Started systemd-journald.service - Journal Service.
[   13.094037] systemd-journald[549]: Received client request to flush runtime journal.
[   13.188065] input: Intel HID events as /devices/platform/INTC1070:00/input/input13
[   13.207816] ACPI: AC: AC Adapter [AC] (off-line)
[   13.225459] resource: resource sanity check: requesting [mem 0x00000000fedc0000-0x00000000fedcffff], which spans more than PNP0C02:02 [mem 0xfedc0000-0xfedc7fff]
[   13.226677] caller igen6_probe+0x15a/0x835 [igen6_edac] mapping multiple BARs
[   13.228277] intel_pmc_core INT33A1:00:  initialized
[   13.228295] EDAC MC0: Giving out device to module igen6_edac controller Intel_client_SoC MC#0: DEV 0000:00:00.0 (INTERRUPT)
[   13.233691] EDAC MC1: Giving out device to module igen6_edac controller Intel_client_SoC MC#1: DEV 0000:00:00.0 (INTERRUPT)
[   13.235445] EDAC igen6: v2.5.1
[   13.241691] Non-volatile memory driver v1.3
[   13.282631] mc: Linux media interface: v0.10
[   13.285826] thinkpad_acpi: ThinkPad ACPI Extras v0.26
[   13.285829] thinkpad_acpi: http://ibm-acpi.sf.net/
[   13.285830] thinkpad_acpi: ThinkPad BIOS N3MET28W (1.27 ), EC N3MHT18W
[   13.285831] thinkpad_acpi: Lenovo ThinkPad T14 Gen 3, model 21AH00BSUS
[   13.290714] thinkpad_acpi: radio switch found; radios are enabled
[   13.292253] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
[   13.292253] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
[   13.293834] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[   13.293976] ee1004 0-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
[   13.294170] input: PC Speaker as /devices/platform/pcspkr/input/input14
[   13.294529] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
[   13.325186] thinkpad_acpi: battery 1 registered (start 0, stop 100, behaviours: 0xb)
[   13.326138] ACPI: battery: new hook: ThinkPad Battery Extension
[   13.361554] i915 0000:00:02.0: [drm:intel_backlight_device_update_status [i915]] updating intel_backlight, brightness=13575/19393
[   13.361689] i915 0000:00:02.0: [drm:intel_panel_actually_set_backlight [i915]] [CONNECTOR:508:eDP-1] set backlight level = 13643
[   13.393691] Error: Driver 'pcspkr' is already registered, aborting...
[   13.393770] Bluetooth: Core ver 2.22
[   13.394190] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   13.394392] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[   13.394571] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[   13.395570] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input15
[   13.395953] cfg80211: loaded regulatory.db is malformed or signature is missing/invalid
[   13.396565] i915 0000:00:02.0: [drm:i915_hdcp_component_bind [i915]] I915 HDCP comp bind
[   13.396730] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
[   13.397382] mei_pxp 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1: bound 0000:00:02.0 (ops i915_pxp_tee_component_ops [i915])
[   13.397595] videodev: Linux video capture interface: v2.00
[   13.399925] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[   13.399927] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[   13.399928] RAPL PMU: hw unit of domain package 2^-14 Joules
[   13.399929] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[   13.399929] RAPL PMU: hw unit of domain psys 2^-14 Joules
[   13.405836] proc_thermal_pci 0000:00:04.0: enabling device (0000 -> 0002)
[   13.406414] intel_rapl_common: Found RAPL domain package
[   13.443337] acpi-tad ACPI000E:00: registered as rtc1
[   13.445907] uvcvideo 3-4:1.0: Found UVC 1.10 device Integrated Camera (174f:1812)
[   13.446444] iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
[   13.449242] uvcvideo 3-4:1.2: Found UVC 1.50 device Integrated Camera (174f:1812)
[   13.450233] usbcore: registered new interface driver uvcvideo
[   13.451722] iwlwifi 0000:00:14.3: Detected crf-id 0x400410, cnv-id 0x80400 wfpm id 0x80000020
[   13.451772] iwlwifi 0000:00:14.3: PCI dev 51f0/0090, rev=0x370, rfid=0x2010d000
[   13.451775] iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6E AX211 160MHz
[   13.457847] iwlwifi 0000:00:14.3: loaded firmware version 89.4d42c933.0 so-a0-gf-a0-89.ucode op_mode iwlmvm
[   13.468564] NET: Registered PF_BLUETOOTH protocol family
[   13.468567] Bluetooth: HCI device and connection manager initialized
[   13.468572] Bluetooth: HCI socket layer initialized
[   13.468575] Bluetooth: L2CAP socket layer initialized
[   13.468584] Bluetooth: SCO socket layer initialized
[   13.533630] usbcore: registered new interface driver btusb
[   13.535322] Bluetooth: hci0: Device revision is 0
[   13.535338] Bluetooth: hci0: Secure boot is enabled
[   13.535343] Bluetooth: hci0: OTP lock is enabled
[   13.535347] Bluetooth: hci0: API lock is enabled
[   13.535350] Bluetooth: hci0: Debug lock is disabled
[   13.535354] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[   13.535362] Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38
[   13.535939] Bluetooth: hci0: DSM reset method type: 0x00
[   13.538522] Bluetooth: hci0: Found device firmware: intel/ibt-0040-0041.sfi
[   13.538548] Bluetooth: hci0: Boot Address: 0x100800
[   13.538549] Bluetooth: hci0: Firmware Version: 200-48.24
[   13.581716] intel_rapl_msr: PL4 support detected (updated).
[   13.582587] intel_rapl_common: Found RAPL domain package
[   13.583160] intel_rapl_common: Found RAPL domain core
[   13.583732] intel_rapl_common: Found RAPL domain uncore
[   13.583734] intel_rapl_common: Found RAPL domain psys
[   13.691502] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops intel_audio_component_bind_ops [i915])
[   13.692725] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_2
[   13.692981] i915 0000:00:02.0: [drm:intel_audio_component_get_power [i915]] restored AUD_FREQ_CNTRL to 0x8010
[   13.744332] snd_hda_codec_alc269 hdaudioC0D0: ALC257: picked fixup  for PCI SSID 17aa:0000
[   13.745927] snd_hda_codec_alc269 hdaudioC0D0: autoconfig for ALC257: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[   13.746586] snd_hda_codec_alc269 hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   13.747234] snd_hda_codec_alc269 hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[   13.747863] snd_hda_codec_alc269 hdaudioC0D0:    mono: mono_out=0x0
[   13.748380] snd_hda_codec_alc269 hdaudioC0D0:    inputs:
[   13.748930] snd_hda_codec_alc269 hdaudioC0D0:      Mic=0x19
[   13.800179] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[   13.800906] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[   13.801689] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 4
[   13.801890] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[   13.803391] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[   13.804328] iwlwifi 0000:00:14.3: Detected RF GF, rfid=0x2010d000
[   13.829533] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port A
[   13.830611] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port A
[   13.831345] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port A
[   13.832052] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port A
[   13.832738] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port B
[   13.832832] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port B
[   13.833838] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port B
[   13.833932] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port B
[   13.834029] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port C
[   13.834125] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port C
[   13.834219] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port C
[   13.834313] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port C
[   13.834408] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port D
[   13.837945] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port D
[   13.838040] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port D
[   13.838945] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port D
[   13.839038] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port E
[   13.839964] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port E
[   13.840064] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port E
[   13.840970] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port E
[   13.841061] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port F
[   13.841953] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port F
[   13.842041] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port F
[   13.842930] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port F
[   13.843019] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port G
[   13.843886] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port G
[   13.843980] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port G
[   13.844073] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port G
[   13.844167] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port H
[   13.844257] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port H
[   13.844351] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port H
[   13.847205] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port H
[   13.847300] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port I
[   13.847395] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port I
[   13.847492] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port I
[   13.847586] i915 0000:00:02.0: [drm:intel_audio_component_get_eld [i915]] Not valid for port I
[   13.850958] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[   13.850994] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[   13.851019] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input18
[   13.851041] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input19
[   13.851064] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input20
[   13.851090] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input21
[   13.851123] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input22
[   13.890342] iwlwifi 0000:00:14.3: base HW address: a0:80:69:c6:8f:f4
[   13.935356] iwlwifi 0000:00:14.3 wlp0s20f3: renamed from wlan0
[   13.990745] EXT4-fs (nvme0n1p2): mounting ext2 file system using the ext4 subsystem
[   13.993045] EXT4-fs (nvme0n1p2): mounted filesystem 65eb294d-871a-4c76-b438-ec9bd34837bf r/w without journal. Quota mode: none.
[   14.003565] loop0: detected capacity change from 0 to 716176
[   14.003589] loop1: detected capacity change from 0 to 184
[   14.006198] loop: module loaded
[   14.007018] loop2: detected capacity change from 0 to 8
[   14.012981] loop3: detected capacity change from 0 to 130624
[   14.015678] loop4: detected capacity change from 0 to 130616
[   14.017063] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[   14.020269] loop5: detected capacity change from 0 to 187776
[   14.020752] loop6: detected capacity change from 0 to 940528
[   14.020942] loop7: detected capacity change from 0 to 100888
[   14.022017] loop8: detected capacity change from 0 to 99056
[   14.024367] loop9: detected capacity change from 0 to 948888
[   14.112389] audit: type=1400 audit(1780575382.699:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=876 comm="apparmor_parser"
[   14.114772] audit: type=1400 audit(1780575382.699:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=874 comm="apparmor_parser"
[   14.117162] audit: type=1400 audit(1780575382.699:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="chrome" pid=886 comm="apparmor_parser"
[   14.117166] audit: type=1400 audit(1780575382.699:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="vscode" pid=888 comm="apparmor_parser"
[   14.117170] audit: type=1400 audit(1780575382.699:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="cam" pid=883 comm="apparmor_parser"
[   14.123486] audit: type=1400 audit(1780575382.699:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="chromium" pid=887 comm="apparmor_parser"
[   14.123490] audit: type=1400 audit(1780575382.699:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="crun" pid=889 comm="apparmor_parser"
[   14.123493] audit: type=1400 audit(1780575382.699:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-checkns" pid=884 comm="apparmor_parser"
[   14.123496] audit: type=1400 audit(1780575382.699:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Discord" pid=875 comm="apparmor_parser"
[   14.123501] audit: type=1400 audit(1780575382.699:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="busybox" pid=882 comm="apparmor_parser"
[   15.074161] RPC: Registered named UNIX socket transport module.
[   15.074870] RPC: Registered udp transport module.
[   15.075562] RPC: Registered tcp transport module.
[   15.076234] RPC: Registered tcp-with-tls transport module.
[   15.076989] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   15.097622] Bluetooth: hci0: Waiting for firmware download to complete
[   15.098770] Bluetooth: hci0: Firmware loaded in 1523675 usecs
[   15.099655] Bluetooth: hci0: Waiting for device to boot
[   15.115472] Bluetooth: hci0: Device booted in 15592 usecs
[   15.118948] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-0040-0041.ddc
[   15.121663] Bluetooth: hci0: Applying Intel DDC parameters completed
[   15.125566] Bluetooth: hci0: Firmware timestamp 2024.48 buildtype 1 build 81864
[   15.126442] Bluetooth: hci0: Firmware SHA1: 0xc115e35a
[   15.131476] Bluetooth: hci0: Fseq status: Success (0x00)
[   15.132002] Bluetooth: hci0: Fseq executed: 00.00.02.41
[   15.132535] Bluetooth: hci0: Fseq BT Top: 00.00.02.41
[   15.311011] Process accounting resumed
[   15.323654] IPMI message handler: version 39.2
[   15.327645] ipmi device interface
[   15.352628] ipmi_si: IPMI System Interface driver
[   15.353430] ipmi_si: Unable to find any System Interface(s)
[   15.394236] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   15.394243] Bluetooth: BNEP filters: protocol multicast
[   15.394258] Bluetooth: BNEP socket layer initialized
[   15.397332] Bluetooth: MGMT ver 1.23
[   15.414001] warning: `atop' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[   15.434657] NET: Registered PF_ALG protocol family
[   15.464762] Bluetooth: RFCOMM TTY layer initialized
[   15.465500] Bluetooth: RFCOMM socket layer initialized
[   15.466235] Bluetooth: RFCOMM ver 1.11
[   15.500173] NET: Registered PF_QIPCRTR protocol family
[   15.878784] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[   15.879505] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[   15.880206] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[   15.880211] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 4
[   15.881016] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[   16.185094] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[   16.185806] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[   16.186499] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[   16.186503] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 4
[   16.187173] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[   17.035931] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.061310] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1]
[   17.061334] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:508:eDP-1]
[   17.061497] i915 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turning VDD on
[   17.061707] i915 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x0000006f
[   17.061818] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   17.061905] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[   17.061990] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[   17.062077] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[   17.062122] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   17.062155] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[   17.062186] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[   17.062221] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] VRR capable: yes
[   17.062310] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
[   17.062394] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
[   17.062680] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x03000 AUX -> (ret=  1) 00
[   17.062740] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] probed modes:
[   17.062755] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   17.062829] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1]
[   17.062841] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[   17.066971] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1] disconnected
[   17.067057] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1]
[   17.067072] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[   17.067249] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port D/TC#1: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[   17.067389] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1] disconnected
[   17.067437] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2]
[   17.067448] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[   17.067584] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port E/TC#2: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[   17.067717] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2] disconnected
[   17.067755] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3]
[   17.067766] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[   17.067900] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port F/TC#3: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[   17.068032] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3] disconnected
[   17.068073] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4]
[   17.068084] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[   17.068218] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port G/TC#4: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[   17.068350] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4] disconnected
[   17.214214] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.239615] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   17.239746] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   17.239913] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0
[   17.240028] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21
[   17.240131] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22
[   17.322522] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.322803] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.790953] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.804052] rfkill: input handler disabled
[   17.832200] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.837041] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.839080] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.849668] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.857267] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.863484] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.934357] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.934702] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.936785] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.954664] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   17.955237] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   18.014585] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   18.034127] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   18.084499] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port G/TC#4: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[   18.084710] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port F/TC#3: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[   18.084861] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port E/TC#2: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[   18.085006] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port D/TC#1: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[   18.117797] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.118054] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   18.118233] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]      lines    1,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    4,   5,   7,   8,  12,  12,   0,   0,   0,   4,    0
[   18.118368] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]     blocks   16,  81, 113, 129, 193, 193,   0,   0,  30,  49,   63 ->   62,  78, 108, 123, 184, 184,   0,   0, 137,  62,  137
[   18.118519] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:35:plane 1A]    min_ddb   19,  91, 126, 143, 214, 214,   0,   0,  31,  55,   64 ->  123, 184, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   18.118674] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   18.118831] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   18.118988] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   18.119143] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   18.122820] i915 0000:00:02.0: [drm:__intel_fbc_disable [i915]] Disabling FBC on [PLANE:35:plane 1A]
[   18.157331] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.161030] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.174732] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.190615] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.207309] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.224011] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.240909] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.257671] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.274004] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.290737] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.307471] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.324124] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.341026] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.357399] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.374000] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.390616] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.407206] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.423943] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.440571] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.457155] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.473788] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.490451] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.507121] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.523775] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.540474] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.557207] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.582646] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.591472] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.607220] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.623873] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.640646] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.657405] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.674015] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.690818] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.707380] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.724074] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.740710] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.757342] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.776716] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.790637] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.807358] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.824061] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.840665] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.857434] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.874080] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.890746] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.907400] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.927473] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   18.943792] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   18.957642] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   18.974101] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.001342] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   19.009556] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   19.024242] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.040875] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   19.057606] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   19.074269] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.090858] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   19.107521] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   19.124210] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.140860] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   19.166652] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   19.183388] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.199838] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   19.216505] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   19.233145] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.249790] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   19.285828] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.286489] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   19.299761] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   19.435455] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   19.437040] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   19.550339] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.551639] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   19.722562] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.723374] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   19.780756] i915 0000:00:02.0: [drm:intel_pps_vdd_off_sync_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turning VDD off
[   19.781486] i915 0000:00:02.0: [drm:intel_pps_vdd_off_sync_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x00000067
[   19.841053] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.842594] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   19.984864] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   19.986824] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   20.000526] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   20.018292] wlp0s20f3: authenticate with 60:d0:2c:1d:1d:9c (local address=a0:80:69:c6:8f:f4)
[   20.019464] wlp0s20f3: send auth to 60:d0:2c:1d:1d:9c (try 1/3)
[   20.063234] wlp0s20f3: authenticated
[   20.068592] wlp0s20f3: associate with 60:d0:2c:1d:1d:9c (try 1/3)
[   20.071311] wlp0s20f3: RX AssocResp from 60:d0:2c:1d:1d:9c (capab=0x11 status=0 aid=1)
[   20.084428] wlp0s20f3: associated
[   20.101700] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   20.102771] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   20.147299] wlp0s20f3: Limiting TX power to 30 (30 - 0) dBm as advertised by 60:d0:2c:1d:1d:9c
[   20.154690] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   20.155838] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   20.227196] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   20.228209] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   20.369527] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   20.370793] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   20.441132] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   20.442261] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   20.543371] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   20.544376] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   20.727175] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   20.728583] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   20.939480] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   20.941788] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   20.971477] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   20.989042] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   21.005182] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:570]
[   21.021679] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   21.037776] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   21.054794] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:570]
[   21.071312] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   21.088266] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   21.104738] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   21.121579] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   21.139974] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   21.156774] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:568]
[   21.173444] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   21.190117] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   21.209969] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   21.226008] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   21.242855] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   21.260035] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   21.275937] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   21.293505] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   21.310791] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:565]
[   21.318887] rfkill: input handler enabled
[   21.834079] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   21.834518] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   21.858565] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1]
[   21.858584] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:508:eDP-1]
[   21.858703] i915 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turning VDD on
[   21.858869] i915 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x0000006f
[   21.858947] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   21.859007] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[   21.859064] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[   21.859122] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[   21.859158] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   21.859179] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[   21.859200] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[   21.859224] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] VRR capable: yes
[   21.859290] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
[   21.859350] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
[   21.859596] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x03000 AUX -> (ret=  1) 00
[   21.859637] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] probed modes:
[   21.859649] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   21.860406] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1]
[   21.860416] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[   21.864566] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1] disconnected
[   21.864607] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1]
[   21.864615] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[   21.864741] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port D/TC#1: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[   21.864843] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1] disconnected
[   21.864872] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2]
[   21.864878] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[   21.864984] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port E/TC#2: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[   21.865080] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2] disconnected
[   21.865106] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3]
[   21.865112] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[   21.865217] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port F/TC#3: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[   21.865316] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3] disconnected
[   21.865340] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4]
[   21.865346] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[   21.865450] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port G/TC#4: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[   21.865547] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4] disconnected
[   21.918958] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   22.007582] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   22.007699] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:508:eDP-1] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 30, max platform bpp 36)
[   22.007833] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:507:DDI A/PHY A][CRTC:151:pipe A] DP link limits: pixel clock 161790 kHz DSC off max lanes 2 max rate 270000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   22.007903] i915 0000:00:02.0: [drm:intel_dp_compute_output_format [i915]] DP lane count 2 clock 270000 bpp input 24 compressed 0.0000 HDR no link rate required 485370 available 540000
[   22.007973] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:151:pipe A] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   22.008058] i915 0000:00:02.0: [drm:intel_ddi_compute_config_late [i915]] [ENCODER:507:DDI A/PHY A] [CRTC:151:pipe A]
[   22.008129] i915 0000:00:02.0: [drm:intel_dpll_crtc_put [i915]] [CRTC:151:pipe A] releasing DPLL 1
[   22.008234] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:151:pipe A] allocated DPLL 0
[   22.008316] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:151:pipe A] reserving DPLL 0
[   22.008398] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   22.008527] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   22.008644] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   22.008747] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   22.008828] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   22.008909] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   22.008988] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   22.009068] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   22.009149] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   22.009231] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   22.009312] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   22.009393] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   22.009474] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   22.009555] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   22.009635] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   22.009713] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   22.009792] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   22.009874] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   22.009956] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   22.010037] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   22.010119] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   22.010198] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   22.010278] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   22.010358] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   22.010437] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   22.010518] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   22.010601] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   22.010684] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   22.010765] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   22.010847] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   22.010927] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   22.011018] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   22.011101] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   22.011181] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   22.011260] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   22.011339] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.011419] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.011502] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.011584] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   22.011664] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   22.011744] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.011823] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.011905] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.011985] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   22.012066] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   22.012147] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   22.012226] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   22.012305] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[   22.012386] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[   22.012495] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[   22.012585] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[   22.012678] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [NOFB], visible: no
[   22.012796] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:508:eDP-1] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 30, max platform bpp 36)
[   22.012902] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:507:DDI A/PHY A][CRTC:151:pipe A] DP link limits: pixel clock 161790 kHz DSC off max lanes 2 max rate 270000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   22.012966] i915 0000:00:02.0: [drm:intel_dp_compute_output_format [i915]] DP lane count 2 clock 270000 bpp input 24 compressed 0.0000 HDR no link rate required 485370 available 540000
[   22.013031] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:151:pipe A] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   22.013118] i915 0000:00:02.0: [drm:intel_ddi_compute_config_late [i915]] [ENCODER:507:DDI A/PHY A] [CRTC:151:pipe A]
[   22.013183] i915 0000:00:02.0: [drm:intel_dpll_crtc_put [i915]] [CRTC:151:pipe A] releasing DPLL 1
[   22.013274] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:151:pipe A] allocated DPLL 0
[   22.013354] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:151:pipe A] reserving DPLL 0
[   22.013434] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   22.013516] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   22.013599] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   22.013682] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   22.013763] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   22.013842] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   22.013921] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   22.014002] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   22.014083] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   22.014162] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   22.014242] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   22.014322] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   22.014401] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   22.014483] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   22.014565] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   22.014645] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   22.014726] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   22.014804] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   22.014883] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   22.014965] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   22.015047] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   22.015128] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   22.015209] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   22.015288] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   22.015369] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   22.015448] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   22.015527] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   22.015607] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   22.015686] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   22.015763] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   22.015842] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   22.015921] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   22.016002] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   22.016081] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   22.016159] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   22.016241] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.016320] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.016398] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.016504] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   22.016602] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   22.016700] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.016779] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.016858] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.016937] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   22.017019] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   22.017101] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   22.017181] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   22.017262] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[   22.017342] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[   22.017423] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[   22.017503] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[   22.017583] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [NOFB], visible: no
[   22.017705] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:508:eDP-1] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 30, max platform bpp 36)
[   22.017811] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:507:DDI A/PHY A][CRTC:151:pipe A] DP link limits: pixel clock 161790 kHz DSC off max lanes 2 max rate 270000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   22.017874] i915 0000:00:02.0: [drm:intel_dp_compute_output_format [i915]] DP lane count 2 clock 270000 bpp input 24 compressed 0.0000 HDR no link rate required 485370 available 540000
[   22.017938] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:151:pipe A] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   22.018022] i915 0000:00:02.0: [drm:intel_ddi_compute_config_late [i915]] [ENCODER:507:DDI A/PHY A] [CRTC:151:pipe A]
[   22.018086] i915 0000:00:02.0: [drm:intel_dpll_crtc_put [i915]] [CRTC:151:pipe A] releasing DPLL 1
[   22.018174] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:151:pipe A] allocated DPLL 0
[   22.018255] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:151:pipe A] reserving DPLL 0
[   22.018333] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   22.018416] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   22.018497] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   22.018576] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   22.018655] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   22.018732] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   22.018813] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   22.018893] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   22.018973] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   22.019053] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   22.019130] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   22.019209] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   22.019290] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   22.019371] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   22.019452] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   22.019532] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   22.019610] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   22.019689] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   22.019770] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   22.019850] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   22.019932] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   22.020011] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   22.020095] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   22.020178] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   22.020259] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   22.020337] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   22.020418] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   22.020508] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   22.020608] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   22.020703] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   22.020783] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   22.020863] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   22.020943] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   22.021022] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   22.021101] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   22.021183] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.021264] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.021342] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.021423] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   22.021504] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   22.021584] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.021664] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.021744] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.021824] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   22.021904] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   22.021986] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   22.022066] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   22.022147] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[   22.022227] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[   22.022309] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[   22.022391] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[   22.022473] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [NOFB], visible: no
[   22.022566] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:508:eDP-1] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 30, max platform bpp 36)
[   22.022669] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:507:DDI A/PHY A][CRTC:151:pipe A] DP link limits: pixel clock 161790 kHz DSC off max lanes 2 max rate 270000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   22.022732] i915 0000:00:02.0: [drm:intel_dp_compute_output_format [i915]] DP lane count 2 clock 270000 bpp input 24 compressed 0.0000 HDR no link rate required 485370 available 540000
[   22.022794] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:151:pipe A] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   22.022879] i915 0000:00:02.0: [drm:intel_ddi_compute_config_late [i915]] [ENCODER:507:DDI A/PHY A] [CRTC:151:pipe A]
[   22.022943] i915 0000:00:02.0: [drm:intel_dpll_crtc_put [i915]] [CRTC:151:pipe A] releasing DPLL 1
[   22.023029] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:151:pipe A] allocated DPLL 0
[   22.023111] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:151:pipe A] reserving DPLL 0
[   22.023191] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   22.023273] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   22.023358] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   22.023441] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   22.023520] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   22.023601] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   22.023681] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   22.023763] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   22.023844] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   22.023924] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   22.024004] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   22.024085] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   22.024166] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   22.024247] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   22.024329] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   22.024409] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   22.024502] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   22.024601] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   22.024701] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   22.024780] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   22.024862] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   22.024944] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   22.025026] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   22.025107] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   22.025192] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   22.025274] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   22.025354] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   22.025434] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   22.025515] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   22.025596] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   22.025677] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   22.025758] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   22.025840] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   22.025920] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   22.025999] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   22.026079] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.026158] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.026237] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.026317] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   22.026397] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   22.026478] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.026558] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.026640] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.026721] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   22.026801] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   22.026882] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   22.026963] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   22.027045] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[   22.027125] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[   22.027204] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[   22.027286] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[   22.027365] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [NOFB], visible: no
[   22.080169] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   22.105014] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:570]
[   22.112434] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   22.112590] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:508:eDP-1] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 30, max platform bpp 36)
[   22.112738] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:507:DDI A/PHY A][CRTC:151:pipe A] DP link limits: pixel clock 161790 kHz DSC off max lanes 2 max rate 270000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   22.112818] i915 0000:00:02.0: [drm:intel_dp_compute_output_format [i915]] DP lane count 2 clock 270000 bpp input 24 compressed 0.0000 HDR no link rate required 485370 available 540000
[   22.112897] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:151:pipe A] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   22.113001] i915 0000:00:02.0: [drm:intel_ddi_compute_config_late [i915]] [ENCODER:507:DDI A/PHY A] [CRTC:151:pipe A]
[   22.113082] i915 0000:00:02.0: [drm:intel_dpll_crtc_put [i915]] [CRTC:151:pipe A] releasing DPLL 1
[   22.113201] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:151:pipe A] allocated DPLL 0
[   22.113297] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:151:pipe A] reserving DPLL 0
[   22.113399] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   22.113498] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   22.113598] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   22.113692] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   22.113784] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   22.113877] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   22.113971] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   22.114063] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   22.114158] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   22.114252] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   22.114345] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   22.114438] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   22.114531] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   22.114625] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   22.114719] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   22.114815] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   22.114912] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   22.115006] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   22.115099] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   22.115195] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   22.115291] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   22.115388] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   22.115483] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   22.115576] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   22.115671] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   22.115765] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   22.115860] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   22.115957] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   22.116051] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   22.116146] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   22.116237] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   22.116330] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   22.116424] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   22.116528] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   22.116638] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   22.116741] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.116842] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.116940] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   22.117038] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   22.117137] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   22.117238] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.117334] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.117433] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   22.117534] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   22.117632] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:569] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   22.117734] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   22.117834] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   22.117936] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[   22.118038] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[   22.118130] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[   22.118223] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[   22.118316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [NOFB], visible: no
[   22.119318] i915 0000:00:02.0: [drm:intel_edp_backlight_off [i915]] 
[   22.324768] i915 0000:00:02.0: [drm:intel_backlight_set_pwm_level [i915]] [CONNECTOR:508:eDP-1] set backlight PWM = 0
[   22.325755] i915 0000:00:02.0: [drm:intel_disable_transcoder [i915]] disabling pipe A
[   22.339702] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00600 AUX <- (ret=  1) 02
[   22.339842] i915 0000:00:02.0: [drm:intel_pps_off_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turn panel power off
[   22.340435] i915 0000:00:02.0: [drm:intel_pps_off_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 wait for panel power off time
[   22.341059] i915 0000:00:02.0: [drm:wait_panel_status [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 mask: 0xb0000000 value: 0x00000000 PP_STATUS: 0xa0000002 PP_CONTROL: 0x00000060
[   22.396006] i915 0000:00:02.0: [drm:icp_irq_handler [i915]] hotplug event received, stat 0x00010000, dig 0x0000008a, pins 0x00000010, long 0x00000010
[   22.396617] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:507:DDI A/PHY A] - long
[   22.397089] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] Received HPD interrupt on PIN 4 - cnt: 10
[   22.397562] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] ignoring long hpd on eDP [ENCODER:507:DDI A/PHY A]
[   22.402621] i915 0000:00:02.0: [drm:intel_pps_off_unlocked [i915]] Wait complete
[   22.403000] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling DDI_IO_A
[   22.403444] i915 0000:00:02.0: [drm:intel_dpll_disable [i915]] disable DPLL 1 (active 0x1, on? 1) for [CRTC:151:pipe A]
[   22.403859] i915 0000:00:02.0: [drm:intel_dpll_disable [i915]] disabling DPLL 1
[   22.404224] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling AUX_A
[   22.404632] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:507:DDI A/PHY A]
[   22.404963] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:516:DDI B/PHY B]
[   22.405268] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:525:DDI TC1/PHY TC1]
[   22.405566] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:527:DP-MST A]
[   22.405873] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:528:DP-MST B]
[   22.406155] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:529:DP-MST C]
[   22.406434] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:530:DP-MST D]
[   22.406712] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:535:DDI TC2/PHY TC2]
[   22.406986] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:537:DP-MST A]
[   22.407249] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:538:DP-MST B]
[   22.407511] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:539:DP-MST C]
[   22.407767] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:540:DP-MST D]
[   22.407982] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:544:DDI TC3/PHY TC3]
[   22.408060] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:546:DP-MST A]
[   22.408138] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:547:DP-MST B]
[   22.408215] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:548:DP-MST C]
[   22.408292] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:549:DP-MST D]
[   22.408369] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:553:DDI TC4/PHY TC4]
[   22.408442] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:555:DP-MST A]
[   22.408534] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:556:DP-MST B]
[   22.408625] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:557:DP-MST C]
[   22.408718] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:558:DP-MST D]
[   22.408799] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:517:HDMI-A-1]
[   22.408877] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:526:DP-1]
[   22.408954] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:536:DP-2]
[   22.409032] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:545:DP-3]
[   22.409111] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:554:DP-4]
[   22.409201] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling AUX_A
[   22.409292] i915 0000:00:02.0: [drm:intel_dpll_enable [i915]] enable DPLL 0 (active 0x1, on? 0) for [CRTC:151:pipe A]
[   22.409378] i915 0000:00:02.0: [drm:intel_dpll_enable [i915]] enabling DPLL 0
[   22.409490] i915 0000:00:02.0: [drm:intel_pps_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turn panel power on
[   22.409571] i915 0000:00:02.0: [drm:wait_panel_power_cycle [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 wait for panel power cycle (494 ms remaining)
[   22.725092] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
[   22.725097] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
[   22.818654] kauditd_printk_skb: 132 callbacks suppressed
[   22.818663] audit: type=1400 audit(1780575391.407:144): apparmor="STATUS" operation="profile_load" profile="unconfined" name="docker-default" pid=2670 comm="apparmor_parser"
[   22.862731] evm: overlay not supported
[   22.888460] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port G/TC#4: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[   22.888550] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port F/TC#3: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[   22.888623] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port E/TC#2: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[   22.888641] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port D/TC#1: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[   22.916607] i915 0000:00:02.0: [drm:wait_panel_status [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 mask: 0xb800000f value: 0x00000000 PP_STATUS: 0x08000001 PP_CONTROL: 0x00000060
[   22.996642] i915 0000:00:02.0: [drm:intel_pps_on_unlocked [i915]] Wait complete
[   22.996879] i915 0000:00:02.0: [drm:intel_pps_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 wait for panel power on
[   22.997045] i915 0000:00:02.0: [drm:wait_panel_status [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 mask: 0xb000000f value: 0x80000008 PP_STATUS: 0x9000000a PP_CONTROL: 0x00000063
[   23.128189] i915 0000:00:02.0: [drm:icp_irq_handler [i915]] hotplug event received, stat 0x00010000, dig 0x0000008a, pins 0x00000010, long 0x00000010
[   23.129554] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:507:DDI A/PHY A] - long
[   23.130786] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] Received HPD interrupt on PIN 4 - cnt: 20
[   23.132016] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] ignoring long hpd on eDP [ENCODER:507:DDI A/PHY A]
[   23.208484] i915 0000:00:02.0: [drm:intel_pps_on_unlocked [i915]] Wait complete
[   23.208675] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling DDI_IO_A
[   23.208885] i915 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turning VDD on
[   23.209080] i915 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x0000006b
[   23.209357] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00300 AUX -> (ret=  3) 00 00 00
[   23.209584] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00300 AUX <- (ret=  3) 00 aa 01
[   23.209779] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00600 AUX <- (ret=  1) 01
[   23.210091] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00000 AUX -> (ret= 15) 11 0a 82 41 00 00 01 40 02 02 06 00 00 0b 00
[   23.210099] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX A/DDI A/PHY A: DPCD: 11 0a 82 41 00 00 01 40 02 02 06 00 00 0b 00
[   23.210115] i915 0000:00:02.0: [drm:intel_dp_start_link_train [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] Using LINK_BW_SET value 0a
[   23.210404] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00107 AUX <- (ret=  2) 80 01
[   23.210607] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00100 AUX <- (ret=  2) 0a 82
[   23.210616] i915 0000:00:02.0: [drm:intel_dp_set_signal_levels [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] 8b/10b, lanes: 2, vswing levels: 0/0/0/0, pre-emphasis levels: 0/0/0/0
[   23.210766] i915 0000:00:02.0: [drm:intel_dp_program_link_training_pattern [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] Using DP training pattern TPS1
[   23.211044] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00102 AUX <- (ret=  3) 21 00 00
[   23.211410] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00202 AUX -> (ret=  6) 11 00 80 02 00 00
[   23.211418] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] Clock recovery OK
[   23.211493] i915 0000:00:02.0: [drm:intel_dp_program_link_training_pattern [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] Using DP training pattern TPS2
[   23.211765] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00102 AUX <- (ret=  3) 22 00 00
[   23.212510] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00202 AUX -> (ret=  6) 77 00 81 02 00 00
[   23.212520] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] Channel EQ done. DP Training successful
[   23.212592] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] Link Training passed at link rate = 270000, lane count = 2
[   23.212847] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00102 AUX <- (ret=  1) 00
[   23.213185] i915 0000:00:02.0: [drm:intel_enable_transcoder [i915]] enabling pipe A
[   23.213310] i915 0000:00:02.0: [drm:intel_edp_backlight_on [i915]] 
[   23.213387] i915 0000:00:02.0: [drm:intel_backlight_enable [i915]] pipe A
[   23.213524] i915 0000:00:02.0: [drm:intel_backlight_set_pwm_level [i915]] [CONNECTOR:508:eDP-1] set backlight PWM = 13643
[   23.346755] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:508:eDP-1]
[   23.346898] i915 0000:00:02.0: [drm:intel_modeset_verify_crtc [i915]] [CRTC:151:pipe A]
[   23.439952] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   23.466684] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   23.466943] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   23.523455] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   23.555667] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   23.563578] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.580856] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.597212] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.613624] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:567]
[   23.630659] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.647374] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.663978] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.671199] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   23.674622] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   23.680434] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.697527] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.714015] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.716493] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   23.730628] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.747358] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.764032] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.780533] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.797219] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.813964] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.830625] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.848371] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:567]
[   23.863955] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.880646] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.890861] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   23.892377] Initializing XFRM netlink socket
[   23.897160] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:567]
[   23.913922] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.926911] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   23.930716] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.948159] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.965025] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   23.983506] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   23.999379] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.015986] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.032596] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.050028] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.066004] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.082588] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.087969] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   24.099150] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.106986] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   24.115951] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.132567] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.149351] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.165826] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.182620] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.199179] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.215873] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.232347] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.249641] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.265753] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.282598] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.297320] i915 0000:00:02.0: [drm:intel_backlight_device_update_status [i915]] updating intel_backlight, brightness=13575/19393
[   24.297485] i915 0000:00:02.0: [drm:intel_panel_actually_set_backlight [i915]] [CONNECTOR:508:eDP-1] set backlight level = 13643
[   24.299471] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.316286] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.336926] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.349487] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.366111] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.382692] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.400693] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:567]
[   24.401154] br-ebac236f630d: port 1(veth7461854) entered blocking state
[   24.401161] br-ebac236f630d: port 1(veth7461854) entered disabled state
[   24.401173] veth7461854: entered allmulticast mode
[   24.401224] veth7461854: entered promiscuous mode
[   24.416182] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.433781] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.443312] eth0: renamed from veth8021585
[   24.443864] br-ebac236f630d: port 1(veth7461854) entered blocking state
[   24.443872] br-ebac236f630d: port 1(veth7461854) entered forwarding state
[   24.448269] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   24.450704] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.467063] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.467780] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   24.472689] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   24.483860] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.502153] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.517547] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.533889] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.535834] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   24.543838] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   24.551112] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.573406] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:567]
[   24.584227] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.601359] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.616746] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.619092] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:567]
[   24.619256] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   24.619445] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0
[   24.619639] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21
[   24.619819] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22
[   24.628306] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   24.628512] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0
[   24.628680] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21
[   24.628843] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22
[   24.640943] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.649225] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.665880] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.675152] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   24.682625] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.699277] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.717028] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.733776] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.750531] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.767056] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.783767] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.800412] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.817069] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.833833] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.851077] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.867201] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.883749] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.900390] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.916995] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.933702] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.950439] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   24.967136] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   24.983814] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.000206] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.017080] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.033609] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.050353] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.067049] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.084723] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.101265] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.117912] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.134789] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.150407] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.167003] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.184698] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.201392] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.217956] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.224740] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00202 AUX -> (ret=  6) 77 00 01 03 00 00
[   25.234632] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.251327] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.267995] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.284691] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.301593] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.318659] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.335222] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.351646] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.356548] netfs: FS-Cache loaded
[   25.368413] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.385160] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.401675] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.419250] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.435065] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.451530] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.468145] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.484801] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.501602] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.518516] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.524815] Key type dns_resolver registered
[   25.534993] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.551610] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.568384] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.585022] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.601420] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.618106] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   25.634977] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   25.713081] NFS: Registering the id_resolver key type
[   25.713099] Key type id_resolver registered
[   25.713100] Key type id_legacy registered
[   25.973812] systemd-fstab-generator[4002]: x-systemd.device-timeout ignored for synology:/volume1/video
[   25.974122] systemd-fstab-generator[4002]: x-systemd.device-timeout ignored for synology:/volume1/homes
[   25.979584] systemd-sysv-generator[4011]: SysV service '/etc/init.d/openipmi' lacks a native systemd unit file, automatically generating a unit file for compatibility.
[   25.979591] systemd-sysv-generator[4011]: Please update package to include a native systemd unit file.
[   25.979594] systemd-sysv-generator[4011]: ! This compatibility logic is deprecated, expect removal soon. !
[   27.109223] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.119403] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   27.144058] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.152845] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   27.169532] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.186530] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   27.202817] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.219517] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   27.236489] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.252833] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   27.270132] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.286947] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   27.303643] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.319461] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   27.346826] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.352483] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   27.370178] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.386716] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   27.402766] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.419289] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   27.437837] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.685589] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   27.702582] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.719247] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   27.847939] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   27.972582] i915 0000:00:02.0: [drm:intel_pps_vdd_off_sync_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turning VDD off
[   27.973199] i915 0000:00:02.0: [drm:intel_pps_vdd_off_sync_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x00000067
[   28.187404] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   28.205057] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   28.406872] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   28.420846] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   28.437931] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   28.454124] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   28.470767] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   28.487932] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   28.503510] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   28.520930] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   28.537684] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   28.554509] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   28.570645] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   28.588203] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   28.604098] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   28.620786] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   28.638409] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   28.687869] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   28.703991] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   28.903844] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   29.187472] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   29.205087] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   29.444576] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   29.494086] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling PW_2
[   29.688193] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   29.705098] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   29.954564] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   30.188569] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   30.206048] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   30.554713] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   30.689152] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   30.706060] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   31.005558] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   31.188631] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   31.205871] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   31.688208] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   31.706012] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   32.023021] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   32.189942] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   32.206903] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   32.690207] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   32.706859] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   33.023099] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   33.189974] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   33.206744] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   33.379304] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   33.689720] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   33.708087] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   33.757692] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   33.780488] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   33.807141] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   33.840107] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   33.875503] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.024166] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.190477] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.207524] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.444490] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.457396] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   34.473969] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.489973] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.506394] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.523365] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.540899] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.556734] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.573322] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.589776] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.606384] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.622806] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.639750] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.656190] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.672907] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.689555] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.706102] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.722970] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.739540] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.756339] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.773004] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.789453] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.806646] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.823165] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.839828] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.856620] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.873086] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.881883] i915 0000:00:02.0: [drm:i915_gem_open [i915]] 
[   34.890487] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.906426] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.924040] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.939834] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.956367] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   34.972979] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   34.989473] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.006400] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.023152] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.044773] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.057239] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   35.072920] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.089668] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.105999] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.125511] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.141907] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.153235] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.169658] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.186483] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.203020] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.219274] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.236035] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.252424] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.585573] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.686254] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.702444] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.726664] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.738246] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.753463] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.773881] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.788040] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.805264] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.820413] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.836950] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.853962] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.870427] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.886521] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.903493] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   35.919101] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   35.936512] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   36.024885] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   36.186107] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   36.204062] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   36.335505] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   36.353452] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   36.370123] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   36.686243] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   36.704214] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   36.936183] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   36.954254] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.026981] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.187196] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.204181] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.228403] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.237809] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   37.254156] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.336379] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.353330] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.376339] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.390307] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   37.408871] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.419152] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.431564] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.450543] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   37.465379] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.478034] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.493997] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   37.515139] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.528132] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.539165] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   37.555778] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.573200] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.590743] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   37.606735] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.623186] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.688931] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.706823] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   37.909378] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.923076] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   37.938544] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   37.955273] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   37.972194] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   38.024507] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   38.109746] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   38.121930] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   38.138816] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   38.188519] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   38.205190] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   38.510896] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   38.521752] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   38.539407] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   38.689470] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   38.706133] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   38.738595] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   38.756332] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   38.772177] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   38.789811] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   38.806252] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   39.022169] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   39.189846] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   39.206915] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   39.339885] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   39.357048] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   39.691111] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   39.707330] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   39.724772] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   39.741873] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   39.759895] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   39.775897] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   39.793041] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   39.809872] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   39.930240] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   39.941627] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   39.959242] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   40.025160] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   40.192315] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   40.210265] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   40.292194] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   40.309941] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   40.693207] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   40.710314] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   40.726135] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   40.743507] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   40.760072] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   40.777759] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   40.794870] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   40.811124] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   41.025966] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   41.193645] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   41.210446] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   41.310598] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   41.327485] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   41.345586] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   41.361157] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   41.378873] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   41.395008] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   41.678436] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   41.695324] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   41.712523] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   41.728852] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   41.762198] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   41.779080] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   41.828861] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   41.845109] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   41.912531] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   41.928495] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   42.028587] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   42.161541] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   42.195086] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   42.212996] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   42.295411] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   42.311977] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   42.328985] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   42.345480] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   42.362881] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   42.512272] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   42.528617] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   42.545072] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   42.563734] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   42.696935] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   42.713397] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   42.912999] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   42.928797] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   43.029797] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   43.096049] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   43.113545] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   43.129998] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   43.146165] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   43.179836] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   43.197273] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   43.213262] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   43.229537] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   43.696810] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   43.713148] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   43.897391] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   43.913898] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   43.931261] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   43.947974] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   43.964507] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   43.981602] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   43.998313] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   44.014882] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   44.031785] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   44.198260] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   44.214865] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   44.298016] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   44.314667] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   44.331097] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   44.348622] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   44.498173] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   44.514287] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   44.530495] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   44.548642] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   44.698344] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   44.714774] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   45.032109] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   45.098823] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   45.114525] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   45.198341] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   45.214430] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   45.431740] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   45.447372] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   45.463843] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   45.480471] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   45.697081] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   45.713708] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   46.030602] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   46.047098] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   46.065937] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   46.133987] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   46.148948] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   46.165893] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   46.183123] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   46.199075] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   46.215865] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   46.232314] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   46.617122] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   46.632865] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   46.648762] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   46.666704] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   46.682919] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   46.699474] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   46.716167] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   47.012028] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   47.024092] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   47.034078] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   47.049970] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   47.066135] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   47.082920] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   47.099072] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   47.182988] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   47.198745] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   47.242217] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   47.250499] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   47.265380] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   47.375704] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   47.385439] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   47.398804] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   47.416882] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   47.433308] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   47.683677] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   47.699912] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   47.716566] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   47.903106] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   47.974248] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   47.983898] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   47.999816] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   48.016718] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   48.033495] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   48.183974] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   48.199993] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   48.217628] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   48.234044] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   48.250552] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   48.267053] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   48.552246] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   48.565969] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   48.582230] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   48.682627] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   48.699206] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.024987] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.150257] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.166818] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.183488] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.200365] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.216809] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.233495] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.250064] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.350861] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.366571] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.383379] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.400096] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.416905] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.480981] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.491378] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   49.499702] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.517608] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.534227] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.550863] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.567627] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.593946] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.605169] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   49.617491] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.633664] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.651062] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.667705] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.684540] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.701280] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.784763] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.801159] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.817556] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.834223] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.851017] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.871859] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.884278] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   49.900830] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.917735] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   49.934326] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   49.986678] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.001772] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.017883] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.034583] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.051305] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.161340] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.170171] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   50.184097] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.201146] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.217726] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.256110] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.267738] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   50.284324] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.300860] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.317316] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.400874] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.417468] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.435101] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.451984] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.468817] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.485458] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.501978] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.518793] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.535383] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.552424] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.568608] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.585381] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.601971] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   50.685204] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   50.701902] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   51.022814] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   51.119757] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   51.135396] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   51.152095] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   51.185386] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   51.201793] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   51.685702] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   51.701399] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   51.720692] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   51.734366] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   51.751291] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   51.834042] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   51.851130] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   51.867642] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   51.884707] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   51.901087] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   51.925082] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   51.935335] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   51.950932] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   51.968195] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   51.984520] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.024112] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.084373] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.100839] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.117398] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.134234] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.150777] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.185297] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.201646] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.275468] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.284297] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   52.301104] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.318430] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.335423] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.406323] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.419091] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   52.434903] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.451496] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.468689] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.520557] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.535131] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.550935] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.568417] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.585093] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.601045] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.619812] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.637028] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.652975] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.685774] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.702782] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.743161] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.753030] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   52.769421] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.786864] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.802004] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.819301] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.837281] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.851818] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.869074] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   52.885165] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   52.901704] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.024695] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.034740] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   53.052785] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.069785] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.086648] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.103438] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.120068] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.135326] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.152910] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.168894] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.185282] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.202492] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.218699] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.272430] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.286321] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   53.303099] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.318493] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.335606] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.351689] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.368810] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.385058] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.402722] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.418549] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.435541] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.451704] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.468161] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.484099] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.501167] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.517322] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.534090] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.550639] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.567334] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.584040] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.601698] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.617414] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.634119] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.650805] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.667416] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.684271] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.700803] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.717760] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.805149] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.818015] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   53.834001] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.850818] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.867391] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.884527] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.901304] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.917249] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.934051] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.950743] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   53.967402] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   53.984264] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.022655] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.072112] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.084376] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   54.101880] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.118598] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.134396] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.179311] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.187467] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   54.201520] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.218420] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.242158] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.250525] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   54.268237] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.307764] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.314979] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   54.318753] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   54.320004] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   54.335351] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.352485] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.368441] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.385586] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.400669] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.403440] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   54.417455] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.434832] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.452207] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.468423] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.485587] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.502419] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.518482] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.535065] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.551384] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.568439] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.584891] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.617650] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.634891] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.651507] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.668402] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.685359] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.701757] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.719147] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.734950] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.751565] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.768404] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.785005] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.801527] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.818438] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.834874] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.851802] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.868246] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.884899] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.901616] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.918373] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.934937] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.951696] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   54.968233] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   54.984969] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.001767] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.018496] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.035001] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.051707] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.068338] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.085047] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.101500] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.118233] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.135364] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.151582] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.168285] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.185775] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.201507] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.218184] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.234718] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.261068] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.451491] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.512227] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.575701] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.640267] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.685771] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.702519] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.718290] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.768970] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.807388] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.835896] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   55.896617] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   55.961943] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   56.024698] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   56.035509] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   56.151885] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   56.185406] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   56.201590] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   56.280295] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   56.472378] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   56.685847] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   56.702498] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   56.768406] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   56.858065] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   56.930286] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   57.002388] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   57.022777] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   57.056310] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   57.121488] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   57.185679] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   57.202442] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   57.252761] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   57.319177] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   57.385702] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   57.429904] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   57.593093] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   57.685484] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   57.702525] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   57.719406] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   57.735907] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   57.886495] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   58.018431] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   58.036052] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   58.185760] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   58.202788] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   58.307821] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   58.334658] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   58.418056] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   58.451307] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   58.467877] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   58.552612] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   58.595886] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   58.634591] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   58.684658] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   58.701494] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   58.718245] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   58.751330] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   58.784659] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   58.852322] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   58.913604] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   58.976766] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   59.023503] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   59.045062] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   59.108004] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   59.175210] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   59.186088] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   59.202682] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   59.242507] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   59.291645] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   59.363926] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   59.421823] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   59.487370] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   59.617951] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   59.658438] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   59.685289] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   59.701557] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   59.742064] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   59.818492] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   59.868835] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   59.938547] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   60.002506] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   60.024450] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   60.076173] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   60.138053] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   60.186347] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   60.202375] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   60.269276] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   60.392280] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   60.442709] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   60.619651] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   60.685900] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   60.702325] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   60.839473] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   60.967712] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   61.023614] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.035478] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   61.089037] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.161443] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   61.185086] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.202190] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   61.224287] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.275642] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   61.337170] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.410897] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   61.468929] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.509864] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   61.535135] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.551734] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   61.585723] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.610809] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   61.676257] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.685214] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   61.702095] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.735994] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   61.855091] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   61.929762] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   61.967969] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   62.001661] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   62.025304] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   62.052213] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   62.112063] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   62.184503] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   62.202708] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   62.218622] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   62.239329] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   62.259692] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   62.319078] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   62.353491] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   62.369317] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   62.427266] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   62.517788] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   62.537248] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   62.568317] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   62.585161] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   62.621073] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   62.686113] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   62.701676] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   62.751648] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   62.824268] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   62.888812] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   62.943207] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   63.006043] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   63.023551] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   63.074799] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   63.138959] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   63.186474] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   63.201848] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   63.271012] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   63.336526] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   63.385030] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   63.456790] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   63.504844] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   63.583985] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   63.644614] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   63.686642] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   63.701055] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   63.719636] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   63.840161] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   63.908878] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   63.961960] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   64.025111] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   64.038548] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   64.102817] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   64.175429] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   64.186629] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   64.200879] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   64.226056] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   64.284992] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   64.363409] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   64.419159] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   64.472265] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   64.484668] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   64.687681] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   64.700074] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   64.717932] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   64.859980] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   64.939476] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   65.025788] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   65.069417] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   65.185497] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   65.199916] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   65.217184] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   65.239518] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   65.257679] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   65.323882] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   65.373038] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   65.437142] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   65.451853] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   65.503218] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   65.562898] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   65.638102] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   65.675441] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   65.685648] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   65.701682] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   65.719160] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   65.770284] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   65.818713] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   65.891145] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   65.949772] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   65.988522] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   66.024797] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   66.033910] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   66.087090] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   66.133318] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   66.149902] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   66.184128] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   66.200274] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   66.216941] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   66.277295] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   66.334485] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   66.396057] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   66.407611] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   66.469691] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   66.533287] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   66.587781] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   66.657818] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   66.686151] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   66.701343] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   66.724430] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   66.797140] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   66.855764] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   66.904796] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   66.985001] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   67.025400] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   67.046177] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   67.105967] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   67.179641] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   67.186923] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   67.200962] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   67.228131] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   67.296290] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   67.358045] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   67.369529] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   67.435102] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   67.545275] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   67.618956] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   67.679543] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   67.687658] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   67.701273] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   67.818528] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   67.879998] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   67.927334] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   68.002433] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   68.025896] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   68.124041] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   68.160708] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   68.186657] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   68.201208] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   68.258243] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   68.320237] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   68.454778] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   68.570749] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   68.589042] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   68.684506] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   68.700966] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   68.718125] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   68.778021] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   68.840281] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   68.968165] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   69.004270] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   69.025227] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   69.172412] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   69.186717] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   69.200842] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   69.284948] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   69.688090] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   69.701317] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   69.884841] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   69.950449] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   70.017609] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   70.033472] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   70.088409] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   70.104305] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   70.185423] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   70.201669] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   70.552535] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   70.686670] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   70.701586] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   71.026542] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   71.152029] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   71.186649] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   71.200241] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   71.686766] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   71.701651] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   71.751449] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   72.025688] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   72.185662] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   72.201506] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   72.219299] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   72.687437] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   72.700858] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   72.804605] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   73.026026] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   73.186929] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   73.201167] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   73.403912] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   73.686556] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   73.701736] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   74.004506] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   74.025615] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   74.184414] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   74.201212] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   74.605180] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   74.685777] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   74.701507] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   75.026063] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   75.187125] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   75.201229] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   75.219421] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   75.686429] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   75.702178] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   75.805276] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   76.025997] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   76.186834] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   76.202196] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   76.405666] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   76.686275] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   76.702278] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   77.006167] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   77.025828] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   77.186241] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   77.202928] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   77.478084] i915 0000:00:02.0: [drm:asle_work [i915]] bclp = 0x800000ff
[   77.478661] i915 0000:00:02.0: [drm:asle_work [i915]] opregion backlight request ignored
[   77.562196] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   77.607363] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   77.607318] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_2
[   77.607639] i915 0000:00:02.0: [drm:intel_audio_component_get_power [i915]] restored AUD_FREQ_CNTRL to 0x8010
[   77.622376] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling PW_2
[   77.685506] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   77.696719] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   77.991405] usb 3-6: new high-speed USB device number 6 using xhci_hcd
[   78.022616] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   78.134584] usb 3-6: New USB device found, idVendor=17ef, idProduct=a392, bcdDevice= d.24
[   78.134626] usb 3-6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   78.134640] usb 3-6: Product: USB2.0 Hub
[   78.134652] usb 3-6: Manufacturer: VIA Labs, Inc.
[   78.137947] hub 3-6:1.0: USB hub found
[   78.138225] hub 3-6:1.0: 4 ports detected
[   78.159643] thinkpad_acpi: undocked from hotplug port replicator
[   78.187404] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   78.198591] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   78.214231] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:566]
[   78.262803] usb 2-3: new SuperSpeed Plus Gen 2x1 USB device number 2 using xhci_hcd
[   78.282215] usb 2-3: New USB device found, idVendor=17ef, idProduct=a391, bcdDevice= d.24
[   78.282225] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   78.282228] usb 2-3: Product: USB3.1 Hub
[   78.282230] usb 2-3: Manufacturer: VIA Labs, Inc.
[   78.283146] hub 2-3:1.0: USB hub found
[   78.283220] hub 2-3:1.0: 4 ports detected
[   78.609082] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008a88, pins 0x00000800, long 0x00000800
[   78.609476] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - long
[   78.609802] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] Received HPD interrupt on PIN 11 - cnt: 10
[   78.610255] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - long
[   78.610749] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_2
[   78.611318] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling AUX_USBC3
[   78.612012] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port F/TC#3: TC port mode reset (disconnected -> dp-alt) pin assignment: D max lanes: 2
[   78.612791] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  1) 14
[   78.613117] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.613926] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.614252] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.615066] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.615097] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.615135] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.615225] i915 0000:00:02.0: [drm:i915_hotplug_work_func [i915]] running encoder hotplug functions
[   78.615832] i915 0000:00:02.0: [drm:i915_hotplug_work_func [i915]] Connector DP-3 (pin 11) received hotplug event. (retry 0)
[   78.616290] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[   78.616941] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  1) 14
[   78.617234] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.618054] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.618378] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.619220] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.619258] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.619301] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.620223] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.621041] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  8) 14 1e 80 55 02 00 00 00
[   78.621238] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][DPRX] LTTPR common capabilities: 14 1e 80 55 02 00 00 00
[   78.621820] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) 55
[   78.624259] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) aa
[   78.624828] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.625302] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0020 AUX -> (ret=  3) 03 03 00
[   78.625338] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][LTTPR 1] PHY capabilities: 03 03 00
[   78.626960] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.627808] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf003d AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   78.627847] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: LTTPR 1: OUI 00-00-00 dev-ID  HW-rev 0.0 SW-rev 0.0 quirks 0x0000
[   78.629128] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.629992] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.630574] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.631457] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.631498] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.631549] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.633158] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.634101] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 53 22 10 05 05
[   78.634318] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DP branch: OUI 90-cc-24 dev-ID SYNAS" HW-rev 1.0 SW-rev 5.5 quirks 0x0068
[   78.634889] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.635304] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02210 AUX -> (ret=  1) f8
[   78.635891] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.636272] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00200 AUX -> (ret=  1) 01
[   78.636827] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.638607] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00080 AUX -> (ret= 12) 08 00 00 00 00 00 00 00 00 00 00 00
[   78.638638] i915 0000:00:02.0: [drm:drm_dp_read_downstream_info [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD DFP: 08 00 00 00 00 00 00 00 00 00 00 00
[   78.639205] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.639620] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00021 AUX -> (ret=  1) 01
[   78.639654] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [ENCODER:544:DDI TC3/PHY TC3] MST support: port: yes, sink: MST, modparam: yes -> enable: MST
[   78.640479] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.640854] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00300 AUX -> (ret=  3) 00 00 00
[   78.641276] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00300 AUX <- (ret=  3) 00 aa 01
[   78.641835] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.642387] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0000 AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   78.642906] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.643296] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe000d AUX -> (ret=  3) 00 00 00
[   78.643819] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.644244] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0020 AUX -> (ret=  5) 00 00 00 00 00
[   78.644771] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.645142] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0028 AUX -> (ret=  2) 00 00
[   78.645661] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.646017] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0030 AUX -> (ret=  1) 00
[   78.646527] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.646896] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00070 AUX -> (ret=  2) 00 00
[   78.647595] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.648440] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00060 AUX -> (ret= 16) 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   78.648461] i915 0000:00:02.0: [drm:intel_dp_read_dsc_dpcd [i915]] DSC DPCD: 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   78.649200] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.649618] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00090 AUX -> (ret=  1) 0f
[   78.649643] i915 0000:00:02.0: [drm:intel_dp_get_dsc_sink_cap [i915]] FEC CAPABILITY: f
[   78.650566] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.651184] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x000a0 AUX -> (ret=  3) 09 1e 10
[   78.652244] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.652627] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02214 AUX -> (ret=  1) 00
[   78.656490] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00107 AUX <- (ret=  2) 00 01
[   78.657033] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00100 AUX <- (ret=  2) 1e 82
[   78.658641] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.659423] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.659931] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.660720] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.660731] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.660746] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.660759] i915 0000:00:02.0: [drm:drm_dp_mst_topology_mgr_set_mst [drm_display_helper]] mstb 0000000051429a7b (2)
[   78.661441] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00111 AUX <- (ret=  1) 07
[   78.661776] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x002c0 AUX <- (ret=  1) 01
[   78.662149] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x001c0 AUX <- (ret=  3) 00 00 3f
[   78.662636] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX -> (ret=  1) 00
[   78.662965] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x002c0 AUX -> (ret=  1) 01
[   78.662975] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   78.662988] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   78.663097] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000, 810000
[   78.663201] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000, 810000
[   78.663303] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   78.663316] i915 0000:00:02.0: [drm:drm_dp_mst_link_probe_work [drm_display_helper]] Clearing payload ID table
[   78.663329] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=1 seqno=0 state=QUEUED path_msg=1 dst=00
[   78.663342] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=CLEAR_PAYLOAD_ID_TABLE contents:
[   78.663351] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		???
[   78.663761] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret=  5) 16 c2 cf 14 ac
[   78.696939] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:509]
[   78.713179] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   78.719587] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   78.721011] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   78.721106] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   78.722251] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 c3 c6 14 00 9c 00 00 00 00 00 00 00 00 00 00
[   78.722317] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   78.722391] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   78.722495] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=1 seqno=0 state=QUEUED path_msg=0 dst=00
[   78.722610] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=LINK_ADDRESS
[   78.722881] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   78.723360] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret=  5) 10 02 cb 01 d5
[   78.723914] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   78.723989] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   78.728936] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   78.729492] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   78.730038] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   78.730856] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   78.730929] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   78.731932] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 01 00 00 00 00 00 00 00 00 00 00 00 00
[   78.731994] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   78.732688] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 00 00 00 00 04 90 c0 01 00 00 00 00 00 00 00 00
[   78.733365] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 32 40 12 00 40
[   78.733413] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   78.733860] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   78.734309] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   78.734352] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   78.770044] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   78.770853] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   78.771754] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   78.772872] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   78.772969] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   78.774032] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 25 45 00 00 00 00 00 00 00 00 00 00 00 00 00
[   78.774091] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   78.774779] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 00 00 11 03 00 00 00 00 00 00 00 00 00 00 00 00
[   78.775317] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret=  8) 00 00 00 00 00 00 00 95
[   78.775372] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   78.775455] i915 0000:00:02.0: [drm:drm_dp_send_link_address [drm_display_helper]] link address reply: 4
[   78.775535] i915 0000:00:02.0: [drm:drm_dp_send_link_address [drm_display_helper]] port 0: input 1, pdt: 1, pn: 0, dpcd_rev: 00, mcs: 1, ddps: 1, ldps 0, sdp 0/0
[   78.775578] i915 0000:00:02.0: [drm:drm_dp_send_link_address [drm_display_helper]] port 1: input 0, pdt: 0, pn: 1, dpcd_rev: 00, mcs: 0, ddps: 0, ldps 0, sdp 0/0
[   78.775615] i915 0000:00:02.0: [drm:drm_dp_send_link_address [drm_display_helper]] port 2: input 0, pdt: 3, pn: 2, dpcd_rev: 12, mcs: 0, ddps: 1, ldps 0, sdp 1/1
[   78.775650] i915 0000:00:02.0: [drm:drm_dp_send_link_address [drm_display_helper]] port 3: input 0, pdt: 0, pn: 3, dpcd_rev: 00, mcs: 0, ddps: 0, ldps 0, sdp 0/0
[   78.775822] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   78.776462] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00030 AUX <- (ret= 16) 08 43 ed a4 b7 49 33 45 93 11 87 e5 45 6c b7 10
[   78.776509] i915 0000:00:02.0: [drm:drm_dp_mst_add_port [drm_display_helper]] mstb 0000000051429a7b (2)
[   78.776552] i915 0000:00:02.0: [drm:drm_dp_send_link_address [drm_display_helper]] port 00000000d2de1688 (2)
[   78.776586] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000d2de1688 (1)
[   78.776627] i915 0000:00:02.0: [drm:drm_dp_mst_add_port [drm_display_helper]] mstb 0000000051429a7b (3)
[   78.776665] i915 0000:00:02.0: [drm:drm_dp_send_link_address [drm_display_helper]] port 0000000039cd68e6 (2)
[   78.776701] i915 0000:00:02.0: [drm:mst_topology_add_connector [i915]] port 0000000039cd68e6 (2)
[   78.776879] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   78.776918] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   78.777596] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 53 22 10 05 05
[   78.777635] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DP branch: OUI 90-cc-24 dev-ID SYNAS" HW-rev 1.0 SW-rev 5.5 quirks 0x0068
[   78.778026] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00060 AUX -> (ret=  1) 01
[   78.778909] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.779785] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.779814] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.779851] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.780719] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.781609] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.781643] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.781679] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.782251] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 53 22 10 05 05
[   78.782287] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DP branch: OUI 90-cc-24 dev-ID SYNAS" HW-rev 1.0 SW-rev 5.5 quirks 0x0068
[   78.782929] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00060 AUX -> (ret= 16) 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   78.782962] i915 0000:00:02.0: [drm:intel_dp_read_dsc_dpcd [i915]] DSC DPCD: 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   78.783728] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00090 AUX -> (ret=  1) 0f
[   78.783772] i915 0000:00:02.0: [drm:intel_dp_get_dsc_sink_cap [i915]] FEC CAPABILITY: f
[   78.784486] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x000a0 AUX -> (ret=  3) 09 1e 10
[   78.785365] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.786272] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.786318] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.786371] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.786966] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 53 22 10 05 05
[   78.787009] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DP branch: OUI 90-cc-24 dev-ID SYNAS" HW-rev 1.0 SW-rev 5.5 quirks 0x0068
[   78.787053] i915 0000:00:02.0: [drm:mst_topology_add_connector [i915]] [CONNECTOR:509:DP-5] DSC HBLANK expansion quirk detected
[   78.787473] i915 0000:00:02.0: [drm:drm_sysfs_connector_add [drm]] [CONNECTOR:509:DP-5] adding connector to sysfs
[   78.787768] i915 0000:00:02.0: [drm:drm_dp_mst_connector_late_register [drm_display_helper]] registering DPMST remote bus for card0-DP-5
[   78.788105] i915 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event [drm]] [CONNECTOR:509:DP-5] generating connector hotplug event
[   78.788226] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 0000000039cd68e6 (1)
[   78.788258] i915 0000:00:02.0: [drm:drm_dp_mst_add_port [drm_display_helper]] mstb 0000000051429a7b (4)
[   78.788284] i915 0000:00:02.0: [drm:drm_dp_send_link_address [drm_display_helper]] port 00000000b4779840 (2)
[   78.788310] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=2 seqno=0 state=QUEUED path_msg=1 dst=00
[   78.788335] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=ENUM_PATH_RESOURCES contents:
[   78.788357] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2
[   78.788826] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret=  6) 10 43 c7 10 20 14
[   78.791109] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   78.791323] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   78.791538] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   78.793573] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   78.793627] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   78.794625] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 47 c0 10 20 05 00 05 00 cc 00 00 00 00 00 00
[   78.794715] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   78.794780] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   78.795266] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   78.795272] i915 0000:00:02.0: [drm:drm_dp_send_enum_path_resources [drm_display_helper]] enum path resources 2: 1280 1280
[   78.795811] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   78.795890] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   78.796606] i915 0000:00:02.0: [drm:mst_topology_add_connector [i915]] port 00000000b4779840 (2)
[   78.798827] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 53 22 10 05 05
[   78.798917] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DP branch: OUI 90-cc-24 dev-ID SYNAS" HW-rev 1.0 SW-rev 5.5 quirks 0x0068
[   78.799595] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00060 AUX -> (ret=  1) 01
[   78.800843] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.801745] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.801791] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.801840] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.802725] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.803627] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.803683] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.803728] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.804691] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 53 22 10 05 05
[   78.804748] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DP branch: OUI 90-cc-24 dev-ID SYNAS" HW-rev 1.0 SW-rev 5.5 quirks 0x0068
[   78.805437] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00060 AUX -> (ret= 16) 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   78.805483] i915 0000:00:02.0: [drm:intel_dp_read_dsc_dpcd [i915]] DSC DPCD: 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   78.806442] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00090 AUX -> (ret=  1) 0f
[   78.806461] i915 0000:00:02.0: [drm:intel_dp_get_dsc_sink_cap [i915]] FEC CAPABILITY: f
[   78.806656] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1]
[   78.806677] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:508:eDP-1]
[   78.806815] i915 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turning VDD on
[   78.806939] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x000a0 AUX -> (ret=  3) 09 1e 10
[   78.807285] i915 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x0000006f
[   78.807831] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.807755] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   78.808190] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[   78.808713] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.808747] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.808789] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.808626] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[   78.809078] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[   78.809249] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   78.809355] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 53 22 10 05 05
[   78.809391] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DP branch: OUI 90-cc-24 dev-ID SYNAS" HW-rev 1.0 SW-rev 5.5 quirks 0x0068
[   78.809395] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[   78.809430] i915 0000:00:02.0: [drm:mst_topology_add_connector [i915]] [CONNECTOR:567:DP-6] DSC HBLANK expansion quirk detected
[   78.809537] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[   78.809766] i915 0000:00:02.0: [drm:drm_sysfs_connector_add [drm]] [CONNECTOR:567:DP-6] adding connector to sysfs
[   78.809691] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] VRR capable: yes
[   78.810010] i915 0000:00:02.0: [drm:drm_dp_mst_connector_late_register [drm_display_helper]] registering DPMST remote bus for card0-DP-6
[   78.810090] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
[   78.810189] i915 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event [drm]] [CONNECTOR:567:DP-6] generating connector hotplug event
[   78.810235] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000b4779840 (1)
[   78.810200] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
[   78.810252] i915 0000:00:02.0: [drm:drm_dp_mst_add_port [drm_display_helper]] mstb 0000000051429a7b (5)
[   78.810264] i915 0000:00:02.0: [drm:drm_dp_send_link_address [drm_display_helper]] port 000000004b112a7e (2)
[   78.810276] i915 0000:00:02.0: [drm:mst_topology_add_connector [i915]] port 000000004b112a7e (2)
[   78.810498] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x03000 AUX -> (ret=  1) 00
[   78.810541] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] probed modes:
[   78.810558] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   78.810816] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1]
[   78.810831] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[   78.810939] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 53 22 10 05 05
[   78.810990] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DP branch: OUI 90-cc-24 dev-ID SYNAS" HW-rev 1.0 SW-rev 5.5 quirks 0x0068
[   78.811956] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00060 AUX -> (ret=  1) 01
[   78.812899] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.813822] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.813855] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.813894] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.814856] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.815190] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1] disconnected
[   78.815360] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1]
[   78.815390] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[   78.815794] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.815827] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.815858] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.815740] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port D/TC#1: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[   78.816112] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1] disconnected
[   78.816235] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2]
[   78.816254] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[   78.816418] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 53 22 10 05 05
[   78.816440] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DP branch: OUI 90-cc-24 dev-ID SYNAS" HW-rev 1.0 SW-rev 5.5 quirks 0x0068
[   78.816511] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port E/TC#2: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[   78.816757] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2] disconnected
[   78.816865] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3]
[   78.816890] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[   78.817092] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00060 AUX -> (ret= 16) 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   78.817120] i915 0000:00:02.0: [drm:intel_dp_read_dsc_dpcd [i915]] DSC DPCD: 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   78.818174] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  1) 14
[   78.818658] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00090 AUX -> (ret=  1) 0f
[   78.818848] i915 0000:00:02.0: [drm:intel_dp_get_dsc_sink_cap [i915]] FEC CAPABILITY: f
[   78.819505] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.819903] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x000a0 AUX -> (ret=  3) 09 1e 10
[   78.820008] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   78.822312] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   78.822682] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.822710] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.822738] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.822677] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   78.823321] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  8) 14 1e 80 aa 02 00 00 00
[   78.823345] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][DPRX] LTTPR common capabilities: 14 1e 80 aa 02 00 00 00
[   78.824927] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.825318] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   78.825352] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   78.826446] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) 55
[   78.827208] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.827243] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.827276] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.827691] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) aa
[   78.828223] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 53 22 10 05 05
[   78.828252] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DP branch: OUI 90-cc-24 dev-ID SYNAS" HW-rev 1.0 SW-rev 5.5 quirks 0x0068
[   78.828284] i915 0000:00:02.0: [drm:mst_topology_add_connector [i915]] [CONNECTOR:570:DP-7] DSC HBLANK expansion quirk detected
[   78.830741] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0020 AUX -> (ret=  3) 03 03 00
[   78.830723] i915 0000:00:02.0: [drm:drm_sysfs_connector_add [drm]] [CONNECTOR:570:DP-7] adding connector to sysfs
[   78.830756] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][LTTPR 1] PHY capabilities: 03 03 00
[   78.830847] i915 0000:00:02.0: [drm:drm_dp_mst_connector_late_register [drm_display_helper]] registering DPMST remote bus for card0-DP-7
[   78.831426] i915 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event [drm]] [CONNECTOR:570:DP-7] generating connector hotplug event
[   78.831490] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf003d AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   78.831508] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: LTTPR 1: OUI 00-00-00 dev-ID  HW-rev 0.0 SW-rev 0.0 quirks 0x0000
[   78.831678] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 000000004b112a7e (1)
[   78.831708] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   78.831732] i915 0000:00:02.0: [drm:drm_sysfs_hotplug_event [drm]] generating hotplug event
[   78.831799] i915 0000:00:02.0: [drm:drm_client_hotplug [drm]] fbdev: ret=0
[   78.832316] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.834419] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.834433] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.834447] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.834964] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 53 22 10 05 05
[   78.834977] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DP branch: OUI 90-cc-24 dev-ID SYNAS" HW-rev 1.0 SW-rev 5.5 quirks 0x0068
[   78.835315] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02210 AUX -> (ret=  1) f8
[   78.835657] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00200 AUX -> (ret=  1) 01
[   78.836182] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00080 AUX -> (ret= 12) 08 00 00 00 00 00 00 00 00 00 00 00
[   78.836199] i915 0000:00:02.0: [drm:drm_dp_read_downstream_info [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD DFP: 08 00 00 00 00 00 00 00 00 00 00 00
[   78.836531] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00021 AUX -> (ret=  1) 01
[   78.836546] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [ENCODER:544:DDI TC3/PHY TC3] MST support: port: yes, sink: MST, modparam: yes -> enable: MST
[   78.837012] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00111 AUX -> (ret=  1) 07
[   78.837533] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0000 AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   78.837902] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe000d AUX -> (ret=  3) 00 00 00
[   78.838298] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0020 AUX -> (ret=  5) 00 00 00 00 00
[   78.838647] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0028 AUX -> (ret=  2) 00 00
[   78.838977] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0030 AUX -> (ret=  1) 00
[   78.839333] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00070 AUX -> (ret=  2) 00 00
[   78.839914] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00060 AUX -> (ret= 16) 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   78.839923] i915 0000:00:02.0: [drm:intel_dp_read_dsc_dpcd [i915]] DSC DPCD: 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   78.840344] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00090 AUX -> (ret=  1) 0f
[   78.840355] i915 0000:00:02.0: [drm:intel_dp_get_dsc_sink_cap [i915]] FEC CAPABILITY: f
[   78.840790] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x000a0 AUX -> (ret=  3) 09 1e 10
[   78.841119] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02214 AUX -> (ret=  1) 00
[   78.841129] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   78.841208] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000, 810000
[   78.841277] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000, 810000
[   78.841344] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3] disconnected
[   78.841399] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4]
[   78.841407] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[   78.841523] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port G/TC#4: TC port mode reset (disconnected -> tbt-alt) pin assignment: - max lanes: 4
[   78.841625] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4] disconnected
[   78.841659] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:509:DP-5]
[   78.841667] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 0000000039cd68e6 (2)
[   78.841677] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 0000000039cd68e6 (1)
[   78.841686] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:509:DP-5] status updated from unknown to disconnected
[   78.841696] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:509:DP-5] disconnected
[   78.842186] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   78.842282] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   78.842367] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   78.842446] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   78.842562] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   78.842645] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   78.842725] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   78.842804] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   78.842929] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   78.843015] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   78.843101] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   78.843190] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   78.844441] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   78.844563] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   78.844679] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:572]
[   78.844711] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   78.844910] i915 0000:00:02.0: [drm:drm_sysfs_hotplug_event [drm]] generating hotplug event
[   78.844977] i915 0000:00:02.0: [drm:drm_client_hotplug [drm]] fbdev: ret=0
[   78.845223] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   78.845245] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   78.852930] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   78.853656] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1]
[   78.853670] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:508:eDP-1]
[   78.853800] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   78.853869] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[   78.853937] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[   78.854000] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[   78.854027] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   78.854049] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[   78.854070] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[   78.854092] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] VRR capable: yes
[   78.854162] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
[   78.854225] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
[   78.854480] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x03000 AUX -> (ret=  1) 00
[   78.854519] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] probed modes:
[   78.854529] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   78.854663] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1]
[   78.854671] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[   78.858803] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1] disconnected
[   78.858836] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1]
[   78.858843] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[   78.858968] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1] disconnected
[   78.858997] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2]
[   78.859004] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[   78.859107] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2] disconnected
[   78.859130] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3]
[   78.859135] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[   78.859512] usb 2-3.3: new SuperSpeed Plus Gen 2x1 USB device number 3 using xhci_hcd
[   78.859637] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  1) 14
[   78.860444] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.861285] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.861295] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.861308] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.861831] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  8) 14 1e 80 aa 02 00 00 00
[   78.861843] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][DPRX] LTTPR common capabilities: 14 1e 80 aa 02 00 00 00
[   78.862327] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) 55
[   78.862798] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) aa
[   78.863235] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0020 AUX -> (ret=  3) 03 03 00
[   78.863245] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][LTTPR 1] PHY capabilities: 03 03 00
[   78.863919] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf003d AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   78.863931] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: LTTPR 1: OUI 00-00-00 dev-ID  HW-rev 0.0 SW-rev 0.0 quirks 0x0000
[   78.864736] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.865575] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.865584] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.865595] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   78.866111] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 53 22 10 05 05
[   78.866120] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DP branch: OUI 90-cc-24 dev-ID SYNAS" HW-rev 1.0 SW-rev 5.5 quirks 0x0068
[   78.866442] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02210 AUX -> (ret=  1) f8
[   78.866770] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00200 AUX -> (ret=  1) 01
[   78.867283] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00080 AUX -> (ret= 12) 08 00 00 00 00 00 00 00 00 00 00 00
[   78.867290] i915 0000:00:02.0: [drm:drm_dp_read_downstream_info [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD DFP: 08 00 00 00 00 00 00 00 00 00 00 00
[   78.867619] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00021 AUX -> (ret=  1) 01
[   78.867627] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [ENCODER:544:DDI TC3/PHY TC3] MST support: port: yes, sink: MST, modparam: yes -> enable: MST
[   78.868056] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00111 AUX -> (ret=  1) 07
[   78.868564] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0000 AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   78.868931] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe000d AUX -> (ret=  3) 00 00 00
[   78.869322] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0020 AUX -> (ret=  5) 00 00 00 00 00
[   78.869665] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0028 AUX -> (ret=  2) 00 00
[   78.869988] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0030 AUX -> (ret=  1) 00
[   78.870325] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00070 AUX -> (ret=  2) 00 00
[   78.870901] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00060 AUX -> (ret= 16) 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   78.870908] i915 0000:00:02.0: [drm:intel_dp_read_dsc_dpcd [i915]] DSC DPCD: 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   78.871300] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00090 AUX -> (ret=  1) 0f
[   78.871309] i915 0000:00:02.0: [drm:intel_dp_get_dsc_sink_cap [i915]] FEC CAPABILITY: f
[   78.871733] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x000a0 AUX -> (ret=  3) 09 1e 10
[   78.872757] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02214 AUX -> (ret=  1) 00
[   78.872766] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   78.872839] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000, 810000
[   78.872902] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000, 810000
[   78.872959] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3] disconnected
[   78.872990] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4]
[   78.872997] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[   78.873095] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4] disconnected
[   78.873119] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:509:DP-5]
[   78.873127] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 0000000039cd68e6 (2)
[   78.873136] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 0000000039cd68e6 (1)
[   78.873144] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:509:DP-5] disconnected
[   78.873168] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:567:DP-6]
[   78.873174] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 00000000b4779840 (2)
[   78.873182] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000b4779840 (1)
[   78.873190] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:567:DP-6] status updated from unknown to connected
[   78.873198] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 00000000b4779840 (2)
[   78.873206] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   78.873215] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   78.873225] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   78.873232] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=1:
[   78.873239] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   78.873286] i915 0000:00:02.0: [drm:drm_sysfs_hotplug_event [drm]] generating hotplug event
[   78.873337] i915 0000:00:02.0: [drm:drm_client_hotplug [drm]] fbdev: ret=0
[   78.875706] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 00 10 50 01 da
[   78.879544] usb 2-3.3: New USB device found, idVendor=2109, idProduct=0820, bcdDevice= 0.30
[   78.879548] usb 2-3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   78.879550] usb 2-3.3: Product: USB3.0 Hub             
[   78.879552] usb 2-3.3: Manufacturer: VIA Labs, Inc.         
[   78.883680] hub 2-3.3:1.0: USB hub found
[   78.883772] hub 2-3.3:1.0: 4 ports detected
[   78.912806] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   78.913174] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   78.913474] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   78.913946] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   78.913960] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   78.914613] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 05 c3 22 02 01 00 db 00 00 00 00 00 00 00 00
[   78.914624] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   78.914636] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   78.914724] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   78.914742] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   78.914754] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   78.914766] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   78.914775] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=128:
[   78.914784] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   78.915019] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   78.915596] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 00 10 50 80 e0
[   78.916111] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   78.916152] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   78.956524] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   78.956885] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   78.957032] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   78.957487] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   78.957509] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   78.960099] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 02 80 00 ff ff ff ff ff ff 00 04 72
[   78.960136] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   78.960781] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 1a 07 3f 63 60 21 10 20 01 04 a5 3c 22 78 3f 53
[   78.961420] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) a5 a7 56 52 9c 26 11 50 54 b3 0c 00 71 4f 81 32
[   78.961445] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   78.962167] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   78.962575] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   78.962594] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   78.971435] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   78.971933] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   78.971951] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   78.972611] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 80 81 c0 81 00 95 00 b3 00 d1 c0 01 01
[   78.972628] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   78.973235] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 2a 44 80 a0 70 38 27 40 30 20 35 00 56 50 21 00
[   78.973869] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 1a 02 3a 80 18 71 38 2d 40 58 2c 45 00 56 c5
[   78.973897] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   78.974307] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   78.974723] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   78.974731] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.005684] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.006264] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.007619] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.008563] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   79.008635] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   79.011432] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 50 21 00 00 1e 00 00 00 fd 00 30 4b 54
[   79.011489] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.012151] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 54 12 01 0a 20 20 20 20 20 20 00 00 00 fc 00 43
[   79.013198] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 42 32 37 32 0a 20 20 20 20 20 20 20 01 e3 9e
[   79.013252] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.013332] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   79.013411] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.013454] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   79.013500] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   79.013537] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=128:
[   79.013572] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 80
[   79.013706] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.014258] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 80 10 50 80 bb
[   79.014784] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.014853] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.030743] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.030978] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.031277] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.031874] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   79.031909] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   79.032699] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 02 80 02 03 18 f1 4b 90 01 02 03 04
[   79.032793] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.033516] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 05 11 12 13 14 1f 23 09 07 07 83 01 00 00 02 3a
[   79.034238] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 80 18 71 38 2d 40 58 2c 45 00 56 50 21 00 00 dc
[   79.034299] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.034780] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.035276] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.035354] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.060653] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.061423] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.062079] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.062958] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   79.063027] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   79.064065] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 1e 01 1d 00 72 51 d0 1e 20 6e 28 55 00
[   79.064138] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.064818] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 56 50 21 00 00 1e 8c 0a d0 8a 20 e0 2d 10 10 3e
[   79.065476] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 96 00 56 50 21 00 00 18 2a 44 80 a0 70 38 27 8a
[   79.065517] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.065944] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.066375] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.066405] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.071395] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.072198] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   79.072256] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   79.073197] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 40 30 20 35 00 56 50 21 00 00 1a 00 00
[   79.073243] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.073911] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[   79.074539] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 00 00 00 00 00 00 00 00 00 00 00 00 00 97 ac
[   79.074576] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.074681] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   79.074761] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000b4779840 (1)
[   79.074806] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] Supported Monitor Refresh rate range is 48 Hz - 75 Hz
[   79.074938] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   79.074993] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.075050] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] ELD monitor CB272
[   79.075150] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] ELD size 28, SAD count 1
[   79.075425] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.075456] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.075808] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 60 74250 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   79.075933] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 50 74250 1920 2448 2492 2640 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   79.076048] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 60 74176 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   79.076159] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:567:DP-6] probed modes:
[   79.076191] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 75 174500 1920 1968 2000 2080 1080 1083 1088 1119 0x48 0x9
[   79.076219] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.076245] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.076270] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.076295] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 50 148500 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5
[   79.076320] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1680x1050": 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   79.076344] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x1024": 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   79.076369] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1440x900": 60 106500 1440 1520 1672 1904 900 903 909 934 0x40 0x6
[   79.076393] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x800": 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   79.076417] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1152x864": 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   79.076440] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   79.076463] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   79.076486] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   79.076508] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 50 74250 1280 1720 1760 1980 720 725 730 750 0x40 0x5
[   79.076530] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[   79.076552] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   79.076574] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   79.076597] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[   79.076619] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x576": 50 27000 720 732 796 864 576 581 586 625 0x40 0xa
[   79.076641] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x576": 50 27000 720 732 796 864 576 581 586 625 0x40 0xa
[   79.076664] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27027 720 736 798 858 480 489 495 525 0x40 0xa
[   79.076687] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27027 720 736 798 858 480 489 495 525 0x40 0xa
[   79.076709] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   79.076731] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   79.076753] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   79.076775] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[   79.076797] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[   79.076819] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   79.076841] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   79.076863] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x400": 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   79.077258] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:570:DP-7]
[   79.077283] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 000000004b112a7e (2)
[   79.077316] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 000000004b112a7e (1)
[   79.077346] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:570:DP-7] status updated from unknown to disconnected
[   79.077373] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:570:DP-7] disconnected
[   79.080232] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:575]
[   79.080405] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   79.080614] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.080754] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000dfda72aa
[   79.080879] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   79.080991] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   79.081097] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   79.081116] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   79.081224] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.081388] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   79.081549] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   79.081699] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   79.081832] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   79.081972] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   79.082105] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   79.082239] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   79.082367] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   79.082491] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   79.082613] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   79.082735] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   79.082849] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   79.082961] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   79.083071] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   79.083183] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   79.083288] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   79.083392] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   79.083490] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   79.083587] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   79.083685] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   79.083782] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   79.083880] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   79.083978] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   79.084066] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   79.084152] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   79.084239] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   79.084321] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   79.084401] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   79.084483] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   79.084516] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.084564] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   79.084607] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.084645] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   79.084737] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   79.084795] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.084831] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   79.084928] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   79.085032] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   79.085139] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   79.085269] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.085249] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   79.085282] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.085360] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.085507] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   79.085649] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.085792] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   79.085928] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   79.086009] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   79.086091] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   79.086172] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   79.086253] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   79.086347] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   79.086430] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.086511] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.086593] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   79.086675] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   79.086758] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   79.086838] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.086917] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.086996] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.087075] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   79.087151] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   79.087233] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   79.087316] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   79.087396] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   79.087476] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   79.087558] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   79.087657] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   79.087741] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   79.087823] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   79.087903] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   79.087985] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   79.088065] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   79.088144] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   79.088224] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   79.088307] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   79.088391] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   79.088473] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   79.088556] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   79.088637] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   79.088718] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   79.088801] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   79.088884] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   79.088965] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   79.089048] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   79.089130] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   79.089213] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   79.089297] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   79.089379] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   79.089460] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.089541] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.089621] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.089702] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   79.089784] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.089864] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   79.089944] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.090022] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.090103] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.090183] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   79.090263] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.090342] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.090423] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   79.090504] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   79.090584] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.090666] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.090746] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.090825] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.090905] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   79.090986] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.091067] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   79.091146] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   79.091231] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.091328] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   79.091430] usb 2-3.1: new SuperSpeed USB device number 4 using xhci_hcd
[   79.091427] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.091524] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.091619] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.091701] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.091782] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.091861] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.091940] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.092019] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.092096] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.092176] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.092257] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.092337] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.092418] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.092498] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.092580] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.092662] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.092743] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.092825] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.092906] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   79.092987] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[   79.093067] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[   79.093149] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[   79.093229] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[   79.093309] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [NOFB], visible: no
[   79.093388] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   79.093470] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   79.093552] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   79.093631] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   79.093711] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.093789] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.093870] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.093951] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   79.094031] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.094110] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   79.094192] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.094272] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.094353] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.094436] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   79.094517] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   79.094600] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   79.094681] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.094762] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.094842] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   79.094922] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   79.095002] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.095084] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.095164] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.095259] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.095362] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.095459] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.095555] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   79.095640] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   79.095718] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.095797] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   79.095878] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.095959] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.096040] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.096120] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.096201] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.096280] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.096359] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.096439] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   79.096518] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   79.096599] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   79.096679] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   79.096757] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.096836] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.096915] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.096993] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.097075] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.097155] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.097238] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.097321] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   79.097403] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   79.097483] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   79.097562] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   79.097642] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   79.097723] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   79.097810] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   79.097852] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   79.097939] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.098024] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.098101] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.098189] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   79.098295] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.098356] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000005a0687fc
[   79.098411] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   79.098466] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   79.098520] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   79.098528] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   79.098585] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.098671] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   79.098761] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   79.098862] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   79.098963] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   79.099060] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   79.099157] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   79.099253] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   79.099346] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   79.099446] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   79.099539] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   79.099632] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   79.099726] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   79.099807] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   79.099886] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   79.099966] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   79.100047] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   79.100127] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   79.100208] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   79.100289] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   79.100370] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   79.100452] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   79.100533] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   79.100612] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   79.100690] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   79.100768] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   79.100849] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   79.100930] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   79.101009] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   79.101088] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   79.101169] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   79.101251] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   79.101331] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   79.101410] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   79.101491] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   79.101572] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   79.101654] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   79.101732] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   79.101811] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.101891] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   79.101969] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.102050] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   79.102131] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   79.102211] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   79.102292] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   79.102373] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   79.102454] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   79.102540] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   79.102624] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.102707] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.102785] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   79.102854] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   79.102922] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   79.102990] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   79.103056] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   79.103121] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   79.103188] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   79.103294] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   79.103377] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   79.103478] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   79.103577] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   79.103674] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   79.103756] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   79.103838] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   79.103919] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   79.104001] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   79.104083] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   79.104166] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   79.104249] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   79.104330] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   79.104414] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   79.104494] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   79.104573] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   79.104654] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   79.104735] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   79.104817] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   79.104896] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   79.104975] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   79.105057] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   79.105140] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   79.105220] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   79.105300] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.105381] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.105462] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.105542] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   79.105622] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.105700] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   79.105779] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.105860] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.105941] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.106023] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   79.106103] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.106184] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.106263] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   79.106343] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   79.106423] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.106505] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.106587] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.106670] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.106751] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   79.106832] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.106913] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   79.106992] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   79.107073] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.107153] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   79.107270] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.107364] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.107472] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.107571] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.107672] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.107767] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.107858] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.107953] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.108047] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.108141] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.108234] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.108351] usb 2-3.1: New USB device found, idVendor=17ef, idProduct=a387, bcdDevice=31.03
[   79.108355] usb 2-3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=6
[   79.108356] usb 2-3.1: Product: USB-C Dock Ethernet
[   79.108366] usb 2-3.1: Manufacturer: Realtek
[   79.108374] usb 2-3.1: SerialNumber: 301000001
[   79.108328] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.108424] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.108519] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.108616] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.108765] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.108884] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.108998] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.109114] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   79.109220] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   79.109321] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.109425] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   79.109529] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   79.109633] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   79.109740] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   79.109843] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   79.109962] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.110081] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.110177] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.110274] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   79.110377] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.110544] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   79.110676] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.110792] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.110903] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.111011] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   79.111122] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   79.111241] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   79.111352] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.111478] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.111582] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   79.111680] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   79.111780] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.111881] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.111980] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.112081] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.112197] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.112324] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.112457] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   79.112566] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   79.112673] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.112773] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   79.112871] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.112970] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.113068] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.113166] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.113265] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.113362] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.113461] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.113561] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   79.113678] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   79.113805] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   79.113965] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   79.114114] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.114222] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.114327] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.114430] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.114533] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.114637] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.114758] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.114859] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   79.114895] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.114959] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   79.115011] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.115059] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   79.115142] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.115163] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   79.115279] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   79.115383] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   79.115495] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   79.115653] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.115655] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   79.115668] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.115743] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.115826] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.115912] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.116024] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   79.116124] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.116207] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.116293] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.116422] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   79.116531] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.116610] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000dfda72aa
[   79.116679] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   79.116747] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   79.116814] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   79.116825] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   79.116896] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.117002] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   79.117107] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   79.117209] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   79.117313] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   79.117417] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   79.117520] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   79.117626] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   79.117727] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   79.117830] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   79.117930] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   79.118036] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   79.118142] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   79.118241] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   79.118343] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   79.118444] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   79.118544] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   79.118644] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   79.118745] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   79.118848] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   79.118948] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   79.119045] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   79.119144] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   79.119262] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   79.119368] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   79.119471] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   79.119587] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   79.119692] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   79.119795] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   79.119905] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   79.120011] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   79.120127] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   79.120236] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   79.120336] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   79.120444] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   79.120543] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   79.120643] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   79.120741] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   79.120841] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.120938] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   79.121041] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.121146] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   79.121247] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   79.121348] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   79.121447] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   79.121546] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   79.121648] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   79.121764] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   79.121856] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.121944] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.122032] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   79.122118] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   79.122203] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   79.122288] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   79.122373] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   79.122460] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   79.122547] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   79.122633] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   79.122720] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   79.122827] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   79.122930] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   79.123034] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   79.123135] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   79.123248] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   79.123355] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   79.123455] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   79.123555] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   79.123659] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   79.123764] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   79.123874] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   79.123996] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   79.124104] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   79.124204] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   79.124303] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   79.124404] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   79.124505] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   79.124606] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   79.124708] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   79.124811] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   79.124912] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   79.125013] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   79.125113] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.125210] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.125309] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.125407] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   79.125508] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.125611] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   79.125713] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.125810] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.125910] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.126006] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   79.126104] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.126203] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.126302] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   79.126402] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   79.126513] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.126624] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.126750] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.126857] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.126958] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   79.127061] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.127168] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   79.127280] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   79.127382] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.127483] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   79.127584] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.127686] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.127789] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.127892] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.127994] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.128097] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.128204] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.128318] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.128420] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.128526] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.128629] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.128728] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.128829] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.128928] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.129028] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.129131] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.129233] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.129335] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.129437] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   79.129555] usbcore: registered new device driver r8152-cfgselector
[   79.129542] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   79.129672] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.129785] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   79.129898] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   79.130005] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   79.130108] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   79.130207] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   79.130304] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.130420] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.130522] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.130622] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   79.130721] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.130819] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   79.130927] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.131028] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.131128] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.131235] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   79.131342] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   79.131437] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   79.131532] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.131629] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.131721] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   79.131816] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   79.131910] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.132002] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.132096] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.132191] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.132287] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.132381] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.132474] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   79.132568] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   79.132664] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.132760] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   79.132854] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.132949] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.133042] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.133137] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.133235] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.133331] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.133426] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.133521] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   79.133614] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   79.133706] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   79.133797] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   79.133889] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.133983] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.134075] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.134167] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.134262] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.134357] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.134452] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.134545] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   79.134636] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   79.134726] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   79.134817] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   79.134911] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   79.135005] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   79.135103] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   79.135183] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   79.135322] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.135403] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000005a0687fc
[   79.135473] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   79.135540] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   79.135602] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   79.135612] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   79.135688] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.135793] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   79.135893] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   79.135988] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   79.136086] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   79.136091] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.136181] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   79.136203] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.136274] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   79.136370] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   79.136411] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.136468] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   79.136570] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   79.136677] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   79.136784] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   79.136886] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.136899] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.136891] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   79.136996] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   79.137092] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   79.137185] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   79.137280] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   79.137373] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   79.137464] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   79.137557] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   79.137652] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   79.137746] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   79.137841] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   79.137934] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   79.138028] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   79.138121] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   79.138216] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   79.138311] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   79.138406] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   79.138502] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   79.138596] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   79.138690] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   79.138784] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   79.138877] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   79.138972] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   79.139065] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   79.139158] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   79.139275] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   79.139373] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.139470] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   79.139564] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.139663] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   79.139761] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   79.139855] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   79.139950] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   79.140057] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   79.140209] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   79.140341] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   79.140422] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.140507] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.140608] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   79.140697] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   79.140790] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   79.140871] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   79.140949] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   79.141031] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   79.141110] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   79.141187] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   79.141279] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   79.141385] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   79.141484] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   79.141578] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   79.141673] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   79.141767] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   79.141862] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   79.141956] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   79.142052] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   79.142147] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   79.142244] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   79.142343] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   79.142442] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   79.142535] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   79.142627] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   79.142725] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   79.142820] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   79.142913] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   79.143006] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   79.143101] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   79.143231] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   79.143336] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   79.143440] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   79.143541] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.143639] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.143733] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.143828] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   79.143922] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.144016] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   79.144111] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.144206] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.144301] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.144398] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   79.144495] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.144589] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.144682] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   79.144778] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   79.144871] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.144965] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.145062] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.145158] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.145256] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   79.145352] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.145449] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   79.145546] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   79.145641] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.145737] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   79.145834] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.145931] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.146025] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.146121] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.146220] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.146317] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.146413] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.146509] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.146607] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.146703] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.146799] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.146893] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.146987] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.147083] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.147180] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.147302] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.147416] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.147521] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.147618] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   79.147715] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   79.147809] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.147904] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   79.148002] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   79.148099] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   79.148197] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   79.148294] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   79.148390] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.148486] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.148581] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.148675] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   79.148768] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.148861] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   79.148956] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.149052] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.149146] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.149243] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   79.149339] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   79.149434] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   79.149529] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.149623] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.149718] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   79.149813] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   79.149913] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.150094] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.150226] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.150344] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.150453] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.150555] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.150654] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   79.150752] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   79.150863] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.150969] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   79.151068] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.151165] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.151287] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.151391] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.151490] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.151588] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.151667] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.151748] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   79.151828] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   79.151910] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   79.151992] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   79.152072] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.152152] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.152233] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.152313] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.152395] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.152477] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.152558] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.152638] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   79.152720] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   79.152802] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   79.152882] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   79.152963] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   79.153042] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   79.153127] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   79.153198] i915 0000:00:02.0: [drm:drm_sysfs_hotplug_event [drm]] generating hotplug event
[   79.153265] i915 0000:00:02.0: [drm:drm_client_hotplug [drm]] fbdev: ret=0
[   79.155631] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:577]
[   79.156978] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:578]
[   79.157693] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1]
[   79.157707] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:508:eDP-1]
[   79.157829] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   79.157894] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[   79.157957] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[   79.158019] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[   79.158044] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   79.158065] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[   79.158086] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[   79.158107] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] VRR capable: yes
[   79.158174] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
[   79.158236] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
[   79.158492] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x03000 AUX -> (ret=  1) 00
[   79.158532] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] probed modes:
[   79.158543] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.158670] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1]
[   79.158678] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[   79.161515] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.161642] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.161762] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.162311] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.162323] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.162831] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1] disconnected
[   79.162874] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1]
[   79.162884] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[   79.163035] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1] disconnected
[   79.163073] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2]
[   79.163081] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[   79.163227] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2] disconnected
[   79.163257] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3]
[   79.163264] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[   79.163744] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  1) 14
[   79.164553] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.165361] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.165370] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.165380] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.165914] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  8) 14 1e 80 aa 02 00 00 00
[   79.165923] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][DPRX] LTTPR common capabilities: 14 1e 80 aa 02 00 00 00
[   79.166386] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) 55
[   79.166859] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) aa
[   79.167301] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0020 AUX -> (ret=  3) 03 03 00
[   79.167309] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][LTTPR 1] PHY capabilities: 03 03 00
[   79.167962] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf003d AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   79.167973] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: LTTPR 1: OUI 00-00-00 dev-ID  HW-rev 0.0 SW-rev 0.0 quirks 0x0000
[   79.168786] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.169594] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.169602] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.169612] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.170127] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 53 22 10 05 05
[   79.170135] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DP branch: OUI 90-cc-24 dev-ID SYNAS" HW-rev 1.0 SW-rev 5.5 quirks 0x0068
[   79.170465] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02210 AUX -> (ret=  1) f8
[   79.170795] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00200 AUX -> (ret=  1) 01
[   79.171311] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00080 AUX -> (ret= 12) 08 00 00 00 00 00 00 00 00 00 00 00
[   79.171320] i915 0000:00:02.0: [drm:drm_dp_read_downstream_info [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD DFP: 08 00 00 00 00 00 00 00 00 00 00 00
[   79.171663] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00021 AUX -> (ret=  1) 01
[   79.171671] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [ENCODER:544:DDI TC3/PHY TC3] MST support: port: yes, sink: MST, modparam: yes -> enable: MST
[   79.172107] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00111 AUX -> (ret=  1) 07
[   79.172619] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0000 AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   79.172981] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe000d AUX -> (ret=  3) 00 00 00
[   79.173373] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0020 AUX -> (ret=  5) 00 00 00 00 00
[   79.173717] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0028 AUX -> (ret=  2) 00 00
[   79.174043] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0030 AUX -> (ret=  1) 00
[   79.174385] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00070 AUX -> (ret=  2) 00 00
[   79.174963] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00060 AUX -> (ret= 16) 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   79.174970] i915 0000:00:02.0: [drm:intel_dp_read_dsc_dpcd [i915]] DSC DPCD: 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   79.175370] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00090 AUX -> (ret=  1) 0f
[   79.175381] i915 0000:00:02.0: [drm:intel_dp_get_dsc_sink_cap [i915]] FEC CAPABILITY: f
[   79.175806] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x000a0 AUX -> (ret=  3) 09 1e 10
[   79.176135] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02214 AUX -> (ret=  1) 00
[   79.176144] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   79.176222] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000, 810000
[   79.176282] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000, 810000
[   79.176342] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3] disconnected
[   79.176377] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4]
[   79.176385] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[   79.176504] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4] disconnected
[   79.176533] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:509:DP-5]
[   79.176541] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 0000000039cd68e6 (2)
[   79.176553] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 0000000039cd68e6 (1)
[   79.176562] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:509:DP-5] disconnected
[   79.176588] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:567:DP-6]
[   79.176600] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 00000000b4779840 (2)
[   79.176608] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000b4779840 (1)
[   79.176615] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 00000000b4779840 (2)
[   79.176623] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.176631] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   79.176639] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   79.176647] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=1:
[   79.176654] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   79.177188] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 00 10 50 01 da
[   79.188732] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.188891] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.189017] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.189539] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   79.189564] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   79.190268] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 05 c3 22 02 01 00 db 00 00 00 00 00 00 00 00
[   79.190290] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.190310] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.190408] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   79.190441] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.190453] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   79.190472] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   79.190488] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=128:
[   79.190505] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   79.190698] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.191239] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 00 10 50 80 e0
[   79.191733] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.191758] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.203871] r8152-cfgselector 2-3.1: reset SuperSpeed USB device number 4 using xhci_hcd
[   79.218089] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.218475] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.218938] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.219701] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   79.219744] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   79.220604] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 02 80 00 ff ff ff ff ff ff 00 04 72
[   79.220652] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.221315] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 1a 07 3f 63 60 21 10 20 01 04 a5 3c 22 78 3f 53
[   79.221995] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) a5 a7 56 52 9c 26 11 50 54 b3 0c 00 71 4f 81 32
[   79.222037] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.222474] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.222899] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.222922] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.227715] r8152 2-3.1:1.0 (unnamed net_device) (uninitialized): Invalid header when reading pass-thru MAC addr
[   79.239863] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.240139] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.240366] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.240920] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   79.240947] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   79.241687] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 80 81 c0 81 00 95 00 b3 00 d1 c0 01 01
[   79.241710] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.242337] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 2a 44 80 a0 70 38 27 40 30 20 35 00 56 50 21 00
[   79.243002] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 1a 02 3a 80 18 71 38 2d 40 58 2c 45 00 56 c5
[   79.243042] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.243492] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.243980] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.244017] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.251360] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.252069] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   79.252107] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   79.252990] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 50 21 00 00 1e 00 00 00 fd 00 30 4b 54
[   79.253050] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.253750] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 54 12 01 0a 20 20 20 20 20 20 00 00 00 fc 00 43
[   79.254417] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 42 32 37 32 0a 20 20 20 20 20 20 20 01 e3 9e
[   79.254466] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.254490] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.254609] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.254669] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   79.254723] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   79.254768] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=128:
[   79.254813] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 80
[   79.254940] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.255530] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 80 10 50 80 bb
[   79.256096] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.256131] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.273359] usbcore: registered new interface driver r8152
[   79.274017] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.274631] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.275309] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.276366] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   79.276446] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   79.277472] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 02 80 02 03 18 f1 4b 90 01 02 03 04
[   79.277523] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.278181] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 05 11 12 13 14 1f 23 09 07 07 83 01 00 00 02 3a
[   79.278868] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 80 18 71 38 2d 40 58 2c 45 00 56 50 21 00 00 dc
[   79.278964] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.279438] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.279892] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.279943] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.294044] usbcore: registered new interface driver cdc_ether
[   79.295230] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.295399] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.295548] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.296014] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   79.296032] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   79.296718] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 1e 01 1d 00 72 51 d0 1e 20 6e 28 55 00
[   79.296762] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.297409] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 56 50 21 00 00 1e 8c 0a d0 8a 20 e0 2d 10 10 3e
[   79.298085] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 96 00 56 50 21 00 00 18 2a 44 80 a0 70 38 27 8a
[   79.298130] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.298551] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.298979] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.299015] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.315263] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.315789] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   79.315811] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   79.316497] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 40 30 20 35 00 56 50 21 00 00 1a 00 00
[   79.316531] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.317160] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[   79.317773] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 00 00 00 00 00 00 00 00 00 00 00 00 00 97 ac
[   79.317805] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.317822] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.317872] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000b4779840 (1)
[   79.317902] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] Supported Monitor Refresh rate range is 48 Hz - 75 Hz
[   79.317978] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   79.318031] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] ELD monitor CB272
[   79.318081] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] ELD size 28, SAD count 1
[   79.318221] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.318408] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 60 74250 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   79.318468] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 50 74250 1920 2448 2492 2640 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   79.318522] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 60 74176 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   79.318577] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:567:DP-6] probed modes:
[   79.318598] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 75 174500 1920 1968 2000 2080 1080 1083 1088 1119 0x48 0x9
[   79.318615] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.318630] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.318648] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.318650] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.318671] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 50 148500 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5
[   79.318696] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1680x1050": 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   79.318721] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x1024": 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   79.318746] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1440x900": 60 106500 1440 1520 1672 1904 900 903 909 934 0x40 0x6
[   79.318770] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x800": 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   79.318794] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1152x864": 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   79.318685] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.318818] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   79.318841] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   79.318865] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   79.318887] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 50 74250 1280 1720 1760 1980 720 725 730 750 0x40 0x5
[   79.318910] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[   79.318936] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   79.318956] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   79.318969] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[   79.318983] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x576": 50 27000 720 732 796 864 576 581 586 625 0x40 0xa
[   79.318995] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x576": 50 27000 720 732 796 864 576 581 586 625 0x40 0xa
[   79.319008] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27027 720 736 798 858 480 489 495 525 0x40 0xa
[   79.319021] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27027 720 736 798 858 480 489 495 525 0x40 0xa
[   79.319033] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   79.319045] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   79.319057] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   79.319069] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[   79.319081] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[   79.319092] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   79.319104] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   79.319116] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x400": 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   79.319338] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:570:DP-7]
[   79.319347] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 000000004b112a7e (2)
[   79.319356] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 000000004b112a7e (1)
[   79.319364] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:570:DP-7] disconnected
[   79.319828] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   79.319947] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.320030] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000002eefcae5
[   79.320099] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   79.320165] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   79.320233] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   79.320245] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   79.320318] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.320424] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   79.320535] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   79.320637] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   79.320744] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   79.320848] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   79.320949] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   79.321053] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   79.321153] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   79.321251] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   79.321352] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   79.321455] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   79.321579] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   79.321715] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   79.321858] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   79.322001] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   79.322142] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   79.322286] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   79.322426] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   79.322556] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   79.322665] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   79.322768] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   79.322868] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   79.322976] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   79.323085] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   79.323224] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   79.323324] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   79.323425] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   79.323524] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   79.323624] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   79.323723] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   79.323840] r8152 2-3.1:1.0 enx5cff35d3fee9: renamed from eth0
[   79.323823] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   79.323924] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   79.324024] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   79.324125] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   79.324227] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   79.324330] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   79.324433] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   79.324537] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.324660] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   79.324768] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.324872] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   79.324975] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   79.325076] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   79.325178] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   79.325289] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   79.325403] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   79.325533] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   79.325628] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.325719] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.325811] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   79.325898] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   79.325983] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   79.326070] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   79.326157] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   79.326239] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   79.326324] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   79.326408] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   79.326490] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   79.326595] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   79.326699] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   79.326801] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   79.326904] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   79.327004] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   79.327105] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   79.327210] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   79.327325] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   79.327455] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   79.327577] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   79.327683] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   79.327794] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   79.327897] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   79.327999] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   79.328106] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   79.328214] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   79.328320] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   79.328426] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   79.328532] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   79.328639] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   79.328745] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   79.328844] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   79.328944] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.329044] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.329143] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.329244] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   79.329345] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.329446] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   79.329544] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.329642] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.329740] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.329834] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   79.329856] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.329932] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.329993] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.330029] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.330128] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   79.330131] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.330229] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   79.330328] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.330435] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.330545] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.330655] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.330653] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.330677] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.330756] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   79.330860] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.330963] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   79.331063] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   79.331164] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.331324] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   79.331436] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.331541] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.331650] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.331759] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.331868] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.331966] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.332071] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.332174] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.332274] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.332374] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.332483] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.332598] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.332706] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.332808] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.332911] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.333015] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.333117] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.333219] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.333318] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   79.333418] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   79.333520] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.333620] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   79.333722] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   79.333821] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   79.333920] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   79.334022] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   79.334121] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.334220] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.334321] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.334424] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   79.334530] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.334631] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   79.334732] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.334835] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.334934] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.335031] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   79.335129] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   79.335239] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   79.335347] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.335447] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.335544] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   79.335642] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   79.335742] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.335847] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.335953] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.336058] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.336165] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.336270] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.336378] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   79.336486] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   79.336592] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.336696] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   79.336799] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.336907] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.337068] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.337178] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.337299] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.337424] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.337530] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.337635] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   79.337734] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   79.337833] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   79.337935] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   79.338035] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.338134] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.338230] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.338326] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.338426] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.338528] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.338632] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.338732] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   79.338832] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   79.338934] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   79.339033] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   79.339131] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   79.339262] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   79.339375] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   79.339453] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   79.339566] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.339646] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000392ba819
[   79.339720] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   79.339790] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   79.339856] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   79.339867] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   79.339943] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.340052] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   79.340156] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   79.340260] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   79.340361] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   79.340464] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   79.340565] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   79.340664] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   79.340764] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   79.340865] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   79.340966] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   79.341067] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   79.341167] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   79.341265] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   79.341365] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   79.341464] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   79.341564] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   79.341664] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   79.341765] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   79.341865] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   79.341962] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   79.342060] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   79.342160] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   79.342259] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   79.342358] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   79.342455] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   79.342551] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   79.342650] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   79.342747] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   79.342843] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   79.342938] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   79.343037] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   79.343136] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   79.343243] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   79.343342] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   79.343441] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   79.343539] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   79.343631] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   79.343723] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.343821] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   79.343915] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.343995] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   79.344073] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   79.344154] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   79.344233] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   79.344314] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   79.344395] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   79.344490] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   79.344566] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.344635] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.344707] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   79.344776] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   79.344844] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   79.344913] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   79.344981] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   79.345048] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   79.345115] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   79.345181] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   79.345249] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   79.345335] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   79.345418] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   79.345499] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   79.345581] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   79.345663] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   79.345745] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   79.345823] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   79.345902] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   79.345985] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   79.346067] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   79.346149] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   79.346234] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   79.346315] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   79.346396] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   79.346479] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   79.346561] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   79.346644] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   79.346722] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   79.346805] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   79.346888] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   79.346970] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   79.347053] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   79.347134] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.347256] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.347375] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.347457] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   79.347540] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.347624] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   79.347708] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.347789] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.347872] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.347955] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   79.348039] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.348122] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.348252] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   79.348350] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   79.348436] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.348520] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.348604] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.348688] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.348769] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   79.348849] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.348933] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   79.349014] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   79.349093] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.349174] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   79.349254] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.349334] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.349416] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.349497] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.349578] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.349658] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.349736] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.349814] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.349896] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.349981] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.350075] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.350169] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.350266] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.350361] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.350456] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.350554] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.350651] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.350750] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.350845] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   79.350943] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   79.351040] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.351136] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   79.351261] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   79.351362] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   79.351450] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   79.351530] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   79.351610] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.351690] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.351768] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.351847] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   79.351928] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.352010] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   79.352089] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.352170] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.352250] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.352340] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   79.352360] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.352434] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   79.352485] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.352530] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   79.352625] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.352662] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.352711] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.352790] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   79.352882] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   79.352990] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.353097] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.353150] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.353168] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.353202] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.353286] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.353366] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.353448] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.353531] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   79.353611] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   79.353692] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.353774] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   79.353855] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.353936] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.354017] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.354097] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.354178] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.354256] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.354336] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.354416] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   79.354510] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   79.354610] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   79.354708] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   79.354809] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.354908] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.355006] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.355106] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.355204] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.355303] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.355395] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.355480] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   79.355562] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   79.355643] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   79.355723] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   79.355801] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   79.355880] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   79.355960] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   79.356076] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   79.356168] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.356232] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000002eefcae5
[   79.356290] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   79.356350] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   79.356404] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   79.356413] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   79.356469] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.356556] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   79.356641] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   79.356724] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   79.356804] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   79.356884] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   79.356963] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   79.357041] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   79.357119] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   79.357202] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   79.357282] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   79.357362] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   79.357441] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   79.357524] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   79.357603] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   79.357684] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   79.357765] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   79.357845] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   79.357924] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   79.358005] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   79.358085] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   79.358164] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   79.358243] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   79.358323] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   79.358401] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   79.358481] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   79.358562] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   79.358643] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   79.358723] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   79.358803] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   79.358883] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   79.358963] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   79.359042] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   79.359122] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   79.359203] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   79.359303] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   79.359402] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   79.359490] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   79.359570] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.359651] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   79.359729] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.359809] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   79.359891] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   79.359972] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   79.360054] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   79.360136] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   79.360217] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   79.360313] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   79.360385] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.360458] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.360527] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   79.360596] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   79.360665] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   79.360735] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.360803] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.360871] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.360940] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   79.361008] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   79.361077] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   79.361144] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   79.361212] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   79.361281] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   79.361351] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   79.361437] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   79.361521] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   79.361603] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   79.361687] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   79.361766] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   79.361846] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   79.361929] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   79.362010] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   79.362090] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   79.362171] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   79.362254] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   79.362337] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   79.362417] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   79.362497] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   79.362579] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   79.362661] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   79.362741] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   79.362822] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   79.362903] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   79.362987] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   79.363069] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   79.363149] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   79.363239] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.363341] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.363437] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.363518] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   79.363598] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.363679] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   79.363759] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.363838] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.363916] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.363995] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   79.364075] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.364155] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.364235] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   79.364317] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   79.364399] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.364481] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.364564] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.364647] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.364729] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   79.364810] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.364891] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   79.364974] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   79.365056] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.365136] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   79.365215] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.365296] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.365379] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.365462] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.365544] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.365627] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.365710] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.365792] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.365871] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.365951] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.366031] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.366112] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.366193] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.366276] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.366358] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.366438] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.366520] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.366603] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.366685] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   79.366765] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[   79.366847] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[   79.366930] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[   79.367010] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[   79.367089] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [NOFB], visible: no
[   79.367168] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   79.367265] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   79.367366] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   79.367460] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   79.367543] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.367625] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.367706] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.367788] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   79.367870] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.367951] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   79.368029] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.368108] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.368190] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.368272] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   79.368355] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   79.368436] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   79.368517] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.368596] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.368679] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   79.368762] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   79.368842] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.368923] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.369006] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.369089] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.369170] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.369251] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.369333] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   79.369414] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   79.369493] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.369571] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   79.369649] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.369728] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.369809] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.369890] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.369971] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.370052] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.370132] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.370213] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   79.370292] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   79.370373] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   79.370455] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   79.370536] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.370617] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.370697] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.370778] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.370859] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.370940] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.371021] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.371100] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   79.371180] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   79.371276] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   79.371376] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   79.371464] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   79.371544] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   79.371627] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   79.371666] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   79.371756] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.371842] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.371918] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.372003] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   79.372089] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.372151] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000392ba819
[   79.372208] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   79.372262] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   79.372314] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   79.372322] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   79.372377] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.372461] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   79.372544] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   79.372625] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   79.372706] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   79.372788] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   79.372869] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   79.372952] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   79.373034] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   79.373117] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   79.373200] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   79.373281] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   79.373360] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   79.373440] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   79.373520] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   79.373602] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   79.373685] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   79.373765] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   79.373847] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   79.373928] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   79.374008] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   79.374088] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   79.374170] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   79.374249] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   79.374328] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   79.374407] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   79.374486] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   79.374567] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   79.374646] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   79.374727] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   79.374807] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   79.374886] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   79.374967] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   79.375047] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   79.375126] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   79.375236] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   79.375337] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   79.375432] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   79.375511] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.375594] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   79.375675] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.375756] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   79.375838] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   79.375919] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   79.375999] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   79.376078] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   79.376159] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   79.376244] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   79.376316] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.376386] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.376457] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   79.376527] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   79.376526] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.376597] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   79.376631] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.376664] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   79.376730] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   79.376795] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   79.376862] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   79.376845] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.376929] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   79.376994] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   79.377092] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   79.377203] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   79.377349] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.377311] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   79.377368] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.377416] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   79.377505] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   79.377588] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   79.377669] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   79.377748] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   79.377827] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   79.377910] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   79.377991] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   79.378075] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   79.378159] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   79.378242] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   79.378324] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   79.378406] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   79.378487] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   79.378568] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   79.378647] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   79.378728] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   79.378810] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   79.378889] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   79.378967] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.379047] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.379125] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.379208] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   79.379307] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.379405] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   79.379486] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.379567] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.379648] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.379728] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   79.379810] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.379889] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.379969] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   79.380048] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   79.380128] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.380211] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.380293] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.380374] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.380455] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   79.380534] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.380615] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   79.380696] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   79.380776] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.380855] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   79.380932] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.381014] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.381096] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.381175] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.381257] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.381337] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.381418] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.381498] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.381577] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.381656] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.381735] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.381813] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.381893] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.381972] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.382053] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.382133] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.382213] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.382295] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.382374] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   79.382454] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   79.382532] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.382610] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   79.382690] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   79.382771] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   79.382850] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   79.382929] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   79.383008] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.383085] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.383164] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.383257] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   79.383356] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.383444] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   79.383524] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.383605] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.383685] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.383765] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   79.383847] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   79.383928] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   79.384007] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.384087] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.384168] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   79.384251] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   79.384332] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.384413] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.384494] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.384575] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.384656] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.384736] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.384817] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   79.384898] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   79.384977] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.385057] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   79.385137] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.385216] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.385295] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.385376] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.385457] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.385537] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.385616] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.385694] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   79.385771] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   79.385852] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   79.385934] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   79.386013] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.386093] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.386174] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.386254] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.386333] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.386418] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.386514] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.386601] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   79.386683] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   79.386763] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   79.386842] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   79.386920] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   79.387000] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   79.387081] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   79.387163] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   79.387267] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.387362] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.387446] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.387533] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   79.387601] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.387669] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.387734] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.387822] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   79.387907] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.387968] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000002eefcae5
[   79.388026] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   79.388080] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   79.388132] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   79.388140] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   79.388195] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.388282] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   79.388369] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   79.388453] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   79.388534] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   79.388615] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   79.388697] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   79.388778] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   79.388862] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   79.388943] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   79.389023] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   79.389102] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   79.389183] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   79.389266] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   79.389348] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   79.389429] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   79.389510] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   79.389591] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   79.389669] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   79.389747] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   79.389828] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   79.389908] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   79.389989] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   79.390069] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   79.390148] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   79.390229] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   79.390310] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   79.390391] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   79.390472] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   79.390554] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   79.390634] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   79.390715] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   79.390795] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   79.390874] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   79.390955] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   79.391034] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   79.391114] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   79.391195] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   79.391295] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.391395] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   79.391484] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.391563] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   79.391642] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   79.391724] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   79.391806] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   79.391888] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   79.391967] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   79.392051] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   79.392124] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.392195] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.392265] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   79.392333] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   79.392399] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   79.392466] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   79.392534] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   79.392601] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   79.392667] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   79.392733] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   79.392800] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   79.392884] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   79.392970] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   79.393051] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   79.393130] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   79.393212] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   79.393292] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   79.393371] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   79.393452] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   79.393533] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   79.393614] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   79.393694] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   79.393778] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   79.393859] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   79.393940] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   79.394022] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   79.394104] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   79.394184] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   79.394264] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   79.394344] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   79.394427] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   79.394510] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   79.394590] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   79.394672] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.394753] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.394833] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.394912] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   79.394991] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.395070] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   79.395151] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.395239] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.395337] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.395432] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   79.395512] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.395593] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.395675] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   79.395756] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   79.395835] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.395916] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.395999] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.396081] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.396164] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   79.396244] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.396324] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   79.396404] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   79.396487] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.396568] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   79.396649] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.396728] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.396809] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.396889] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.396974] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.397055] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.397134] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.397214] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.397296] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.397391] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.397489] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.397580] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.397659] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.397740] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.397818] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.397899] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.397980] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.398062] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.398141] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   79.398223] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   79.398305] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.398386] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   79.398469] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   79.398551] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   79.398633] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   79.398712] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   79.398793] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.398874] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.398956] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.399037] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   79.399122] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.399246] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   79.399344] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.399439] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.399524] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.399604] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   79.399684] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   79.399767] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   79.399848] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.399928] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.400008] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   79.400087] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   79.400165] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.400245] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.400327] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.400410] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.400493] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.400575] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.400658] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   79.400740] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   79.400821] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.400903] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   79.400985] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.401066] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.401146] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.401227] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.401310] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.401392] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.401473] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.401554] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   79.401635] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   79.401716] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   79.401794] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   79.401881] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.401886] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.401974] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.402007] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.402069] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.402165] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.402249] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.402237] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.402330] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.402412] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.402514] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   79.402620] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   79.402731] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.402728] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   79.402750] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.402834] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   79.402937] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   79.403041] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   79.403143] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   79.403179] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   79.403307] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.403382] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000392ba819
[   79.403439] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   79.403496] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   79.403549] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   79.403557] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   79.403611] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.403695] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   79.403780] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   79.403864] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   79.403947] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   79.404028] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   79.404109] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   79.404190] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   79.404274] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   79.404355] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   79.404433] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   79.404511] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   79.404590] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   79.404671] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   79.404752] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   79.404832] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   79.404912] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   79.404993] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   79.405074] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   79.405153] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   79.405235] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   79.405317] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   79.405398] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   79.405480] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   79.405562] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   79.405644] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   79.405726] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   79.405806] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   79.405888] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   79.405969] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   79.406050] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   79.406130] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   79.406210] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   79.406290] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   79.406369] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   79.406450] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   79.406530] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   79.406610] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   79.406691] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.406771] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   79.406849] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.406930] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   79.407012] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   79.407093] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   79.407173] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   79.407264] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   79.407362] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   79.407460] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   79.407531] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.407598] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.407667] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   79.407737] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   79.407805] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   79.407870] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   79.407936] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   79.408003] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   79.408070] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   79.408136] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   79.408203] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   79.408288] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   79.408372] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   79.408453] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   79.408535] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   79.408616] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   79.408696] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   79.408778] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   79.408859] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   79.408941] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   79.409023] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   79.409105] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   79.409187] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   79.409267] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   79.409350] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   79.409433] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   79.409514] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   79.409594] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   79.409676] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   79.409756] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   79.409838] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   79.409920] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   79.410002] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   79.410084] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.410164] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.410245] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.410327] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   79.410409] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.410491] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   79.410571] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.410652] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.410733] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.410813] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   79.410893] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.410972] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.411053] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   79.411134] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   79.411241] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.411343] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.411441] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.411521] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.411603] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   79.411685] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.411769] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   79.411850] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   79.411930] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.412009] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   79.412087] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.412167] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.412247] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.412328] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.412407] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.412485] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.412563] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.412642] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.412723] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.412804] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.412881] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.412961] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.413041] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.413119] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.413199] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.413279] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.413360] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.413444] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.413526] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   79.413608] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   79.413688] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.413768] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   79.413849] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   79.413931] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   79.414013] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   79.414094] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   79.414176] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.414258] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.414338] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.414418] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   79.414500] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.414581] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   79.414662] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.414745] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.414827] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.414908] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   79.414989] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   79.415071] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   79.415152] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.415241] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.415338] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   79.415436] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   79.415519] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.415601] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.415684] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.415766] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.415848] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.415931] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.416013] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   79.416093] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   79.416173] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.416256] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   79.416335] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.416417] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.416499] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.416579] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.416659] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.416738] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.416820] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.416902] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   79.416982] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   79.417062] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   79.417140] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   79.417220] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.417301] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.417380] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.417459] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.417537] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.417617] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.417700] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.417781] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   79.417864] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   79.417946] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   79.418026] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   79.418104] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   79.418183] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   79.418264] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   79.419903] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   79.421381] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:580]
[   79.422020] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1]
[   79.422033] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:508:eDP-1]
[   79.422142] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   79.422209] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[   79.422271] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[   79.422332] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[   79.422360] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   79.422380] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[   79.422400] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[   79.422421] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] VRR capable: yes
[   79.422486] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
[   79.422546] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
[   79.422790] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x03000 AUX -> (ret=  1) 00
[   79.422824] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] probed modes:
[   79.422835] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.422963] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1]
[   79.422971] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[   79.427110] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1] disconnected
[   79.427144] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1]
[   79.427152] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[   79.427302] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1] disconnected
[   79.427334] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2]
[   79.427341] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[   79.427463] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2] disconnected
[   79.427489] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3]
[   79.427469] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.427496] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[   79.427584] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.427725] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.427968] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  1) 14
[   79.428349] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.428367] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.429153] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.429961] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.429970] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.429980] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.430515] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  8) 14 1e 80 aa 02 00 00 00
[   79.430524] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][DPRX] LTTPR common capabilities: 14 1e 80 aa 02 00 00 00
[   79.430987] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) 55
[   79.431455] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) aa
[   79.431869] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0020 AUX -> (ret=  3) 03 03 00
[   79.431877] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][LTTPR 1] PHY capabilities: 03 03 00
[   79.432530] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf003d AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   79.432541] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: LTTPR 1: OUI 00-00-00 dev-ID  HW-rev 0.0 SW-rev 0.0 quirks 0x0000
[   79.433354] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.434200] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.434208] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.434218] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.434733] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 53 22 10 05 05
[   79.434742] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DP branch: OUI 90-cc-24 dev-ID SYNAS" HW-rev 1.0 SW-rev 5.5 quirks 0x0068
[   79.435069] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02210 AUX -> (ret=  1) f8
[   79.435398] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00200 AUX -> (ret=  1) 01
[   79.435917] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00080 AUX -> (ret= 12) 08 00 00 00 00 00 00 00 00 00 00 00
[   79.435925] i915 0000:00:02.0: [drm:drm_dp_read_downstream_info [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD DFP: 08 00 00 00 00 00 00 00 00 00 00 00
[   79.436257] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00021 AUX -> (ret=  1) 01
[   79.436266] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [ENCODER:544:DDI TC3/PHY TC3] MST support: port: yes, sink: MST, modparam: yes -> enable: MST
[   79.436711] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00111 AUX -> (ret=  1) 07
[   79.437221] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0000 AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   79.437581] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe000d AUX -> (ret=  3) 00 00 00
[   79.437973] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0020 AUX -> (ret=  5) 00 00 00 00 00
[   79.438314] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0028 AUX -> (ret=  2) 00 00
[   79.438640] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0030 AUX -> (ret=  1) 00
[   79.438983] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00070 AUX -> (ret=  2) 00 00
[   79.439560] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00060 AUX -> (ret= 16) 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   79.439567] i915 0000:00:02.0: [drm:intel_dp_read_dsc_dpcd [i915]] DSC DPCD: 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   79.439954] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00090 AUX -> (ret=  1) 0f
[   79.439962] i915 0000:00:02.0: [drm:intel_dp_get_dsc_sink_cap [i915]] FEC CAPABILITY: f
[   79.440382] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x000a0 AUX -> (ret=  3) 09 1e 10
[   79.440712] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02214 AUX -> (ret=  1) 00
[   79.440720] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   79.440795] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000, 810000
[   79.440862] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000, 810000
[   79.440925] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3] disconnected
[   79.440964] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4]
[   79.440973] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[   79.441099] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4] disconnected
[   79.441126] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:509:DP-5]
[   79.441134] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 0000000039cd68e6 (2)
[   79.441144] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 0000000039cd68e6 (1)
[   79.441153] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:509:DP-5] disconnected
[   79.441177] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:567:DP-6]
[   79.441188] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 00000000b4779840 (2)
[   79.441196] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000b4779840 (1)
[   79.441205] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 00000000b4779840 (2)
[   79.441215] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.441224] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   79.441234] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   79.441243] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=1:
[   79.441250] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   79.441785] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 00 10 50 01 da
[   79.454081] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.454277] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.454405] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.454937] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   79.454959] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   79.455641] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 05 c3 22 02 01 00 db 00 00 00 00 00 00 00 00
[   79.455657] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.455675] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.455780] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   79.455809] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.455821] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   79.455833] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   79.455843] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=128:
[   79.455853] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   79.456058] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.456603] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 00 10 50 80 e0
[   79.457075] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.457110] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.482457] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.482794] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.483274] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.484112] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   79.484176] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   79.485300] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 02 80 00 ff ff ff ff ff ff 00 04 72
[   79.485365] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.486079] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 1a 07 3f 63 60 21 10 20 01 04 a5 3c 22 78 3f 53
[   79.486771] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) a5 a7 56 52 9c 26 11 50 54 b3 0c 00 71 4f 81 32
[   79.486820] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.487269] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.487742] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.487786] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.505311] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.506094] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.506929] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.508059] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   79.508148] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   79.509221] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 80 81 c0 81 00 95 00 b3 00 d1 c0 01 01
[   79.509283] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.509975] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 2a 44 80 a0 70 38 27 40 30 20 35 00 56 50 21 00
[   79.510651] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 1a 02 3a 80 18 71 38 2d 40 58 2c 45 00 56 c5
[   79.510700] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.511157] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.511708] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.511750] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.512036] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.512726] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   79.512768] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   79.513664] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 50 21 00 00 1e 00 00 00 fd 00 30 4b 54
[   79.513706] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.514363] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 54 12 01 0a 20 20 20 20 20 20 00 00 00 fc 00 43
[   79.515011] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 42 32 37 32 0a 20 20 20 20 20 20 20 01 e3 9e
[   79.515056] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.515154] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   79.515260] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.515304] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   79.515349] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   79.515387] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=128:
[   79.515424] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 80
[   79.515495] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.516099] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 80 10 50 80 bb
[   79.516667] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.516731] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.532248] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.533044] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.533854] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.534937] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 10 00 00
[   79.535011] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 10 00 00
[   79.536264] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 02 80 02 03 18 f1 4b 90 01 02 03 04
[   79.536348] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.537049] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 05 11 12 13 14 1f 23 09 07 07 83 01 00 00 02 3a
[   79.537720] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 80 18 71 38 2d 40 58 2c 45 00 56 50 21 00 00 dc
[   79.537770] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.538209] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.538660] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 01 00 00 00
[   79.538700] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 01 00 00 00
[   79.560258] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.561019] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.561770] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.562720] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   79.562798] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   79.563811] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 1e 01 1d 00 72 51 d0 1e 20 6e 28 55 00
[   79.563860] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.564521] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 56 50 21 00 00 1e 8c 0a d0 8a 20 e0 2d 10 10 3e
[   79.565176] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 96 00 56 50 21 00 00 18 2a 44 80 a0 70 38 27 8a
[   79.565215] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.565653] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.566098] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   79.566137] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   79.571642] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.572603] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   79.572678] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   79.575480] usb 3-6.3: new high-speed USB device number 8 using xhci_hcd
[   79.587312] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.588104] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.588950] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.590041] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 30 00 00
[   79.590129] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 30 00 00
[   79.591272] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 40 30 20 35 00 56 50 21 00 00 1a 00 00
[   79.591336] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.592033] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[   79.592686] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 00 00 00 00 00 00 00 00 00 00 00 00 00 97 ac
[   79.592739] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.592851] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   79.592927] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000b4779840 (1)
[   79.592970] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] Supported Monitor Refresh rate range is 48 Hz - 75 Hz
[   79.593104] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   79.593210] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] ELD monitor CB272
[   79.593309] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] ELD size 28, SAD count 1
[   79.593406] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01600 AUX -> (ret= 16) 16 94 c4 02 30 08 43 ed a4 b7 49 33 45 93 11 87
[   79.593906] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01610 AUX -> (ret=  7) e5 45 6c b7 10 23 63
[   79.593949] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.593964] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 60 74250 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   79.594081] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 50 74250 1920 2448 2492 2640 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   79.594187] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 60 74176 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   79.594296] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:567:DP-6] probed modes:
[   79.594336] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 75 174500 1920 1968 2000 2080 1080 1083 1088 1119 0x48 0x9
[   79.594370] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.594402] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.594424] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01200 AUX <- (ret=  5) 16 82 c6 02 7f
[   79.594435] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.594462] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 50 148500 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5
[   79.594469] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   79.594491] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1680x1050": 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   79.594519] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x1024": 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   79.594514] i915 0000:00:02.0: [drm:drm_dp_mst_hpd_irq_handle_event [drm_display_helper]] Got CSN: pn: 3 ldps:0 ddps: 1 mcs: 0 ip: 0 pdt: 3
[   79.594546] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1440x900": 60 106500 1440 1520 1672 1904 900 903 909 934 0x40 0x6
[   79.594573] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x800": 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   79.594599] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1152x864": 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   79.594625] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   79.594639] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.594658] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   79.594687] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   79.594683] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.594717] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 50 74250 1280 1720 1760 1980 720 725 730 750 0x40 0x5
[   79.594726] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.594747] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[   79.594768] i915 0000:00:02.0: [drm:drm_dp_get_port [drm_display_helper]] port 000000004b112a7e (2)
[   79.594777] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   79.594805] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   79.594820] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=2 seqno=0 state=QUEUED path_msg=1 dst=00
[   79.594837] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[   79.594873] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x576": 50 27000 720 732 796 864 576 581 586 625 0x40 0xa
[   79.594870] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=ENUM_PATH_RESOURCES contents:
[   79.594905] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x576": 50 27000 720 732 796 864 576 581 586 625 0x40 0xa
[   79.594916] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3
[   79.594941] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27027 720 736 798 858 480 489 495 525 0x40 0xa
[   79.594974] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27027 720 736 798 858 480 489 495 525 0x40 0xa
[   79.594982] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 30 00 00
[   79.595007] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   79.595035] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   79.595062] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   79.595090] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[   79.595122] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[   79.595153] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   79.595211] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   79.595243] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x400": 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   79.595491] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret=  6) 10 43 c7 10 30 46
[   79.595985] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   79.596030] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   79.620639] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.621264] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.621924] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.622872] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   79.622941] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   79.624045] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 47 c0 10 30 0a 00 0a 00 1f 00 00 00 00 00 00
[   79.624118] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.624170] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.624280] i915 0000:00:02.0: [drm:drm_dp_send_enum_path_resources [drm_display_helper]] enum path resources 3: 2560 2560
[   79.624606] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.624702] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 000000004b112a7e (1)
[   79.624753] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   79.624795] i915 0000:00:02.0: [drm:drm_sysfs_hotplug_event [drm]] generating hotplug event
[   79.624941] i915 0000:00:02.0: [drm:drm_client_hotplug [drm]] fbdev: ret=0
[   79.625111] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:570:DP-7]
[   79.625156] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 000000004b112a7e (2)
[   79.625193] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 000000004b112a7e (1)
[   79.625225] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:570:DP-7] status updated from disconnected to connected
[   79.625258] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 000000004b112a7e (2)
[   79.625291] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.625324] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   79.625362] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   79.625391] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3 num_tx=1 id=80 size=1:
[   79.625420] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   79.625462] i915 0000:00:02.0: [drm:drm_sysfs_hotplug_event [drm]] generating hotplug event
[   79.625603] i915 0000:00:02.0: [drm:drm_client_hotplug [drm]] fbdev: ret=0
[   79.626057] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   79.626110] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   79.626629] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 31 50 01 00 10 50 01 66
[   79.643365] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.643950] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.644501] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.645282] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   79.645339] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   79.646255] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 05 c3 22 03 01 00 58 00 00 00 00 00 00 00 00
[   79.646295] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.646340] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.646420] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   79.646510] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.646559] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   79.646609] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   79.646650] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3 num_tx=1 id=80 size=128:
[   79.646689] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   79.646772] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.647374] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 31 50 01 00 10 50 80 5c
[   79.647954] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   79.648007] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   79.670234] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.671039] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.671759] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.672709] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   79.672797] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   79.673877] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 03 80 00 ff ff ff ff ff ff 00 4c 2d
[   79.673929] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.674606] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 35 0f 45 32 39 30 13 22 01 04 b5 46 27 78 3a ae
[   79.675263] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) a5 af 4f 42 af 26 0f 50 54 bf ef 80 71 4f 81 52
[   79.675303] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.675743] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.676189] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   79.676219] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   79.693788] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.694612] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.695366] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.696327] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   79.696399] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   79.697397] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 00 81 c0 81 80 a9 c0 b3 00 95 00 01 01
[   79.697450] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.698112] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 22 cc 00 50 f0 70 3e 80 18 10 35 00 b9 88 21 00
[   79.698760] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 1a 00 00 00 fd 00 1e 4b 1e 87 3c 00 0a 20 ff
[   79.698797] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.699244] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.699670] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   79.699699] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   79.703400] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.704207] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   79.704255] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   79.705155] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 20 20 20 20 20 00 00 00 fc 00 55 33 32
[   79.705195] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.705848] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 4a 35 39 78 0a 20 20 20 20 20 00 00 00 ff 00 48
[   79.706467] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 43 4a 58 35 30 31 30 35 37 0a 20 20 01 5d 1c
[   79.706503] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.706610] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   79.706687] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.706732] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   79.706777] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   79.706813] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3 num_tx=1 id=80 size=128:
[   79.706848] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 80
[   79.706923] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.707512] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 31 50 01 80 10 50 80 07
[   79.708080] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   79.708144] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   79.717937] usb 3-6.3: New USB device found, idVendor=2109, idProduct=2820, bcdDevice= 0.30
[   79.717963] usb 3-6.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   79.717971] usb 3-6.3: Product: USB2.0 Hub             
[   79.717976] usb 3-6.3: Manufacturer: VIA Labs, Inc.         
[   79.719664] hub 3-6.3:1.0: USB hub found
[   79.720010] hub 3-6.3:1.0: 4 ports detected
[   79.730271] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.731004] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.731643] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.732509] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   79.732578] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   79.733540] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 03 80 02 03 0f f0 42 10 5f 23 09 07
[   79.733587] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.734237] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 07 83 01 00 00 02 3a 80 18 71 38 2d 40 58 2c 45
[   79.734881] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 b9 88 21 00 00 1e 56 5e 00 a0 a0 a0 29 50 db
[   79.734915] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.735339] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.735767] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   79.735795] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   79.753172] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.754000] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.754774] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.755805] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   79.755894] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   79.756965] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 30 20 35 00 b9 88 21 00 00 1a 04 74 00
[   79.757019] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.757696] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 30 f2 70 5a 80 b0 58 8a 00 b9 88 21 00 00 1e 00
[   79.758354] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 57
[   79.758394] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.758820] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.759273] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   79.759306] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   79.763461] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.764444] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   79.764512] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   79.765478] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 00 00 00 00 00 00 00 00 00 00 00 00 00
[   79.765525] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   79.766184] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[   79.766827] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 00 00 00 00 00 00 00 00 00 00 00 00 00 56 4e
[   79.766867] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.766976] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   79.767064] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 000000004b112a7e (1)
[   79.767116] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:570:DP-7] Assigning EDID-1.4 digital sink color depth as 10 bpc.
[   79.767293] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:570:DP-7] ELD monitor U32J59x
[   79.767330] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   79.767418] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:570:DP-7] ELD size 32, SAD count 1
[   79.767820] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   79.767874] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   79.768418] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:570:DP-7] probed modes:
[   79.768459] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   79.768495] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 30 297000 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5
[   79.768527] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 30 297000 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5
[   79.768558] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 30 296703 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5
[   79.768587] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "2560x1440": 60 241500 2560 2608 2640 2720 1440 1443 1448 1481 0x40 0x9
[   79.768617] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.768645] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.768673] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.768700] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1680x1050": 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   79.768727] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1600x900": 60 108000 1600 1624 1704 1800 900 901 904 1000 0x40 0x5
[   79.768755] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x1024": 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   79.768783] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x1024": 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   79.768810] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1440x900": 60 106500 1440 1520 1672 1904 900 903 909 934 0x40 0x6
[   79.768837] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x800": 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   79.768864] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1152x864": 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   79.768891] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   79.768917] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   79.768944] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   79.768970] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[   79.768995] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   79.769018] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "832x624": 75 57284 832 864 928 1152 624 625 628 667 0x40 0xa
[   79.769043] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   79.769067] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 72 50000 800 856 976 1040 600 637 643 666 0x40 0x5
[   79.769092] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   79.769115] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[   79.769139] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   79.769162] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 73 31500 640 664 704 832 480 489 492 520 0x40 0xa
[   79.769186] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[   79.769209] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[   79.769232] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   79.769255] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x400": 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   79.780449] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   79.780693] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.780852] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x0000000081d40fc8
[   79.780988] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   79.781124] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   79.781255] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   79.781279] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   79.781429] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.781644] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   79.781855] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   79.782068] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   79.782284] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   79.782497] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   79.782706] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   79.782931] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   79.783153] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   79.783415] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   79.783657] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   79.783892] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   79.784101] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   79.784104] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.784299] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   79.784360] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.784497] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   79.784696] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   79.784705] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.784887] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   79.785074] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   79.785272] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   79.785364] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   79.785396] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   79.785455] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   79.785626] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   79.785795] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   79.786038] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   79.786247] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   79.786393] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   79.786540] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   79.786690] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   79.786829] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   79.786963] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   79.787099] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   79.787239] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   79.787371] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   79.787498] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   79.787629] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   79.787757] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   79.787884] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   79.788002] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   79.788117] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   79.788227] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.788335] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   79.788443] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.788551] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   79.788656] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   79.788758] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   79.788855] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   79.788955] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   79.789046] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   79.789145] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   79.789227] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.789304] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.789377] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   79.789452] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   79.789526] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   79.789597] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   79.789668] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   79.789740] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   79.789812] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   79.789878] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   79.789943] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   79.790028] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   79.790111] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   79.790191] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   79.790273] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   79.790355] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   79.790437] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   79.790515] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   79.790598] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   79.790680] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   79.790764] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   79.790847] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   79.790931] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   79.791011] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   79.791091] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   79.791175] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   79.791271] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   79.791368] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   79.791470] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   79.791572] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   79.791676] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   79.791772] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   79.791868] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   79.791959] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.792040] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.792120] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.792200] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   79.792279] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.792361] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   79.792444] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.792524] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.792605] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.792685] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   79.792765] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.792847] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.792927] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   79.793008] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   79.793088] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.793170] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.793251] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.793333] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.793414] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   79.793496] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.793577] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   79.793657] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   79.793737] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.793817] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   79.793899] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.793979] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.794059] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.794142] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.794223] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.794303] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.794382] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.794463] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.794543] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.794624] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.794703] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.794783] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.794862] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.794941] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.795019] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.795097] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.795176] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.795263] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.795360] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   79.795459] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   79.795555] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.795649] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   79.795731] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   79.795813] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   79.795894] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   79.795975] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   79.796055] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.796135] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.796214] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.796295] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   79.796377] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.796458] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   79.796541] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.796622] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.796703] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.796785] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   79.796866] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   79.796947] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   79.797026] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.797106] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.797187] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   79.797267] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   79.797346] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.797426] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.797507] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.797588] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.797667] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.797748] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.797829] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   79.797909] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   79.797989] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.798070] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   79.798151] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.798232] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.798311] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.798390] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.798470] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.798549] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.798630] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.798712] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   79.798794] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   79.798873] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   79.798953] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   79.799033] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.799112] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.799194] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.799293] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.799392] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.799487] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.799582] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.799667] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   79.799751] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   79.799833] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   79.799914] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   79.799995] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   79.800076] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   79.800159] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   79.800188] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   79.800282] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.800345] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000009e753557
[   79.800403] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   79.800458] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   79.800511] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   79.800519] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   79.800590] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.800682] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   79.800767] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   79.800850] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   79.800931] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   79.801010] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   79.801088] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   79.801170] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   79.801250] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   79.801331] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   79.801412] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   79.801494] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   79.801575] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   79.801656] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   79.801737] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   79.801816] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   79.801897] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   79.801977] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   79.802057] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   79.802138] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   79.802218] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   79.802298] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   79.802377] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   79.802457] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   79.802536] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   79.802614] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   79.802694] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   79.802773] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   79.802852] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   79.802930] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   79.803011] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   79.803092] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   79.803172] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   79.803254] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   79.803349] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   79.803450] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   79.803547] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   79.803641] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   79.803732] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.803816] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   79.803897] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.803978] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   79.804060] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   79.804141] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   79.804222] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   79.804303] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   79.804383] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   79.804469] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   79.804536] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.804603] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.804671] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   79.804738] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   79.804805] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   79.804871] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   79.804936] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   79.805002] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   79.805069] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   79.805138] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   79.805206] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   79.805291] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   79.805375] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   79.805456] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   79.805466] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.805536] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   79.805563] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.805615] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   79.805693] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   79.805771] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   79.805776] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.805850] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   79.805931] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   79.806026] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   79.806131] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   79.806268] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   79.806238] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   79.806287] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   79.806342] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   79.806425] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   79.806507] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   79.806590] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   79.806671] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   79.806750] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   79.806830] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   79.806912] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   79.806995] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   79.807078] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   79.807160] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.807269] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.807371] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.807469] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   79.807564] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.807652] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   79.807734] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.807815] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.807898] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.807979] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   79.808058] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.808139] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.808218] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   79.808299] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   79.808379] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.808460] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.808539] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.808620] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.808701] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   79.808782] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.808862] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   79.808940] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   79.809021] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.809101] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   79.809181] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.809261] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.809340] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.809421] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.809504] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.809585] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.809663] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.809743] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.809822] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.809903] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.809981] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.810059] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.810138] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.810218] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.810297] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.810376] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.810455] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.810537] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.810619] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   79.810698] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   79.810778] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.810857] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   79.810939] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   79.811021] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   79.811104] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   79.811186] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   79.811281] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.811379] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.811475] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.811570] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   79.811654] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.811734] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   79.811815] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.811899] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.811980] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.812061] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   79.812141] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   79.812223] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   79.812305] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.812385] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.812465] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   79.812547] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   79.812629] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.812711] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.812791] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.812872] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.812954] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.813036] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.813117] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   79.813199] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   79.813281] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.813361] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   79.813441] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.813521] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.813602] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.813682] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.813765] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.813848] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.813928] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.814006] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   79.814085] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   79.814164] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   79.814244] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   79.814323] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.814405] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.814487] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.814569] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.814651] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.814734] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.814816] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.814898] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   79.814979] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   79.815062] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   79.815146] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   79.815239] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   79.815340] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   79.815441] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   79.820810] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:582]
[   79.820959] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   79.821093] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.821160] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x0000000081d40fc8
[   79.821221] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   79.821277] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   79.821334] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   79.821348] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   79.821411] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.821497] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   79.821581] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.821642] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   79.821698] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   79.821752] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   79.821806] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   79.821856] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   79.821905] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x0000000081d40fc8
[   79.821953] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   79.822000] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   79.822048] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   79.822057] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   79.822108] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   79.822168] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.822255] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   79.822339] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.822398] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x0000000081d40fc8
[   79.822452] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   79.822506] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   79.822557] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 20 slots for pipe bpp 24.0000 dsc 0
[   79.822608] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.822690] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   79.822773] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.822834] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   79.822889] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   79.822941] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   79.822995] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   79.823044] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   79.823094] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x0000000081d40fc8
[   79.823144] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   79.823199] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   79.823288] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   79.823351] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   79.823421] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.823522] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   79.823622] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] Link bpp limited to 23.9375
[   79.823707] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 18.0000
[   79.823769] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x0000000081d40fc8
[   79.823824] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 18.0000
[   79.823881] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 18.0000
[   79.823935] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 14 slots for pipe bpp 18.0000 dsc 0
[   79.823990] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 18, dithering: 1
[   79.824076] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   79.824173] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.824243] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   79.824308] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   79.824362] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   79.824417] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   79.824468] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   79.824519] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x0000000081d40fc8
[   79.824571] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   79.824622] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   79.824671] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   79.824720] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   79.824777] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.824864] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   79.824949] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   79.825032] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   79.825115] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   79.825198] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   79.825281] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 14, data 1779513/8388608 link 96119/524288)
[   79.825362] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   79.825440] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   79.825522] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   79.825602] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   79.825685] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   79.825765] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   79.825843] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   79.825922] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   79.826004] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   79.826100] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   79.826197] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   79.826296] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   79.826393] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   79.826491] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   79.826584] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   79.826682] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   79.826781] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   79.826881] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   79.826976] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   79.827072] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   79.827168] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   79.827287] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   79.827392] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   79.827494] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   79.827602] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   79.827709] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   79.827789] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   79.827868] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   79.827947] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   79.828025] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in fec_enable (expected no, found yes)
[   79.828103] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   79.828183] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   79.828262] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.828344] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   79.828423] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.828504] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 18)
[   79.828586] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   79.828667] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   79.828748] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   79.828827] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   79.828907] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   79.828985] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   79.829066] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   79.829148] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   79.829229] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   79.829310] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   79.829390] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   79.829470] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   79.829550] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   79.829630] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   79.829709] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   79.829789] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   79.829870] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   79.829948] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   79.830027] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   79.830104] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   79.830183] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   79.830263] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   79.830341] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   79.830421] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   79.830500] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   79.830580] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   79.830659] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   79.830738] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   79.830816] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   79.830828] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.830896] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   79.830936] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.830974] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   79.831052] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   79.831057] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.831132] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   79.831213] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   79.831319] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   79.831425] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   79.831531] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   79.831584] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   79.831608] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   79.831639] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   79.831732] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   79.831826] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   79.831907] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   79.831987] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   79.832069] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   79.832149] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.832229] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   79.832306] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.832384] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   79.832464] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   79.832545] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   79.832625] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   79.832704] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   79.832782] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   79.832862] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   79.832942] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   79.833021] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   79.833101] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   79.833182] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   79.833264] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   79.833344] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   79.833423] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   79.833503] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   79.833581] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   79.833661] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   79.833742] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   79.833822] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   79.833901] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   79.833980] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   79.834060] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   79.834141] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   79.834218] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   79.834295] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   79.834375] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   79.834456] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   79.834535] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   79.834614] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   79.834695] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   79.834775] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   79.834853] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   79.834964] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   79.835034] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x7
[   79.835104] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 682), active pipes 0x1 -> 0x7
[   79.835173] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (682 - 2048), active pipes 0x1 -> 0x7
[   79.835256] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   79.835343] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   79.835427] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   79.835508] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.835590] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.835672] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.835751] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 -  646), size    0 ->  646
[   79.835830] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> ( 646 -  682), size    0 ->   36
[   79.835908] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   79.835974] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   79.836049] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   79.836124] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   79.836200] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> ( 682 - 1979), size    0 -> 1297
[   79.836265] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   79.836333] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   79.836411] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   79.836484] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   79.836558] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   79.836626] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   79.836725] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   79.836826] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 9299 required 3499
[   79.836924] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 10925 required 3499
[   79.837023] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 11707 required 3499
[   79.837121] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 10508 required 3499
[   79.837212] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 3499
[   79.837305] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 3499
[   79.837400] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 3499
[   79.837495] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   79.837592] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   79.837688] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   79.837782] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   79.837879] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 97984 kHz
[   79.837975] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   79.838073] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   79.838169] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   79.838265] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   79.838364] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   79.838462] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   79.838556] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   79.838649] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   79.838744] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] sharing existing TBT PLL (pipe mask 0x2, active 0x0)
[   79.838839] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   79.838933] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] sharing existing TC PLL 3 (pipe mask 0x2, active 0x0)
[   79.839026] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   79.839123] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   79.839240] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   79.839343] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   79.839441] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   79.839535] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.839630] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.839724] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.839819] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   79.839911] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.840006] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   79.840102] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.840197] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.840291] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.840382] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   79.840477] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.840571] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.840666] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   79.840762] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   79.840857] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.840950] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.841042] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.841123] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.841202] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   79.841282] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.841364] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   79.841445] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   79.841524] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.841603] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   79.841683] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.841764] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.841844] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.841923] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.842004] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.842087] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.842168] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.842247] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.842329] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.842409] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.842489] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.842568] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.842647] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.842728] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.842808] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.842886] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.842963] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.843044] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.843124] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   79.843207] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[   79.843306] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[   79.843404] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[   79.843498] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[   79.843580] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [NOFB], visible: no
[   79.843659] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   79.843739] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   79.843820] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 18, dithering: 1
[   79.843904] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   79.843982] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.844061] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.844140] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.844220] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 1779513, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 14
[   79.844297] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.844378] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   79.844457] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.844535] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.844612] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.844691] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   79.844768] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   79.844848] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   79.844929] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.845006] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.845084] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   79.845161] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   79.845238] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.845318] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.845398] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.845478] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.845559] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.845638] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.845717] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   79.845795] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   79.845872] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.845951] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   79.846032] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.846114] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.846196] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.846280] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.846362] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.846443] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.846525] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.846605] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.846686] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.846766] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.846845] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.846923] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.847002] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.847083] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.847166] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.847260] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.847359] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.847457] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.847555] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   79.847647] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   79.847728] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   79.847809] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   79.847889] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   79.847969] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   79.848049] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   79.848129] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   79.848211] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   79.848292] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   79.848372] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.848453] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.848534] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.848614] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   79.848695] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.848775] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   79.848855] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.848934] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.849012] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.849092] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   79.849170] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   79.849248] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   79.849329] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.849409] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.849488] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   79.849567] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   79.849648] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.849728] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   79.849808] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   79.849888] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   79.849969] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   79.850052] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   79.850133] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   79.850214] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   79.850293] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.850374] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   79.850454] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.850533] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.850614] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.850694] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.850775] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.850855] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.850933] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.851013] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.851094] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.851174] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.851263] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.851361] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.851457] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.851552] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.851645] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.851723] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.851801] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   79.851879] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   79.851959] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   79.852039] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   79.852117] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   79.852197] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   79.852277] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   79.852357] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   79.852436] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   79.852517] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   79.852598] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   79.852677] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   79.852756] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   79.852834] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   79.852914] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   79.852993] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.853073] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.853153] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   79.853236] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   79.853316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   79.853396] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   79.853475] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   79.853554] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   79.853638] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   79.853654] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   79.853711] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   79.853801] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.853887] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.853962] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.854053] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   79.854140] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.854202] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000009e753557
[   79.854259] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   79.854313] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   79.854366] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   79.854376] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   79.854433] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.854518] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   79.854602] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   79.854685] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   79.854767] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   79.854849] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   79.854929] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   79.855009] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   79.855091] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   79.855172] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   79.855261] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   79.855360] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   79.855454] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   79.855547] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   79.855639] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   79.855726] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   79.855805] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   79.855885] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   79.855965] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   79.856045] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   79.856125] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   79.856206] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   79.856241] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.856285] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   79.856337] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.856364] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   79.856443] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   79.856532] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.856536] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   79.856631] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   79.856730] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   79.856835] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   79.856943] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   79.857000] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   79.857013] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   79.857050] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   79.857147] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   79.857227] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   79.857308] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   79.857388] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   79.857466] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   79.857546] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   79.857628] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   79.857709] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.857790] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   79.857870] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.857950] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   79.858031] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   79.858112] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   79.858193] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   79.858272] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   79.858352] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   79.858437] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   79.858508] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.858576] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.858646] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   79.858713] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   79.858780] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   79.858846] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   79.858913] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   79.858983] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   79.859054] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   79.859123] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   79.859191] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   79.859296] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   79.859397] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   79.859478] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   79.859559] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   79.859641] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   79.859721] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   79.859802] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   79.859883] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   79.859965] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   79.860048] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   79.860130] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   79.860215] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   79.860295] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   79.860377] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   79.860457] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   79.860538] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   79.860620] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   79.860699] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   79.860778] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   79.860858] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   79.860940] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   79.861022] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   79.861103] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.861182] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.861261] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.861341] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   79.861421] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.861501] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   79.861580] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.861660] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.861739] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.861817] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   79.861895] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.861974] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.862055] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   79.862136] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   79.862215] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.862297] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.862377] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.862457] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.862539] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   79.862619] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.862699] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   79.862779] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   79.862859] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.862941] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   79.863022] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.863101] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.863182] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.863277] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.863378] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.863472] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.863565] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.863662] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.863742] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.863820] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.863897] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.863976] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.864056] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.864133] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.864211] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.864288] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.864367] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.864448] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.864527] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   79.864607] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   79.864689] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.864769] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   79.864847] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   79.864926] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   79.865007] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   79.865087] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   79.865166] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.865247] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.865328] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.865408] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   79.865489] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.865570] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   79.865650] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.865729] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.865813] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.865891] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   79.865969] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   79.866050] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   79.866130] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.866209] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.866287] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   79.866368] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   79.866457] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.866550] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.866629] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.866709] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.866790] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.866871] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.866948] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   79.867026] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   79.867104] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.867188] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   79.867301] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.867399] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.867493] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.867586] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.867665] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.867748] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.867828] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.867909] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   79.867988] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   79.868067] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   79.868147] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   79.868226] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.868305] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.868384] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.868463] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.868543] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.868623] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.868702] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.868781] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   79.868862] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   79.868944] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   79.869026] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   79.869108] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   79.869188] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   79.869270] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   79.869421] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   79.869492] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.869561] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.869628] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.869712] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   79.869783] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.869850] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.869917] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   79.870118] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:584]
[   79.870630] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:585]
[   79.870716] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   79.870825] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.870900] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x0000000081d40fc8
[   79.870970] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   79.871034] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   79.871103] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   79.871113] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   79.871177] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.871293] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   79.871391] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   79.871490] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   79.871584] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   79.871677] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   79.871758] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   79.871841] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   79.871921] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   79.872002] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   79.872084] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   79.872167] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   79.872249] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   79.872330] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   79.872410] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   79.872489] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   79.872568] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   79.872649] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   79.872730] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   79.872810] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   79.872891] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   79.872971] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   79.873051] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   79.873134] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   79.873214] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   79.873293] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   79.873374] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   79.873457] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   79.873540] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   79.873622] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   79.873703] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   79.873785] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   79.873868] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   79.873949] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   79.874030] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   79.874113] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   79.874194] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   79.874274] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   79.874355] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.874435] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   79.874517] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.874599] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   79.874681] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   79.874761] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   79.874841] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   79.874921] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   79.875003] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   79.875092] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   79.875163] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.875240] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.875327] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   79.875412] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   79.875492] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   79.875573] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   79.875649] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   79.875716] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   79.875785] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   79.875851] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   79.875919] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   79.876005] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   79.876087] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   79.876169] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   79.876250] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   79.876330] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   79.876409] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   79.876487] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   79.876567] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   79.876651] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   79.876734] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   79.876815] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   79.876900] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   79.876980] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   79.877061] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   79.877143] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   79.877224] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   79.877304] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   79.877384] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   79.877465] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   79.877549] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   79.877632] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   79.877713] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   79.877793] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.877873] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.877952] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.878030] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   79.878113] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.878195] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   79.878274] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.878352] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.878430] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.878511] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   79.878593] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.878672] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.878751] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   79.878831] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   79.878911] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.878991] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.879071] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.879152] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.879250] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   79.879348] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.879446] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   79.879540] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   79.879632] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.879714] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   79.879795] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.879875] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.879956] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.880036] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.880115] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.880195] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.880276] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.880357] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.880438] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.880517] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.880600] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.880682] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.880763] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.880845] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.880927] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.881010] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.881090] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.881172] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.881252] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   79.881333] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   79.881416] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.881496] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   79.881575] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   79.881654] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   79.881732] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   79.881811] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   79.881890] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.881881] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.881968] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.881987] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.882046] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.882131] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   79.882179] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.882211] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.882291] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   79.882386] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.882497] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.882633] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   79.882604] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.882646] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   79.882707] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   79.882805] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   79.882902] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   79.882996] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.883088] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.883188] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   79.883289] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   79.883388] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.883481] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.883571] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.883653] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.883735] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.883815] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.883894] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   79.883977] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   79.884058] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.884139] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   79.884218] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.884297] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.884376] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.884456] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.884537] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.884619] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.884699] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.884780] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   79.884861] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   79.884941] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   79.885021] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   79.885101] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.885181] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.885262] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.885344] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.885423] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.885503] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.885583] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.885663] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   79.885742] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   79.885820] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   79.885899] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   79.885976] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   79.886056] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   79.886139] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   79.886167] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   79.886267] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.886334] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000009e753557
[   79.886391] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   79.886445] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   79.886495] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   79.886504] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   79.886560] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.886647] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   79.886730] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   79.886813] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   79.886896] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   79.886975] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   79.887056] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   79.887139] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   79.887240] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   79.887342] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   79.887441] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   79.887534] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   79.887625] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   79.887706] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   79.887788] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   79.887868] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   79.887949] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   79.888031] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   79.888111] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   79.888191] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   79.888269] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   79.888349] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   79.888431] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   79.888511] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   79.888591] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   79.888670] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   79.888750] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   79.888831] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   79.888912] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   79.888991] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   79.889070] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   79.889150] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   79.889231] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   79.889314] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   79.889396] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   79.889477] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   79.889557] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   79.889636] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   79.889716] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.889799] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   79.889879] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.889959] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   79.890042] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   79.890123] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   79.890203] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   79.890282] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   79.890363] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   79.890452] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   79.890523] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.890591] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   79.890659] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   79.890727] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   79.890798] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   79.890866] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   79.890934] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   79.891001] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   79.891070] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   79.891138] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   79.891223] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   79.891326] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   79.891429] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   79.891525] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   79.891619] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   79.891701] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   79.891782] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   79.891862] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   79.891943] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   79.892024] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   79.892105] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   79.892186] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   79.892272] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   79.892355] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   79.892435] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   79.892516] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   79.892599] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   79.892683] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   79.892763] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   79.892846] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   79.892931] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   79.893014] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   79.893097] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   79.893179] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.893261] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.893342] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.893422] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   79.893502] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.893582] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   79.893662] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.893741] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.893821] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.893901] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   79.893980] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.894058] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.894135] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   79.894216] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   79.894295] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.894375] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.894456] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.894538] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.894621] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   79.894702] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.894784] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   79.894866] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   79.894946] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.895025] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   79.895105] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.895191] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.895288] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.895391] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.895488] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.895580] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.895661] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.895743] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.895824] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.895905] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.895985] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.896064] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.896143] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.896222] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.896302] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.896383] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.896463] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.896545] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.896623] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   79.896701] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   79.896782] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.896863] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   79.896943] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   79.897025] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   79.897107] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   79.897186] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   79.897264] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.897344] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.897422] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.897502] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   79.897581] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.897661] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   79.897742] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.897821] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.897898] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.897977] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   79.898057] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   79.898137] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   79.898216] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.898294] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.898375] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   79.898456] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   79.898536] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.898616] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.898695] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.898774] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.898856] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   79.898937] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   79.899016] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   79.899094] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   79.899172] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.899264] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   79.899359] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.899458] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.899553] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.899648] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.899739] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.899820] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.899901] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.899979] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   79.900057] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   79.900136] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   79.900215] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   79.900295] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.900376] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.900456] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.900535] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.900615] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.900694] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.900776] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.900856] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   79.900939] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   79.901022] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   79.901104] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   79.901180] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   79.901260] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   79.901343] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   79.901392] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   79.901490] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.901552] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   79.901609] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   79.901664] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   79.901720] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   79.901770] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   79.901820] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x0000000081d40fc8
[   79.901870] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   79.901920] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   79.901972] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   79.901981] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   79.902035] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   79.902100] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.902186] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   79.902272] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   79.902355] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   79.902437] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   79.902520] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   79.902601] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   79.902682] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   79.902764] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   79.902845] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   79.902925] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   79.903007] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   79.903088] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   79.903167] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   79.903260] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   79.903360] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   79.903454] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   79.903545] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   79.903640] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   79.903718] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   79.903798] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   79.903880] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   79.903960] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   79.904041] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   79.904121] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   79.904200] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   79.904276] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   79.904353] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   79.904431] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   79.904508] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   79.904587] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   79.904668] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   79.904749] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   79.904830] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   79.904910] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   79.904990] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   79.905069] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   79.905151] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   79.905233] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   79.905313] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.905393] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   79.905473] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.905554] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   79.905633] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   79.905715] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   79.905795] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   79.905874] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   79.905956] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   79.906038] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   79.906120] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   79.906200] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   79.906280] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   79.906362] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   79.906443] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   79.906523] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   79.906603] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   79.906683] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   79.906764] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   79.906843] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   79.906896] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.906922] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   79.906993] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.907001] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   79.907080] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   79.907169] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   79.907184] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.907269] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   79.907371] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   79.907478] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   79.907585] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   79.907669] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   79.907681] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   79.907691] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   79.907787] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   79.907870] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   79.907952] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   79.908032] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   79.908111] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   79.908190] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   79.908275] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   79.908344] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   79.908412] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   79.908480] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   79.908546] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   79.908611] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   79.908678] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   79.908744] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   79.908810] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   79.908876] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   79.908944] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   79.909012] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   79.909097] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   79.909179] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   79.909259] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   79.909338] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   79.909419] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   79.909499] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   79.909578] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   79.909658] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   79.909739] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   79.909819] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   79.909900] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   79.909985] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   79.910066] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   79.910146] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   79.910224] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   79.910305] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   79.910384] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   79.910462] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   79.910541] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   79.910621] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   79.910703] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   79.910784] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   79.910864] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.910944] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.911022] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.911103] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   79.911184] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.911277] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   79.911375] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.911467] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.911559] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.911653] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   79.911737] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.911816] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.911895] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   79.911973] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   79.912053] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.912134] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.912214] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.912295] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.912374] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   79.912457] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.912538] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   79.912619] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   79.912699] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.912780] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   79.912859] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.912938] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.913020] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.913101] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.913182] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.913261] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.913341] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.913420] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.913500] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.913579] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.913659] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.913738] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.913817] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.913897] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.913976] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.914053] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.914131] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.914222] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.914316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   79.914393] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   79.914472] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.914550] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   79.914628] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   79.914708] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   79.914788] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   79.914867] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   79.914948] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.915029] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.915108] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.915188] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   79.915281] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.915383] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   79.915478] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.915571] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.915654] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.915735] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   79.915815] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   79.915895] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   79.915974] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.916052] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.916130] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   79.916208] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   79.916288] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.916369] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   79.916450] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   79.916530] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   79.916611] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   79.916690] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   79.916771] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   79.916851] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   79.916930] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.917009] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   79.917089] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.917170] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.917251] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.917333] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.917415] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.917496] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.917579] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.917660] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.917740] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.917819] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.917899] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.917980] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.918059] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.918139] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.918221] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.918301] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.918380] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   79.918460] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   79.918543] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   79.918624] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   79.918704] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   79.918783] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   79.918862] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   79.918940] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   79.919019] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   79.919096] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   79.919174] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   79.919260] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   79.919356] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   79.919451] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   79.919545] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   79.919636] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.919719] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.919800] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   79.919883] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   79.919964] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   79.920043] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   79.920125] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   79.920207] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   79.920290] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   79.920317] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   79.920417] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   79.920493] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   79.920554] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   79.920606] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   79.920662] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   79.920711] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   79.920760] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000009e753557
[   79.920809] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   79.920861] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   79.920911] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   79.920920] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   79.920973] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   79.921033] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   79.921118] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   79.921203] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   79.921285] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   79.921365] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   79.921445] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   79.921527] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   79.921608] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   79.921687] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   79.921766] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   79.921847] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   79.921927] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   79.922006] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   79.922084] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   79.922162] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   79.922241] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   79.922321] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   79.922400] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   79.922478] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   79.922558] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   79.922639] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   79.922718] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   79.922797] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   79.922874] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   79.922953] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   79.923032] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   79.923110] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   79.923189] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   79.923279] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   79.923373] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   79.923466] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   79.923558] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   79.923649] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   79.923727] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   79.923806] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   79.923887] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   79.923966] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   79.924043] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   79.924120] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   79.924199] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.924279] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   79.924357] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.924435] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   79.924514] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   79.924590] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   79.924671] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   79.924750] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   79.924829] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   79.924907] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   79.924985] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   79.925064] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   79.925143] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   79.925223] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   79.925302] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   79.925381] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   79.925461] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   79.925541] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   79.925621] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   79.925699] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   79.925777] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   79.925857] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   79.925936] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   79.926015] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   79.926094] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   79.926173] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   79.926253] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   79.926332] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   79.926411] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   79.926488] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   79.926566] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   79.926646] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   79.926726] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   79.926804] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   79.926884] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   79.926970] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   79.927040] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   79.927110] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   79.927182] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   79.927261] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   79.927339] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   79.927418] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   79.927498] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   79.927578] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   79.927656] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   79.927725] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   79.927794] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   79.927880] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   79.927963] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   79.928044] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   79.928125] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   79.928207] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   79.928289] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   79.928372] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   79.928455] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   79.928539] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   79.928624] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   79.928708] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   79.928792] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   79.928876] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   79.928959] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   79.929039] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   79.929120] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   79.929198] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   79.929278] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   79.929360] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   79.929444] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   79.929526] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   79.929606] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   79.929688] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.929768] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.929848] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.929926] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   79.930008] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.930087] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   79.930165] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.930242] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.930323] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.930403] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   79.930484] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.930562] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.930644] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   79.930726] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   79.930806] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.930888] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.930969] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.931050] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.931129] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   79.931221] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   79.931313] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   79.931406] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   79.931499] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.931591] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   79.931672] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.931753] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.931834] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.931915] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   79.931996] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.932075] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.932154] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.932235] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.932315] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.932322] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.932394] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.932429] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.932473] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.932555] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.932620] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.932637] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.932718] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.932808] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.932912] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.933017] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.933070] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   79.933082] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   79.933123] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.933213] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   79.933296] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   79.933376] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.933456] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   79.933539] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   79.933620] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   79.933700] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   79.933778] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   79.933856] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   79.933938] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   79.934020] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   79.934102] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   79.934183] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   79.934263] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   79.934343] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   79.934424] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   79.934503] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   79.934583] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   79.934663] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   79.934742] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   79.934821] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   79.934901] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   79.934980] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   79.935058] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   79.935136] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   79.935216] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   79.935316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   79.935414] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   79.935509] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   79.935602] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   79.935689] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   79.935769] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   79.935847] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   79.935926] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   79.936004] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   79.936085] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   79.936164] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   79.936247] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   79.936329] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   79.936410] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   79.936491] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   79.936571] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.936653] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.936733] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   79.936813] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   79.936895] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   79.936976] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.937056] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.937138] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   79.937221] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   79.937303] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   79.937395] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   79.937492] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   79.937577] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   79.937659] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   79.937741] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   79.937823] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   79.937905] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   79.937984] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   79.938065] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   79.938146] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   79.938226] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   79.938307] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   79.938388] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   79.938470] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   79.938552] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   79.938631] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   79.938711] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   79.938794] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   79.938875] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   79.938957] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   79.939039] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   79.939120] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   79.939202] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   79.940655] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:584]
[   79.942161] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:586]
[   79.943524] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:587]
[   79.944197] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1]
[   79.944211] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:508:eDP-1]
[   79.944319] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   79.944386] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[   79.944446] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[   79.944506] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[   79.944530] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   79.944551] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[   79.944571] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[   79.944592] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] VRR capable: yes
[   79.944663] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
[   79.944724] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
[   79.944966] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x03000 AUX -> (ret=  1) 00
[   79.945005] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] probed modes:
[   79.945017] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   79.945138] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1]
[   79.945145] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[   79.949236] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1] disconnected
[   79.949270] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1]
[   79.949277] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[   79.949405] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1] disconnected
[   79.949434] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2]
[   79.949441] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[   79.949559] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2] disconnected
[   79.949583] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3]
[   79.949589] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[   79.950050] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  1) 14
[   79.950871] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.951705] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.951715] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.951725] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.952252] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  8) 14 1e 80 aa 02 00 00 00
[   79.952261] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][DPRX] LTTPR common capabilities: 14 1e 80 aa 02 00 00 00
[   79.952718] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) 55
[   79.953194] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) aa
[   79.953613] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0020 AUX -> (ret=  3) 03 03 00
[   79.953622] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][LTTPR 1] PHY capabilities: 03 03 00
[   79.954290] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf003d AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   79.954299] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: LTTPR 1: OUI 00-00-00 dev-ID  HW-rev 0.0 SW-rev 0.0 quirks 0x0000
[   79.955106] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.955930] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.955938] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.955948] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   79.956463] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 53 22 10 05 05
[   79.956473] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DP branch: OUI 90-cc-24 dev-ID SYNAS" HW-rev 1.0 SW-rev 5.5 quirks 0x0068
[   79.956803] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02210 AUX -> (ret=  1) f8
[   79.957132] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00200 AUX -> (ret=  1) 02
[   79.957604] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   79.957723] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.957837] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00080 AUX -> (ret= 12) 08 00 00 00 00 00 00 00 08 00 00 00
[   79.957845] i915 0000:00:02.0: [drm:drm_dp_read_downstream_info [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD DFP: 08 00 00 00 00 00 00 00 08 00 00 00
[   79.957834] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   79.958171] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00021 AUX -> (ret=  1) 01
[   79.958180] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [ENCODER:544:DDI TC3/PHY TC3] MST support: port: yes, sink: MST, modparam: yes -> enable: MST
[   79.958547] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   79.958560] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   79.958890] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00111 AUX -> (ret=  1) 07
[   79.959397] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0000 AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   79.959754] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe000d AUX -> (ret=  3) 00 00 00
[   79.960145] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0020 AUX -> (ret=  5) 00 00 00 00 00
[   79.960485] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0028 AUX -> (ret=  2) 00 00
[   79.960810] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0030 AUX -> (ret=  1) 00
[   79.961153] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00070 AUX -> (ret=  2) 00 00
[   79.961731] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00060 AUX -> (ret= 16) 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   79.961738] i915 0000:00:02.0: [drm:intel_dp_read_dsc_dpcd [i915]] DSC DPCD: 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   79.962131] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00090 AUX -> (ret=  1) 0f
[   79.962142] i915 0000:00:02.0: [drm:intel_dp_get_dsc_sink_cap [i915]] FEC CAPABILITY: f
[   79.962565] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x000a0 AUX -> (ret=  3) 09 1e 10
[   79.962896] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02214 AUX -> (ret=  1) 00
[   79.962906] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   79.962982] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000, 810000
[   79.963049] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000, 810000
[   79.963116] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3] disconnected
[   79.963153] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4]
[   79.963161] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[   79.963298] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4] disconnected
[   79.963337] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:509:DP-5]
[   79.963345] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 0000000039cd68e6 (2)
[   79.963356] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 0000000039cd68e6 (1)
[   79.963365] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:509:DP-5] disconnected
[   79.963390] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:567:DP-6]
[   79.963401] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 00000000b4779840 (2)
[   79.963410] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000b4779840 (1)
[   79.963418] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 00000000b4779840 (2)
[   79.963428] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   79.963437] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   79.963447] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   79.963455] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=1:
[   79.963463] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   79.964000] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 00 10 50 01 da
[   80.002915] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.003071] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.003328] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.003798] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.003819] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.004485] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 05 c3 22 02 01 00 db 00 00 00 00 00 00 00 00
[   80.004496] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.004508] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.004600] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   80.004633] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.004645] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   80.004657] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   80.004667] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=128:
[   80.004677] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   80.004883] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.005435] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 00 10 50 80 e0
[   80.005922] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.005951] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.046536] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.047151] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.047776] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.048727] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.048796] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.049877] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 02 80 00 ff ff ff ff ff ff 00 04 72
[   80.049937] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.050635] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 1a 07 3f 63 60 21 10 20 01 04 a5 3c 22 78 3f 53
[   80.051308] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) a5 a7 56 52 9c 26 11 50 54 b3 0c 00 71 4f 81 32
[   80.051351] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.051804] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.052256] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.052288] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.063480] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.064462] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.064544] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.065626] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 80 81 c0 81 00 95 00 b3 00 d1 c0 01 01
[   80.065684] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.066373] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 2a 44 80 a0 70 38 27 40 30 20 35 00 56 50 21 00
[   80.067040] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 1a 02 3a 80 18 71 38 2d 40 58 2c 45 00 56 c5
[   80.067080] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.067510] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.067956] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.067990] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.095307] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.096102] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.096795] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.097774] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.097834] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.098772] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 50 21 00 00 1e 00 00 00 fd 00 30 4b 54
[   80.098821] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.099488] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 54 12 01 0a 20 20 20 20 20 20 00 00 00 fc 00 43
[   80.100122] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 42 32 37 32 0a 20 20 20 20 20 20 20 01 e3 9e
[   80.100162] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.100265] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   80.100343] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.100386] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   80.100429] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   80.100464] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=128:
[   80.100499] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 80
[   80.100594] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.101189] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 80 10 50 80 bb
[   80.101753] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.101809] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.119509] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.120314] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.121121] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.122128] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.122195] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.123181] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 02 80 02 03 18 f1 4b 90 01 02 03 04
[   80.123263] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.123942] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 05 11 12 13 14 1f 23 09 07 07 83 01 00 00 02 3a
[   80.124613] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 80 18 71 38 2d 40 58 2c 45 00 56 50 21 00 00 dc
[   80.124654] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.125089] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.125526] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.125554] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.146966] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.147775] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.148598] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.149647] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.149722] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.150886] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 1e 01 1d 00 72 51 d0 1e 20 6e 28 55 00
[   80.150938] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.151609] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 56 50 21 00 00 1e 8c 0a d0 8a 20 e0 2d 10 10 3e
[   80.152295] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 96 00 56 50 21 00 00 18 2a 44 80 a0 70 38 27 8a
[   80.152356] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.152808] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.153267] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.153312] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.155424] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.156227] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.156276] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.157175] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 40 30 20 35 00 56 50 21 00 00 1a 00 00
[   80.157216] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.157876] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[   80.158514] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 00 00 00 00 00 00 00 00 00 00 00 00 00 97 ac
[   80.158551] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.158650] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   80.158723] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000b4779840 (1)
[   80.158767] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] Supported Monitor Refresh rate range is 48 Hz - 75 Hz
[   80.158897] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   80.158973] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.159004] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] ELD monitor CB272
[   80.159104] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] ELD size 28, SAD count 1
[   80.159407] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.159438] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.159760] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 60 74250 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   80.159871] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 50 74250 1920 2448 2492 2640 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   80.159974] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 60 74176 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   80.160077] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:567:DP-6] probed modes:
[   80.160110] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 75 174500 1920 1968 2000 2080 1080 1083 1088 1119 0x48 0x9
[   80.160138] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.160162] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.160186] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.160210] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 50 148500 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5
[   80.160233] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1680x1050": 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   80.160256] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x1024": 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   80.160279] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1440x900": 60 106500 1440 1520 1672 1904 900 903 909 934 0x40 0x6
[   80.160303] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x800": 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   80.160327] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1152x864": 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   80.160352] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   80.160378] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   80.160403] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   80.160427] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 50 74250 1280 1720 1760 1980 720 725 730 750 0x40 0x5
[   80.160452] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[   80.160477] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   80.160501] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   80.160526] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[   80.160550] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x576": 50 27000 720 732 796 864 576 581 586 625 0x40 0xa
[   80.160574] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x576": 50 27000 720 732 796 864 576 581 586 625 0x40 0xa
[   80.160599] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27027 720 736 798 858 480 489 495 525 0x40 0xa
[   80.160622] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27027 720 736 798 858 480 489 495 525 0x40 0xa
[   80.160647] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   80.160670] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   80.160694] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   80.160718] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[   80.160742] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[   80.160766] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   80.160790] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   80.160813] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x400": 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   80.161305] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:570:DP-7]
[   80.161345] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 000000004b112a7e (2)
[   80.161386] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 000000004b112a7e (1)
[   80.161423] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 000000004b112a7e (2)
[   80.161460] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.161500] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   80.161541] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   80.161577] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3 num_tx=1 id=80 size=1:
[   80.161611] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   80.162231] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 31 50 01 00 10 50 01 66
[   80.170305] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.170532] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.170785] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.171328] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.171351] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.172097] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 05 c3 22 03 01 00 58 00 00 00 00 00 00 00 00
[   80.172134] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.172175] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.172203] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.172279] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.172319] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   80.172360] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   80.172393] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3 num_tx=1 id=80 size=128:
[   80.172424] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   80.172593] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.173179] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 31 50 01 00 10 50 80 5c
[   80.173731] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.173782] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.203636] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.204434] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.205224] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.206345] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.206429] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.207542] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 03 80 00 ff ff ff ff ff ff 00 4c 2d
[   80.207603] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.208291] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 35 0f 45 32 39 30 13 22 01 04 b5 46 27 78 3a ae
[   80.208969] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) a5 af 4f 42 af 26 0f 50 54 bf ef 80 71 4f 81 52
[   80.209009] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.209459] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.209909] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.209940] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.227273] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.228053] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.228856] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.229935] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.230013] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.231069] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 00 81 c0 81 80 a9 c0 b3 00 95 00 01 01
[   80.231122] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.231858] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 22 cc 00 50 f0 70 3e 80 18 10 35 00 b9 88 21 00
[   80.232523] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 1a 00 00 00 fd 00 1e 4b 1e 87 3c 00 0a 20 ff
[   80.232562] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.232997] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.233433] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.233463] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.233743] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.234410] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.234447] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.235328] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 20 20 20 20 20 00 00 00 fc 00 55 33 32
[   80.235368] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.236021] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 4a 35 39 78 0a 20 20 20 20 20 00 00 00 ff 00 48
[   80.236649] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 43 4a 58 35 30 31 30 35 37 0a 20 20 01 5d 1c
[   80.236684] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.236797] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   80.236873] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.236915] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   80.236962] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   80.237000] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3 num_tx=1 id=80 size=128:
[   80.237037] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 80
[   80.237113] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.237713] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 31 50 01 80 10 50 80 07
[   80.238174] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.238211] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.260221] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.260924] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.261632] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.262599] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.262668] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.263649] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 03 80 02 03 0f f0 42 10 5f 23 09 07
[   80.263699] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.264360] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 07 83 01 00 00 02 3a 80 18 71 38 2d 40 58 2c 45
[   80.265014] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 b9 88 21 00 00 1e 56 5e 00 a0 a0 a0 29 50 db
[   80.265046] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.265468] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.265896] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.265923] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.281331] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.281991] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.282641] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.283607] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.283669] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.284587] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 30 20 35 00 b9 88 21 00 00 1a 04 74 00
[   80.284630] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.285280] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 30 f2 70 5a 80 b0 58 8a 00 b9 88 21 00 00 1e 00
[   80.285926] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 57
[   80.285959] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.286389] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.286823] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.286855] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.291603] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.292539] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.292610] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.293595] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 00 00 00 00 00 00 00 00 00 00 00 00 00
[   80.293645] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.294321] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[   80.294963] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 00 00 00 00 00 00 00 00 00 00 00 00 00 56 4e
[   80.295006] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.295114] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   80.295236] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 000000004b112a7e (1)
[   80.295289] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:570:DP-7] Assigning EDID-1.4 digital sink color depth as 10 bpc.
[   80.295443] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.295434] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:570:DP-7] ELD monitor U32J59x
[   80.295557] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:570:DP-7] ELD size 32, SAD count 1
[   80.295880] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.295913] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.296559] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:570:DP-7] probed modes:
[   80.296600] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   80.296635] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 30 297000 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5
[   80.296669] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 30 297000 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5
[   80.296701] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 30 296703 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5
[   80.296731] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "2560x1440": 60 241500 2560 2608 2640 2720 1440 1443 1448 1481 0x40 0x9
[   80.296760] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.296789] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.296819] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.296847] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1680x1050": 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   80.296877] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1600x900": 60 108000 1600 1624 1704 1800 900 901 904 1000 0x40 0x5
[   80.296906] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x1024": 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   80.296935] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x1024": 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   80.296962] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1440x900": 60 106500 1440 1520 1672 1904 900 903 909 934 0x40 0x6
[   80.296988] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x800": 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   80.297013] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1152x864": 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   80.297038] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   80.297062] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   80.297086] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   80.297110] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[   80.297134] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   80.297158] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "832x624": 75 57284 832 864 928 1152 624 625 628 667 0x40 0xa
[   80.297182] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   80.297206] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 72 50000 800 856 976 1040 600 637 643 666 0x40 0x5
[   80.297230] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   80.297254] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[   80.297278] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   80.297302] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 73 31500 640 664 704 832 480 489 492 520 0x40 0xa
[   80.297326] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[   80.297350] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[   80.297374] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   80.297398] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x400": 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   80.299710] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   80.300016] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.300210] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000a848bd48
[   80.300375] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   80.300534] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   80.300689] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   80.300712] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   80.300857] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.301074] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   80.301284] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   80.301477] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   80.301675] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   80.301861] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   80.302033] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   80.302198] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   80.302367] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   80.302527] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   80.302683] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   80.302840] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   80.302980] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   80.303118] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   80.303259] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   80.303397] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   80.303528] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   80.303653] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   80.303778] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   80.303905] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   80.304027] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   80.304144] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   80.304259] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   80.304363] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   80.304465] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   80.304568] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   80.304672] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   80.304777] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   80.304872] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   80.304963] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   80.305055] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   80.305146] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   80.305236] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   80.305324] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   80.305410] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   80.305496] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   80.305581] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   80.305667] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   80.305754] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.305839] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   80.305918] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.306001] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   80.306082] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   80.306163] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   80.306245] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   80.306326] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   80.306406] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   80.306493] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   80.306566] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   80.306635] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   80.306707] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   80.306779] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   80.306847] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   80.306916] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   80.306983] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   80.307051] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   80.307120] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   80.307187] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   80.307259] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   80.307358] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   80.307455] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   80.307550] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   80.307643] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   80.307731] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   80.307813] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   80.307894] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   80.307976] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   80.308058] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   80.308138] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   80.308220] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   80.308307] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   80.308388] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   80.308470] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   80.308559] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   80.308642] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   80.308723] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   80.308803] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   80.308883] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   80.308967] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   80.309050] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   80.309131] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   80.309213] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.309295] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.309376] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.309460] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   80.309542] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.309622] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   80.309703] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.309784] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.309864] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.309943] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   80.310024] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.310105] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.310185] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   80.310265] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   80.310344] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.310424] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.310503] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.310582] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.310663] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   80.310744] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.310825] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   80.310905] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   80.310985] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.311066] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   80.311146] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.311227] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.311315] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.311414] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.311510] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.311602] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.311684] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.311766] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.311848] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.311928] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.312009] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.312088] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.312166] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.312245] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.312325] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.312406] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.312488] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.312570] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.312652] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   80.312733] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   80.312814] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.312894] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   80.312974] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   80.313055] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   80.313136] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   80.313217] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   80.313298] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.313380] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.313461] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.313543] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   80.313625] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.313708] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   80.313790] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.313870] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.313951] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.314033] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   80.314115] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   80.314194] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   80.314272] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.314350] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.314431] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   80.314512] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   80.314592] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.314670] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.314750] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.314832] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.314914] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.314997] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.315051] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.315091] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   80.315177] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.315185] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   80.315281] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.315381] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   80.315383] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.315479] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.315581] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.315689] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.315797] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.315862] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.315875] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.315907] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.316010] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.316094] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.316177] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   80.316271] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   80.316374] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   80.316477] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   80.316579] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.316679] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.316781] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.316863] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.316945] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.317024] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.317107] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.317190] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   80.317272] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   80.317351] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   80.317429] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   80.317507] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   80.317587] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   80.317669] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   80.317694] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   80.317796] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.317873] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000ce5033ac
[   80.317942] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   80.317997] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   80.318049] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   80.318058] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   80.318115] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.318202] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   80.318287] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   80.318369] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   80.318451] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   80.318534] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   80.318615] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   80.318696] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   80.318777] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   80.318856] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   80.318935] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   80.319016] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   80.319095] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   80.319175] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   80.319266] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   80.319370] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   80.319466] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   80.319553] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   80.319633] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   80.319713] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   80.319793] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   80.319874] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   80.319953] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   80.320034] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   80.320115] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   80.320195] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   80.320274] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   80.320355] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   80.320436] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   80.320517] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   80.320599] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   80.320679] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   80.320758] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   80.320838] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   80.320918] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   80.320998] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   80.321079] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   80.321158] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   80.321236] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.321317] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   80.321396] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.321479] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   80.321560] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   80.321640] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   80.321720] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   80.321798] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   80.321881] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   80.321966] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   80.322033] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   80.322101] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   80.322169] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   80.322239] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   80.322308] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   80.322375] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   80.322441] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   80.322506] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   80.322573] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   80.322641] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   80.322707] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   80.322792] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   80.322874] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   80.322953] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   80.323031] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   80.323110] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   80.323190] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   80.323287] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   80.323384] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   80.323480] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   80.323576] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   80.323666] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   80.323750] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   80.323831] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   80.323913] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   80.323993] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   80.324074] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   80.324159] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   80.324237] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   80.324317] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   80.324401] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   80.324484] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   80.324564] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   80.324643] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.324722] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.324802] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.324884] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   80.324966] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.325047] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   80.325125] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.325205] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.325287] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.325368] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   80.325448] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.325527] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.325608] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   80.325687] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   80.325766] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.325845] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.325927] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.326009] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.326090] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   80.326171] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.326252] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   80.326334] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   80.326416] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.326498] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   80.326577] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.326655] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.326734] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.326817] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.326901] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.326982] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.327062] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.327145] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.327233] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.327336] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.327432] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.327528] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.327623] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.327705] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.327788] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.327870] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.327952] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.328034] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.328118] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   80.328202] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   80.328284] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.328363] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   80.328445] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   80.328526] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   80.328606] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   80.328685] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   80.328763] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.328843] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.328922] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.329001] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   80.329082] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.329163] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   80.329242] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.329321] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.329402] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.329483] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   80.329562] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   80.329639] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   80.329716] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.329794] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.329872] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   80.329952] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   80.330030] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.330109] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.330187] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.330266] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.330348] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.330429] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.330510] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   80.330591] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   80.330671] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.330753] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   80.330834] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.330913] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.330992] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.331070] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.331152] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.331238] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.331338] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.331435] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   80.331531] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   80.331621] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   80.331701] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   80.331781] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.331862] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.331942] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.332022] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.332102] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.332185] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.332266] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.332346] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   80.332427] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   80.332506] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   80.332587] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   80.332666] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   80.332746] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   80.332826] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   80.332858] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   80.332948] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.333011] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   80.333068] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   80.333122] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   80.333177] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   80.333226] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   80.333275] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000a848bd48
[   80.333324] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   80.333375] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   80.333424] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   80.333433] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   80.333485] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   80.333545] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.333630] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   80.333714] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   80.333798] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   80.333881] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   80.333962] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   80.334042] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   80.334124] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   80.334204] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   80.334285] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   80.334364] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   80.334445] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   80.334527] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   80.334609] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   80.334689] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   80.334768] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   80.334848] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   80.334929] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   80.335010] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   80.335089] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   80.335170] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   80.335259] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   80.335358] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   80.335452] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   80.335546] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   80.335642] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   80.335726] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   80.335805] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   80.335885] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   80.335965] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   80.336045] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   80.336125] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   80.336204] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   80.336284] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   80.336364] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   80.336443] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   80.336527] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   80.336574] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.336622] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   80.336699] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.336716] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   80.336809] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.336905] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.336909] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   80.337006] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.337106] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   80.337213] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   80.337319] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   80.337382] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.337395] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.337428] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   80.337527] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   80.337622] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   80.337717] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   80.337812] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   80.337905] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   80.337998] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   80.338093] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   80.338185] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   80.338278] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   80.338358] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   80.338437] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   80.338518] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   80.338597] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   80.338675] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   80.338753] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   80.338830] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   80.338909] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   80.338991] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   80.339072] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   80.339153] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   80.339245] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   80.339343] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   80.339437] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   80.339534] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   80.339627] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   80.339709] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   80.339790] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   80.339871] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   80.339956] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   80.340029] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   80.340098] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   80.340167] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   80.340234] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   80.340301] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   80.340369] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   80.340438] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   80.340507] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   80.340575] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   80.340642] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   80.340710] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   80.340796] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   80.340879] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   80.340959] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   80.341040] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   80.341120] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   80.341201] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   80.341281] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   80.341361] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   80.341440] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   80.341521] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   80.341602] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   80.341685] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   80.341768] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   80.341848] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   80.341929] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   80.342010] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   80.342089] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   80.342171] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   80.342253] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   80.342338] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   80.342421] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   80.342504] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   80.342586] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.342667] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.342750] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.342832] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   80.342914] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.342994] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   80.343074] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.343153] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.343244] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.343342] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   80.343440] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.343533] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.343627] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   80.343712] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   80.343795] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.343877] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.343961] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.344043] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.344124] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   80.344207] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.344291] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   80.344373] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   80.344453] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.344533] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   80.344613] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.344696] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.344777] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.344857] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.344936] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.345017] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.345097] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.345177] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.345256] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.345335] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.345413] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.345493] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.345574] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.345654] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.345734] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.345816] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.345896] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.345977] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.346055] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   80.346135] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   80.346215] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.346297] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   80.346379] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   80.346458] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   80.346539] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   80.346617] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   80.346698] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.346779] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.346859] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.346940] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   80.347020] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.347100] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   80.347182] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.347265] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.347358] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.347452] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   80.347548] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   80.347643] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   80.347726] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.347808] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.347889] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   80.347969] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   80.348047] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.348127] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   80.348208] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   80.348289] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   80.348371] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   80.348453] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   80.348535] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   80.348615] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   80.348694] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.348772] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   80.348852] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.348933] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.349013] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.349091] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.349173] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.349253] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.349333] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.349415] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.349495] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.349575] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.349655] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.349736] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.349817] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.349897] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.349975] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.350052] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.350132] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   80.350214] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   80.350296] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   80.350377] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   80.350460] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   80.350543] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   80.350625] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   80.350707] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   80.350788] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   80.350869] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   80.350950] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   80.351031] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   80.351113] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   80.351196] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   80.351293] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   80.351390] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.351471] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.351552] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   80.351632] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   80.351711] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   80.351790] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   80.351869] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   80.351948] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   80.352029] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   80.352053] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   80.352150] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.352213] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   80.352270] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   80.352322] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   80.352378] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   80.352429] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   80.352478] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000ce5033ac
[   80.352527] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   80.352577] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   80.352628] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   80.352637] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   80.352690] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   80.352749] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.352832] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   80.352917] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   80.353001] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   80.353084] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   80.353167] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   80.353250] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   80.353330] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   80.353411] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   80.353493] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   80.353573] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   80.353653] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   80.353733] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   80.353813] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   80.353893] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   80.353972] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   80.354050] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   80.354128] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   80.354208] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   80.354287] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   80.354364] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   80.354442] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   80.354519] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   80.354597] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   80.354674] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   80.354753] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   80.354832] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   80.354910] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   80.354989] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   80.355068] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   80.355147] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   80.355241] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   80.355330] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   80.355420] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   80.355513] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   80.355606] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   80.355697] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   80.355774] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   80.355852] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   80.355932] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.356012] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   80.356093] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.356174] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   80.356253] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   80.356330] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   80.356411] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   80.356491] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   80.356570] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   80.356648] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   80.356728] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   80.356807] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   80.356885] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   80.356962] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   80.357041] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   80.357121] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   80.357202] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   80.357283] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   80.357363] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   80.357442] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   80.357524] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   80.357604] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   80.357683] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   80.357761] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   80.357840] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   80.357919] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   80.358000] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   80.358080] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   80.358158] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   80.358239] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   80.358320] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   80.358398] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   80.358480] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   80.358561] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   80.358641] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   80.358724] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   80.358795] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   80.358865] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   80.358935] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   80.359001] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   80.359068] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   80.359134] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   80.359202] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   80.359282] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   80.359364] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   80.359443] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   80.359522] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   80.359623] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   80.359711] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   80.359791] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   80.359870] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   80.359950] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   80.360040] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   80.360136] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   80.360232] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   80.360320] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   80.360401] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   80.360480] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   80.360564] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   80.360645] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   80.360729] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   80.360810] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   80.360891] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   80.360972] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   80.361049] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   80.361127] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   80.361209] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   80.361291] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   80.361370] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   80.361450] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.361531] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.361627] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.361614] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.361723] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   80.361742] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.361822] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.361921] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   80.361960] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.362020] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.362114] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.362217] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.362326] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   80.362445] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.362434] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.362458] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.362538] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.362633] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   80.362731] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   80.362827] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.362922] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.363018] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.363113] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.363214] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   80.363310] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.363402] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   80.363496] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   80.363578] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.363658] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   80.363740] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.363821] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.363904] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.363986] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.364068] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.364151] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.364231] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.364313] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.364394] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.364475] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.364558] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.364639] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.364721] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.364801] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.364884] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.364966] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.365047] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.365130] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.365213] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   80.365295] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   80.365377] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.365457] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   80.365538] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   80.365621] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   80.365703] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   80.365783] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   80.365865] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.365946] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.366027] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.366106] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   80.366186] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.366266] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   80.366348] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.366429] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.366507] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.366587] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   80.366669] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   80.366751] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   80.366831] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.366913] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.366994] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   80.367074] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   80.367153] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.367237] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   80.367334] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   80.367429] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   80.367523] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   80.367621] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   80.367701] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   80.367782] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   80.367862] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.367942] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   80.368022] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.368102] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.368183] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.368265] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.368348] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.368429] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.368511] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.368591] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.368670] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.368750] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.368829] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.368908] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.368985] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.369061] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.369141] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.369221] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.369299] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   80.369380] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   80.369460] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   80.369539] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   80.369619] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   80.369701] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   80.369781] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   80.369860] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   80.369939] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   80.370016] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   80.370096] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   80.370177] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   80.370258] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   80.370339] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   80.370420] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   80.370500] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.370579] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.370658] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   80.370738] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   80.370819] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   80.370900] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   80.370982] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   80.371063] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   80.371145] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   80.371245] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   80.371375] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.371449] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000a848bd48
[   80.371517] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   80.371584] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   80.371639] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   80.371648] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   80.371702] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.371787] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   80.371871] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.371930] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   80.371987] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   80.372042] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   80.372100] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   80.372153] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   80.372205] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000a848bd48
[   80.372255] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   80.372304] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   80.372354] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   80.372362] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   80.372415] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   80.372474] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.372559] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   80.372641] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.372702] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000a848bd48
[   80.372756] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   80.372809] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   80.372865] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 20 slots for pipe bpp 24.0000 dsc 0
[   80.372918] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.373003] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   80.373089] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.373150] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   80.373205] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   80.373260] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   80.373318] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   80.373369] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   80.373421] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000a848bd48
[   80.373470] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   80.373519] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   80.373570] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   80.373622] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   80.373680] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.373765] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   80.373849] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] Link bpp limited to 23.9375
[   80.373930] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 18.0000
[   80.373988] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000a848bd48
[   80.374045] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 18.0000
[   80.374097] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 18.0000
[   80.374148] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 14 slots for pipe bpp 18.0000 dsc 0
[   80.374198] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 18, dithering: 1
[   80.374281] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   80.374363] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.374421] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   80.374475] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   80.374529] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   80.374585] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   80.374637] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   80.374687] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000a848bd48
[   80.374739] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   80.374789] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   80.374839] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   80.374887] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   80.374943] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.375026] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   80.375111] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   80.375196] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   80.375289] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   80.375383] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   80.375477] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 14, data 1779513/8388608 link 96119/524288)
[   80.375570] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   80.375664] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   80.375749] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   80.375830] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   80.375910] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   80.375989] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   80.376070] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   80.376150] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   80.376230] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   80.376312] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   80.376391] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   80.376471] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   80.376551] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   80.376632] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   80.376714] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   80.376794] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   80.376875] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   80.376957] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   80.377036] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   80.377118] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   80.377199] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   80.377281] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   80.377362] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   80.377444] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   80.377525] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   80.377605] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   80.377683] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   80.377762] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   80.377843] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   80.377925] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in fec_enable (expected no, found yes)
[   80.378004] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   80.378085] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   80.378167] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.378248] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   80.378327] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.378409] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 18)
[   80.378491] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   80.378573] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   80.378654] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   80.378735] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   80.378816] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   80.378898] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   80.378979] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   80.379060] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   80.379138] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   80.379233] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   80.379331] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   80.379433] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   80.379529] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   80.379624] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   80.379715] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   80.379810] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   80.379903] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   80.379983] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   80.380077] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   80.380159] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   80.380239] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   80.380317] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   80.380397] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   80.380476] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   80.380556] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   80.380633] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   80.380712] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   80.380794] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   80.380873] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   80.380951] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   80.381027] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   80.381105] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   80.381185] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   80.381264] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   80.381341] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   80.381419] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   80.381496] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   80.381574] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   80.381651] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   80.381731] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   80.381812] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   80.381892] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   80.381972] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   80.382053] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.382134] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   80.382212] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.382291] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   80.382373] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   80.382453] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   80.382534] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   80.382613] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   80.382695] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   80.382775] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   80.382855] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   80.382935] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   80.383014] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   80.383093] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   80.383173] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   80.383253] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   80.383346] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   80.383440] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   80.383534] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   80.383630] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   80.383721] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   80.383801] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   80.383883] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   80.383965] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   80.384046] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   80.384126] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   80.384207] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   80.384288] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   80.384369] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   80.384448] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   80.384529] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   80.384609] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   80.384688] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   80.384770] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   80.384852] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   80.384944] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   80.385016] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x7
[   80.385085] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 682), active pipes 0x1 -> 0x7
[   80.385152] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (682 - 2048), active pipes 0x1 -> 0x7
[   80.385219] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   80.385287] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   80.385356] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   80.385423] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.385490] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.385555] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.385619] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 -  646), size    0 ->  646
[   80.385686] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> ( 646 -  682), size    0 ->   36
[   80.385751] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   80.385816] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   80.385882] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   80.385948] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   80.386015] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> ( 682 - 1979), size    0 -> 1297
[   80.386082] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   80.386147] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   80.386213] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   80.386278] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   80.386345] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   80.386414] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   80.386498] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   80.386582] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 9299 required 3499
[   80.386662] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 10925 required 3499
[   80.386743] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 11707 required 3499
[   80.386822] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 10508 required 3499
[   80.386904] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 3499
[   80.386986] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 3499
[   80.387080] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 3499
[   80.387062] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.387174] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   80.387184] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.387273] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   80.387373] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   80.387429] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.387468] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   80.387563] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 97984 kHz
[   80.387661] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   80.387771] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   80.387920] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.387878] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   80.387938] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.387986] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   80.388073] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   80.388155] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   80.388238] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   80.388319] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   80.388403] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] sharing existing TBT PLL (pipe mask 0x2, active 0x0)
[   80.388482] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   80.388561] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] sharing existing TC PLL 3 (pipe mask 0x2, active 0x0)
[   80.388641] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   80.388721] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   80.388805] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   80.388888] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   80.388970] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   80.389050] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.389129] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.389207] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.389286] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   80.389365] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.389444] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   80.389525] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.389605] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.389686] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.389766] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   80.389846] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.389925] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.390004] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   80.390086] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   80.390167] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.390247] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.390328] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.390406] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.390485] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   80.390566] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.390649] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   80.390730] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   80.390812] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.390891] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   80.390971] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.391051] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.391133] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.391216] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.391315] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.391410] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.391505] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.391599] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.391681] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.391761] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.391841] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.391919] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.392000] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.392080] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.392159] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.392237] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.392316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.392398] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.392479] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   80.392558] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[   80.392637] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[   80.392716] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[   80.392795] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[   80.392873] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [NOFB], visible: no
[   80.392952] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   80.393033] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   80.393114] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 18, dithering: 1
[   80.393192] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   80.393271] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.393350] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.393432] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.393513] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 1779513, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 14
[   80.393596] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.393677] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   80.393757] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.393836] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.393917] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.393999] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   80.394080] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   80.394160] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   80.394240] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.394322] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.394404] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   80.394486] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   80.394566] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.394646] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.394725] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.394807] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.394889] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.394970] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.395050] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   80.395131] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   80.395214] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.395305] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   80.395402] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.395501] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.395595] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.395679] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.395758] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.395836] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.395916] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.395997] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.396076] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.396158] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.396240] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.396321] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.396401] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.396483] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.396564] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.396645] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.396724] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.396804] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.396882] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   80.396963] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   80.397044] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   80.397126] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   80.397207] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   80.397286] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   80.397365] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   80.397446] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   80.397528] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   80.397610] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   80.397691] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.397774] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.397854] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.397933] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   80.398015] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.398096] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   80.398176] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.398256] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.398335] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.398414] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   80.398494] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   80.398577] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   80.398659] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.398738] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.398819] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   80.398901] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   80.398981] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.399060] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   80.399139] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   80.399222] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   80.399315] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   80.399411] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   80.399507] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   80.399606] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   80.399686] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.399767] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   80.399845] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.399925] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.400006] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.400085] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.400165] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.400244] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.400324] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.400404] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.400484] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.400562] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.400639] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.400717] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.400796] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.400876] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.400954] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.401032] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.401108] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   80.401187] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   80.401267] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   80.401348] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   80.401426] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   80.401505] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   80.401583] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   80.401663] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   80.401742] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   80.401821] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   80.401899] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   80.401980] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   80.402061] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   80.402140] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   80.402220] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   80.402302] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.402383] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.402462] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   80.402541] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   80.402619] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   80.402699] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   80.402779] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   80.402858] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   80.402940] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   80.402948] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   80.402978] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   80.403062] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.403132] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.403205] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.403297] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   80.403404] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.403483] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000ce5033ac
[   80.403550] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   80.403616] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   80.403670] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   80.403679] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   80.403733] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.403817] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   80.403901] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   80.403985] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   80.404068] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   80.404150] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   80.404231] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   80.404314] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   80.404397] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   80.404478] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   80.404560] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   80.404641] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   80.404721] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   80.404802] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   80.404883] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   80.404964] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   80.405044] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   80.405124] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   80.405205] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   80.405285] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   80.405365] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   80.405445] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   80.405526] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   80.405606] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   80.405686] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   80.405766] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   80.405847] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   80.405928] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   80.406007] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   80.406086] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   80.406166] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   80.406247] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   80.406327] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   80.406407] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   80.406487] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   80.406566] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   80.406645] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   80.406726] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   80.406805] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.406884] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   80.406962] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.407044] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   80.407124] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   80.407206] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   80.407300] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   80.407394] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   80.407489] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   80.407591] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   80.407669] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   80.407737] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   80.407807] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   80.407873] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   80.407941] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   80.408007] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   80.408074] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   80.408142] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   80.408211] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   80.408280] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   80.408349] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   80.408435] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   80.408519] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   80.408601] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   80.408680] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   80.408761] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   80.408842] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   80.408922] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   80.409003] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   80.409084] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   80.409167] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   80.409249] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   80.409331] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   80.409416] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   80.409497] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   80.409578] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   80.409658] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   80.409741] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   80.409822] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   80.409903] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   80.409986] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   80.410068] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   80.410148] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   80.410229] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.410310] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.410391] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.410470] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   80.410550] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.410632] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   80.410712] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.410791] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.410872] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.410953] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   80.411033] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.411112] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.411191] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   80.411288] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   80.411383] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.411478] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.411571] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.411664] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.411752] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   80.411835] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.411915] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   80.411994] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   80.412073] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.412155] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   80.412236] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.412316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.412395] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.412477] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.412560] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.412643] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.412733] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.412754] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.412829] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.412890] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.412920] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.413002] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.413056] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.413095] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.413182] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.413272] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.413379] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.413487] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.413548] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.413566] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.413593] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.413689] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.413773] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.413855] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   80.413936] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   80.414017] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.414101] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   80.414182] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   80.414263] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   80.414344] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   80.414425] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   80.414508] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.414588] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.414667] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.414750] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   80.414832] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.414915] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   80.414998] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.415078] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.415160] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.415249] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   80.415346] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   80.415442] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   80.415533] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.415620] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.415702] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   80.415783] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   80.415864] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.415946] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.416028] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.416109] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.416189] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.416271] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.416352] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   80.416433] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   80.416513] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.416594] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   80.416674] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.416756] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.416836] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.416918] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.417000] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.417081] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.417163] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.417244] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   80.417325] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   80.417404] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   80.417484] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   80.417565] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.417644] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.417725] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.417805] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.417886] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.417965] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.418045] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.418126] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   80.418208] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   80.418287] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   80.418367] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   80.418446] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   80.418526] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   80.418606] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   80.418656] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   80.418742] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.418826] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.418896] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.418977] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   80.419050] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.419118] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.419184] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.419284] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   80.419392] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.419469] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000a848bd48
[   80.419535] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   80.419599] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   80.419660] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   80.419670] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   80.419729] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.419813] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   80.419897] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   80.419979] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   80.420060] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   80.420147] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   80.420241] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   80.420328] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   80.420409] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   80.420489] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   80.420571] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   80.420653] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   80.420733] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   80.420813] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   80.420895] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   80.420975] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   80.421053] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   80.421132] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   80.421212] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   80.421292] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   80.421371] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   80.421450] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   80.421527] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   80.421605] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   80.421685] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   80.421764] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   80.421845] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   80.421924] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   80.422003] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   80.422081] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   80.422162] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   80.422242] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   80.422322] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   80.422402] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   80.422482] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   80.422563] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   80.422643] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   80.422724] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   80.422802] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.422881] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   80.422961] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.423043] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   80.423124] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   80.423210] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   80.423311] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   80.423409] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   80.423506] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   80.423604] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   80.423683] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   80.423752] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   80.423822] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   80.423889] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   80.423955] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   80.424022] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   80.424088] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   80.424154] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   80.424223] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   80.424288] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   80.424356] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   80.424441] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   80.424526] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   80.424606] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   80.424686] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   80.424765] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   80.424844] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   80.424925] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   80.425008] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   80.425089] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   80.425172] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   80.425254] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   80.425339] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   80.425420] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   80.425502] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   80.425584] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   80.425664] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   80.425743] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   80.425823] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   80.425906] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   80.425989] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   80.426071] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   80.426153] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   80.426234] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.426313] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.426392] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.426470] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   80.426550] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.426631] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   80.426711] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.426791] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.426869] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.426947] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   80.427027] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.427107] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.427187] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   80.427279] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   80.427417] usb 3-6.3.2: new high-speed USB device number 9 using xhci_hcd
[   80.427379] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.427473] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.427567] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.427659] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.427743] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   80.427825] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.427907] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   80.427990] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   80.428072] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.428154] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   80.428236] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.428316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.428396] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.428478] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.428559] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.428638] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.428717] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.428796] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.428876] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.428956] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.429037] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.429119] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.429199] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.429279] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.429359] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.429441] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.429520] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.429602] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.429683] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   80.429764] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   80.429845] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.429925] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   80.430008] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   80.430089] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   80.430171] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   80.430254] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   80.430336] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.430416] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.430497] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.430580] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   80.430661] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.430741] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   80.430824] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.430906] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.430986] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.431065] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   80.431143] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   80.431232] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   80.431331] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.431425] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.431520] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   80.431611] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   80.431690] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.431770] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.431853] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.431934] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.432014] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.432094] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.432175] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   80.432256] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   80.432336] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.432416] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   80.432494] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.432573] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.432655] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.432737] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.432821] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.432903] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.432982] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.433064] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   80.433146] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   80.433225] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   80.433306] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   80.433383] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.433464] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.433543] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.433622] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.433704] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.433786] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.433869] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.433952] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   80.434035] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   80.434115] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   80.434194] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   80.434274] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   80.434353] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   80.434432] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   80.434454] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   80.434553] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.434628] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000ce5033ac
[   80.434689] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   80.434741] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   80.434791] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   80.434800] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   80.434851] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.434935] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   80.435018] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   80.435099] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   80.435179] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   80.435260] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   80.435354] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   80.435450] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   80.435547] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   80.435641] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   80.435725] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   80.435804] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   80.435883] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   80.435962] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   80.436041] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   80.436120] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   80.436200] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   80.436280] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   80.436359] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   80.436439] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   80.436520] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   80.436600] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   80.436680] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   80.436759] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   80.436839] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   80.436919] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   80.436998] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   80.437076] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   80.437159] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   80.437239] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   80.437320] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   80.437403] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   80.437484] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   80.437564] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   80.437652] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   80.437681] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.437748] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   80.437804] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.437842] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   80.437937] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   80.438031] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.438048] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.438129] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   80.438209] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.438307] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   80.438413] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   80.438540] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.438521] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   80.438559] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.438625] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   80.438721] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   80.438817] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   80.438918] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   80.439001] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   80.439085] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   80.439168] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   80.439251] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   80.439337] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   80.439417] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   80.439495] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   80.439568] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   80.439634] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   80.439702] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   80.439769] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   80.439853] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   80.439935] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   80.440015] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   80.440096] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   80.440177] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   80.440256] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   80.440336] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   80.440419] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   80.440500] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   80.440581] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   80.440663] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   80.440748] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   80.440828] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   80.440909] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   80.440991] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   80.441073] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   80.441153] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   80.441232] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   80.441314] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   80.441396] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   80.441479] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   80.441562] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   80.441643] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.441724] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.441803] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.441885] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   80.441966] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.442047] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   80.442127] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.442206] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.442288] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.442370] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   80.442452] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.442530] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.442611] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   80.442692] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   80.442772] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.442851] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.442932] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.443013] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.443093] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   80.443172] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.443254] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   80.443344] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   80.443435] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.443528] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   80.443622] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.443707] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.443786] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.443867] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.443948] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.444028] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.444107] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.444184] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.444262] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.444339] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.444420] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.444500] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.444579] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.444659] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.444737] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.444816] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.444894] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.444975] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.445056] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   80.445135] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   80.445218] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.445299] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   80.445381] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   80.445459] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   80.445539] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   80.445620] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   80.445698] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.445776] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.445854] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.445933] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   80.446015] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.446096] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   80.446176] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.446253] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.446333] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.446413] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   80.446493] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   80.446572] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   80.446654] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.446734] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.446815] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   80.446895] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   80.446976] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.447055] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.447135] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.447216] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.447310] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.447402] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.447495] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   80.447591] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   80.447674] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.447754] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   80.447834] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.447915] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.447994] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.448074] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.448155] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.448234] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.448315] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.448395] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   80.448475] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   80.448555] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   80.448634] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   80.448712] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.448793] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.448873] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.448953] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.449032] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.449113] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.449194] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.449274] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   80.449354] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   80.449434] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   80.449515] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   80.449598] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   80.449679] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   80.449760] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   80.449795] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   80.449893] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.449961] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   80.450018] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   80.450073] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   80.450130] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   80.450182] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   80.450232] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000a848bd48
[   80.450282] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   80.450330] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   80.450380] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   80.450389] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   80.450445] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   80.450507] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.450595] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   80.450679] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   80.450761] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   80.450842] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   80.450924] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   80.451007] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   80.451089] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   80.451171] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   80.451253] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   80.451350] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   80.451449] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   80.451543] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   80.451636] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   80.451721] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   80.451801] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   80.451881] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   80.451962] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   80.452044] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   80.452125] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   80.452208] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   80.452288] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   80.452368] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   80.452447] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   80.452527] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   80.452610] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   80.452691] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   80.452771] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   80.452852] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   80.452933] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   80.453012] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   80.453094] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   80.453174] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   80.453255] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   80.453336] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   80.453417] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   80.453496] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   80.453577] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   80.453657] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   80.453737] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.453818] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   80.453898] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.453979] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   80.454060] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   80.454139] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   80.454217] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   80.454298] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   80.454378] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   80.454457] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   80.454535] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   80.454614] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   80.454694] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   80.454772] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   80.454851] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   80.454931] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   80.455010] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   80.455088] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   80.455166] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   80.455248] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   80.455345] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   80.455443] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   80.455534] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   80.455625] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   80.455714] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   80.455791] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   80.455871] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   80.455950] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   80.456030] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   80.456110] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   80.456190] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   80.456270] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   80.456350] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   80.456431] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   80.456512] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   80.456595] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   80.456665] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   80.456734] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   80.456804] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   80.456874] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   80.456944] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   80.457012] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   80.457080] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   80.457145] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   80.457212] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   80.457279] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   80.457346] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   80.457430] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   80.457513] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   80.457594] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   80.457675] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   80.457755] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   80.457835] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   80.457914] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   80.457994] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   80.458077] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   80.458159] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   80.458239] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   80.458321] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   80.458401] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   80.458482] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   80.458561] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   80.458642] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   80.458722] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   80.458801] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   80.458881] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   80.458965] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   80.459049] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   80.459133] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   80.459218] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.459319] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.459417] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.459511] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   80.459608] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.459693] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   80.459775] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.459857] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.459938] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.460017] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   80.460095] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.460177] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.460258] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   80.460338] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   80.460416] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.460496] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.460577] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.460657] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.460737] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   80.460818] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.460899] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   80.460980] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   80.461062] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.461143] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   80.461221] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.461302] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.461384] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.461465] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.461546] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.461623] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.461700] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.461780] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.461860] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.461940] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.462020] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.462100] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.462181] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.462259] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.462340] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.462419] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.462497] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.462577] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.462659] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   80.462740] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   80.462820] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.462900] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   80.462978] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   80.463025] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.463059] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   80.463132] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.463140] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   80.463231] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   80.463325] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.463359] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.463422] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.463518] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.463611] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   80.463717] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.463862] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.463824] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   80.463881] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.463929] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.464011] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.464092] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.464174] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   80.464255] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   80.464334] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   80.464414] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.464496] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.464576] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   80.464656] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   80.464736] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.464817] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   80.464901] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   80.464983] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   80.465064] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   80.465146] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   80.465230] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   80.465312] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   80.465393] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.465474] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   80.465554] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.465634] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.465713] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.465792] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.465871] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.465953] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.466035] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.466116] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.466197] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.466276] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.466356] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.466436] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.466515] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.466595] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.466676] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.466755] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.466834] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   80.466913] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   80.466993] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   80.467074] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   80.467155] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   80.467253] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   80.467355] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   80.467453] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   80.467548] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   80.467640] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   80.467719] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   80.467798] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   80.467877] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   80.467956] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   80.468035] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   80.468113] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.468192] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.468271] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   80.468352] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   80.468432] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   80.468512] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   80.468589] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   80.468671] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   80.468752] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   80.468776] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   80.468878] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.468952] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   80.469009] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   80.469065] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   80.469120] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   80.469172] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   80.469224] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000ce5033ac
[   80.469274] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   80.469323] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   80.469372] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   80.469380] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   80.469429] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   80.469488] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.469572] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   80.469656] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   80.469739] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   80.469823] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   80.469905] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   80.469985] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   80.470068] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   80.470148] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   80.470229] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   80.470307] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   80.470388] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   80.470468] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   80.470547] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   80.470625] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   80.470704] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   80.470784] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   80.470863] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   80.470944] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   80.471023] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   80.471103] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   80.471184] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   80.471267] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   80.471359] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   80.471454] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   80.471550] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   80.471644] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   80.471731] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   80.471812] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   80.471893] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   80.471972] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   80.472050] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   80.472128] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   80.472207] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   80.472287] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   80.472368] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   80.472448] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   80.472527] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   80.472608] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   80.472688] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.472770] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   80.472849] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.472930] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   80.473010] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   80.473091] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   80.473172] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   80.473252] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   80.473332] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   80.473414] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   80.473494] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   80.473573] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   80.473653] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   80.473733] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   80.473812] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   80.473891] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   80.473973] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   80.474054] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   80.474133] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   80.474213] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   80.474293] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   80.474372] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   80.474451] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   80.474532] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   80.474614] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   80.474693] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   80.474773] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   80.474852] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   80.474932] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   80.475014] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   80.475096] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   80.475177] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   80.475259] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   80.475350] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   80.475445] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   80.475545] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   80.475628] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   80.475708] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   80.475777] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   80.475847] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   80.475914] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   80.475980] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   80.476047] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   80.476116] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   80.476192] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   80.476272] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   80.476352] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   80.476450] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   80.476534] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   80.476616] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   80.476700] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   80.476793] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   80.476885] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   80.476966] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   80.477044] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   80.477125] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   80.477205] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   80.477297] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   80.477396] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   80.477480] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   80.477571] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   80.477662] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   80.477745] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   80.477827] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   80.477915] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   80.478010] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   80.478110] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   80.478208] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   80.478304] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   80.478387] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.478482] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.478580] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.478674] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   80.478769] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.478863] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   80.478957] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.479052] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.479149] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.479248] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   80.479347] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.479447] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.479548] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   80.479647] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   80.479745] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.479839] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.479937] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.480035] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.480129] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   80.480224] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.480323] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   80.480419] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   80.480515] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.480609] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   80.480700] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.480795] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.480887] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.480979] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.481076] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.481172] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.481264] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.481358] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.481452] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.481545] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.481643] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.481737] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.481830] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.481923] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.482015] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.482117] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.482212] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.482306] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.482399] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   80.482494] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   80.482592] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.482692] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   80.482788] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   80.482881] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   80.482978] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   80.483079] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   80.483178] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.483279] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.483393] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.483495] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   80.483596] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.483692] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   80.483787] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.483885] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.483984] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.484083] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   80.484180] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   80.484277] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   80.484372] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.484466] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.484560] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   80.484653] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   80.484747] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.484842] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   80.484938] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   80.485036] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   80.485130] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   80.485210] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   80.485291] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   80.485372] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   80.485454] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.485535] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   80.485616] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.485696] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.485777] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.485858] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.485941] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.486022] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.486102] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.486182] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.486262] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.486343] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.486422] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.486502] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.486583] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.486663] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.486744] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.486824] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.486905] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   80.486986] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   80.487066] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   80.487147] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   80.487234] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   80.487335] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   80.487433] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   80.487525] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   80.487614] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   80.487696] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   80.487777] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   80.487858] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   80.487940] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   80.488022] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   80.488105] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   80.488187] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.488268] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.488360] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   80.488377] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.488454] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   80.488504] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.488548] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   80.488644] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   80.488741] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   80.488740] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.488829] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   80.488912] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   80.489225] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.489245] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.490603] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:574]
[   80.491801] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:589]
[   80.492465] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1]
[   80.492478] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:508:eDP-1]
[   80.492585] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   80.492647] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[   80.492705] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[   80.492762] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[   80.492787] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   80.492808] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[   80.492828] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[   80.492848] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] VRR capable: yes
[   80.492915] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
[   80.492973] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
[   80.493221] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x03000 AUX -> (ret=  1) 00
[   80.493250] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] probed modes:
[   80.493269] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.493391] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1]
[   80.493398] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[   80.497498] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1] disconnected
[   80.497533] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1]
[   80.497540] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[   80.497661] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1] disconnected
[   80.497691] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2]
[   80.497698] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[   80.497816] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2] disconnected
[   80.497839] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3]
[   80.497845] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[   80.498312] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  1) 14
[   80.499116] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   80.499926] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   80.499935] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   80.499945] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   80.500475] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  8) 14 1e 80 aa 02 00 00 00
[   80.500484] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][DPRX] LTTPR common capabilities: 14 1e 80 aa 02 00 00 00
[   80.500945] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) 55
[   80.501414] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) aa
[   80.501852] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0020 AUX -> (ret=  3) 03 03 00
[   80.501860] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][LTTPR 1] PHY capabilities: 03 03 00
[   80.502508] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf003d AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   80.502517] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: LTTPR 1: OUI 00-00-00 dev-ID  HW-rev 0.0 SW-rev 0.0 quirks 0x0000
[   80.503326] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   80.504130] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   80.504138] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   80.504147] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   80.504660] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 53 22 10 05 05
[   80.504670] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DP branch: OUI 90-cc-24 dev-ID SYNAS" HW-rev 1.0 SW-rev 5.5 quirks 0x0068
[   80.504997] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02210 AUX -> (ret=  1) f8
[   80.505325] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00200 AUX -> (ret=  1) 02
[   80.505839] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00080 AUX -> (ret= 12) 08 00 00 00 00 00 00 00 08 00 00 00
[   80.505847] i915 0000:00:02.0: [drm:drm_dp_read_downstream_info [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD DFP: 08 00 00 00 00 00 00 00 08 00 00 00
[   80.506173] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00021 AUX -> (ret=  1) 01
[   80.506181] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [ENCODER:544:DDI TC3/PHY TC3] MST support: port: yes, sink: MST, modparam: yes -> enable: MST
[   80.506609] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00111 AUX -> (ret=  1) 07
[   80.507116] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0000 AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   80.507473] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe000d AUX -> (ret=  3) 00 00 00
[   80.507867] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0020 AUX -> (ret=  5) 00 00 00 00 00
[   80.508208] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0028 AUX -> (ret=  2) 00 00
[   80.508533] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0030 AUX -> (ret=  1) 00
[   80.508874] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00070 AUX -> (ret=  2) 00 00
[   80.509450] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00060 AUX -> (ret= 16) 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   80.509458] i915 0000:00:02.0: [drm:intel_dp_read_dsc_dpcd [i915]] DSC DPCD: 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   80.509848] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00090 AUX -> (ret=  1) 0f
[   80.509859] i915 0000:00:02.0: [drm:intel_dp_get_dsc_sink_cap [i915]] FEC CAPABILITY: f
[   80.510281] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x000a0 AUX -> (ret=  3) 09 1e 10
[   80.510607] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02214 AUX -> (ret=  1) 00
[   80.510616] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   80.510689] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000, 810000
[   80.510764] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000, 810000
[   80.510838] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3] disconnected
[   80.510877] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4]
[   80.510886] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[   80.511027] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4] disconnected
[   80.511062] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:509:DP-5]
[   80.511072] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 0000000039cd68e6 (2)
[   80.511085] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 0000000039cd68e6 (1)
[   80.511098] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:509:DP-5] disconnected
[   80.511125] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:567:DP-6]
[   80.511137] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 00000000b4779840 (2)
[   80.511146] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000b4779840 (1)
[   80.511155] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 00000000b4779840 (2)
[   80.511165] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.511176] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   80.511187] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   80.511195] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=1:
[   80.511212] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   80.511751] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 00 10 50 01 da
[   80.550119] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.550494] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.550828] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.551518] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.551559] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.552406] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 05 c3 22 02 01 00 db 00 00 00 00 00 00 00 00
[   80.552442] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.552519] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.552561] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.552712] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.552812] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   80.552913] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   80.553006] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.553002] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=128:
[   80.553094] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   80.553798] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 00 10 50 80 e0
[   80.554441] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.554513] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.594708] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.595532] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.596331] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.597443] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.597529] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.598651] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 02 80 00 ff ff ff ff ff ff 00 04 72
[   80.598710] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.599445] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 1a 07 3f 63 60 21 10 20 01 04 a5 3c 22 78 3f 53
[   80.600181] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) a5 a7 56 52 9c 26 11 50 54 b3 0c 00 71 4f 81 32
[   80.600235] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.600718] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.601170] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.601209] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.607587] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.608507] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.608573] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.609525] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 80 81 c0 81 00 95 00 b3 00 d1 c0 01 01
[   80.609572] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.610233] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 2a 44 80 a0 70 38 27 40 30 20 35 00 56 50 21 00
[   80.610895] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 1a 02 3a 80 18 71 38 2d 40 58 2c 45 00 56 c5
[   80.610937] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.611382] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.611823] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.611862] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.644348] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.645160] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.646038] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.647136] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.647258] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.648503] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 50 21 00 00 1e 00 00 00 fd 00 30 4b 54
[   80.648585] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.649272] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 54 12 01 0a 20 20 20 20 20 20 00 00 00 fc 00 43
[   80.649925] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 42 32 37 32 0a 20 20 20 20 20 20 20 01 e3 9e
[   80.649968] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.650027] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   80.650104] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.650150] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   80.650196] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   80.650234] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=128:
[   80.650271] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 80
[   80.650412] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.651005] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 80 10 50 80 bb
[   80.651462] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.651493] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.669593] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.670396] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.671295] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.672347] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.672423] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.673459] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 02 80 02 03 18 f1 4b 90 01 02 03 04
[   80.673511] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.674185] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 05 11 12 13 14 1f 23 09 07 07 83 01 00 00 02 3a
[   80.674851] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 80 18 71 38 2d 40 58 2c 45 00 56 50 21 00 00 dc
[   80.674885] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.675321] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.675762] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.675796] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.698037] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.698743] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.699420] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.700354] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.700415] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.701363] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 1e 01 1d 00 72 51 d0 1e 20 6e 28 55 00
[   80.701403] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.702053] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 56 50 21 00 00 1e 8c 0a d0 8a 20 e0 2d 10 10 3e
[   80.702694] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 96 00 56 50 21 00 00 18 2a 44 80 a0 70 38 27 8a
[   80.702728] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.703149] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.703621] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.703647] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.703918] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.704572] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.704607] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.705466] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 40 30 20 35 00 56 50 21 00 00 1a 00 00
[   80.705504] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.706166] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[   80.706799] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 00 00 00 00 00 00 00 00 00 00 00 00 00 97 ac
[   80.706837] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.706962] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   80.707035] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000b4779840 (1)
[   80.707076] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] Supported Monitor Refresh rate range is 48 Hz - 75 Hz
[   80.707265] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.707235] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   80.707351] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] ELD monitor CB272
[   80.707455] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] ELD size 28, SAD count 1
[   80.707717] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.707772] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.708088] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 60 74250 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   80.708211] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 50 74250 1920 2448 2492 2640 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   80.708325] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 60 74176 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   80.708442] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:567:DP-6] probed modes:
[   80.708484] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 75 174500 1920 1968 2000 2080 1080 1083 1088 1119 0x48 0x9
[   80.708518] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.708550] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.708581] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.708610] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 50 148500 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5
[   80.708639] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1680x1050": 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   80.708667] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x1024": 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   80.708696] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1440x900": 60 106500 1440 1520 1672 1904 900 903 909 934 0x40 0x6
[   80.708726] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x800": 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   80.708754] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1152x864": 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   80.708782] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   80.708810] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   80.708838] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   80.708862] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 50 74250 1280 1720 1760 1980 720 725 730 750 0x40 0x5
[   80.708887] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[   80.708911] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   80.708936] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   80.708961] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[   80.708986] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x576": 50 27000 720 732 796 864 576 581 586 625 0x40 0xa
[   80.709010] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x576": 50 27000 720 732 796 864 576 581 586 625 0x40 0xa
[   80.709035] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27027 720 736 798 858 480 489 495 525 0x40 0xa
[   80.709059] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27027 720 736 798 858 480 489 495 525 0x40 0xa
[   80.709083] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   80.709108] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   80.709132] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   80.709156] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[   80.709180] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[   80.709205] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   80.709229] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   80.709254] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x400": 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   80.709746] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:570:DP-7]
[   80.709785] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 000000004b112a7e (2)
[   80.709824] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 000000004b112a7e (1)
[   80.709860] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 000000004b112a7e (2)
[   80.709897] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.709936] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   80.709976] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   80.710010] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3 num_tx=1 id=80 size=1:
[   80.710043] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   80.710658] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 31 50 01 00 10 50 01 66
[   80.721232] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.721486] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.721690] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.722205] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.722228] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.722977] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 05 c3 22 03 01 00 58 00 00 00 00 00 00 00 00
[   80.723018] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.723064] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.723156] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   80.723251] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.723297] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   80.723344] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   80.723382] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3 num_tx=1 id=80 size=128:
[   80.723420] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   80.723617] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.724105] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 31 50 01 00 10 50 80 5c
[   80.724555] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.724586] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.753282] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.754002] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.754642] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.755609] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.755674] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.756612] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 03 80 00 ff ff ff ff ff ff 00 4c 2d
[   80.756655] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.757305] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 35 0f 45 32 39 30 13 22 01 04 b5 46 27 78 3a ae
[   80.757953] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) a5 af 4f 42 af 26 0f 50 54 bf ef 80 71 4f 81 52
[   80.757983] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.758408] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.758833] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.758860] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.776278] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.776900] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.777539] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.778468] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.778526] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.779482] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 00 81 c0 81 80 a9 c0 b3 00 95 00 01 01
[   80.779525] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.780178] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 22 cc 00 50 f0 70 3e 80 18 10 35 00 b9 88 21 00
[   80.780833] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 1a 00 00 00 fd 00 1e 4b 1e 87 3c 00 0a 20 ff
[   80.780866] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.781291] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.781728] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.781757] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.782030] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.782676] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.782711] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.783573] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 20 20 20 20 20 00 00 00 fc 00 55 33 32
[   80.783610] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.784264] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 4a 35 39 78 0a 20 20 20 20 20 00 00 00 ff 00 48
[   80.784879] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 43 4a 58 35 30 31 30 35 37 0a 20 20 01 5d 1c
[   80.784892] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.784904] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.784915] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   80.784928] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   80.784936] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3 num_tx=1 id=80 size=128:
[   80.784943] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 80
[   80.785006] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.785481] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 31 50 01 80 10 50 80 07
[   80.785867] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.786323] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.786359] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.786587] usb 3-6.3.2: New USB device found, idVendor=046d, idProduct=094d, bcdDevice=99.14
[   80.786599] usb 3-6.3.2: New USB device strings: Mfr=0, Product=2, SerialNumber=1
[   80.786603] usb 3-6.3.2: Product: Brio 101
[   80.786605] usb 3-6.3.2: SerialNumber: 2433AP05LZ78
[   80.788561] uvcvideo 3-6.3.2:1.0: Found UVC 1.00 device Brio 101 (046d:094d)
[   80.810786] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.811457] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.812035] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.812797] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.812855] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.813730] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 03 80 02 03 0f f0 42 10 5f 23 09 07
[   80.813773] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.814425] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 07 83 01 00 00 02 3a 80 18 71 38 2d 40 58 2c 45
[   80.815055] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 b9 88 21 00 00 1e 56 5e 00 a0 a0 a0 29 50 db
[   80.815086] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.815492] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.815907] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.815932] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.833018] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.833706] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.834359] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.835279] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.835345] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.836331] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 30 20 35 00 b9 88 21 00 00 1a 04 74 00
[   80.836378] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.837034] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 30 f2 70 5a 80 b0 58 8a 00 b9 88 21 00 00 1e 00
[   80.837669] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 57
[   80.837704] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.838120] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.838542] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.838571] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.839393] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.840210] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   80.840271] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   80.841238] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 00 00 00 00 00 00 00 00 00 00 00 00 00
[   80.841289] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   80.841971] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[   80.842630] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 00 00 00 00 00 00 00 00 00 00 00 00 00 56 4e
[   80.842681] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.842714] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   80.842794] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 000000004b112a7e (1)
[   80.842846] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:570:DP-7] Assigning EDID-1.4 digital sink color depth as 10 bpc.
[   80.842995] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:570:DP-7] ELD monitor U32J59x
[   80.843130] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   80.843112] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:570:DP-7] ELD size 32, SAD count 1
[   80.843633] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.843680] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.844147] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:570:DP-7] probed modes:
[   80.844189] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   80.844223] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 30 297000 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5
[   80.844253] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 30 297000 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5
[   80.844282] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 30 296703 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5
[   80.844308] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "2560x1440": 60 241500 2560 2608 2640 2720 1440 1443 1448 1481 0x40 0x9
[   80.844334] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.844360] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.844386] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.844412] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1680x1050": 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   80.844437] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1600x900": 60 108000 1600 1624 1704 1800 900 901 904 1000 0x40 0x5
[   80.844463] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x1024": 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   80.844488] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x1024": 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   80.844514] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1440x900": 60 106500 1440 1520 1672 1904 900 903 909 934 0x40 0x6
[   80.844540] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x800": 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   80.844566] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1152x864": 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   80.844590] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   80.844615] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   80.844640] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   80.844664] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[   80.844688] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   80.844713] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "832x624": 75 57284 832 864 928 1152 624 625 628 667 0x40 0xa
[   80.844738] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   80.844763] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 72 50000 800 856 976 1040 600 637 643 666 0x40 0x5
[   80.844787] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   80.844812] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[   80.844836] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   80.844861] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 73 31500 640 664 704 832 480 489 492 520 0x40 0xa
[   80.844886] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[   80.844910] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[   80.844934] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   80.844958] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x400": 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   80.847279] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   80.847587] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.847805] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000f68b62fd
[   80.847970] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   80.848122] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   80.848259] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   80.848282] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   80.848437] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.848650] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   80.848854] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   80.849052] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   80.849248] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   80.849428] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   80.849608] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   80.849787] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   80.849949] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   80.850107] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   80.850256] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   80.850402] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   80.850549] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   80.850693] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   80.850835] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   80.850965] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   80.851096] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   80.851219] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   80.851336] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   80.851458] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   80.851574] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   80.851693] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   80.851812] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   80.851929] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   80.852042] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   80.852148] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   80.852253] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   80.852351] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   80.852450] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   80.852549] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   80.852651] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   80.852754] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   80.852847] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   80.852936] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   80.853026] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   80.853114] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   80.853196] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   80.853275] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   80.853357] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.853439] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   80.853520] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.853605] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   80.853687] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   80.853767] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   80.853849] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   80.853930] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   80.854009] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   80.854095] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   80.854167] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   80.854238] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   80.854311] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   80.854381] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   80.854448] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   80.854512] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   80.854576] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   80.854645] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   80.854712] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   80.854782] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   80.854848] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   80.854934] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   80.855020] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   80.855103] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   80.855185] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   80.855280] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   80.855383] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   80.855468] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   80.855551] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   80.855634] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   80.855716] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   80.855797] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   80.855883] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   80.855964] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   80.856047] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   80.856132] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   80.856217] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   80.856298] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   80.856380] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   80.856461] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   80.856543] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   80.856625] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   80.856710] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   80.856791] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.856873] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.856886] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.856956] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.856993] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.857038] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   80.857120] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.857204] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   80.857205] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.857286] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.857366] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.857463] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.857570] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   80.857697] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.857675] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.857716] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.857774] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.857855] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   80.857938] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   80.858020] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.858100] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.858181] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.858261] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.858342] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   80.858425] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.858506] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   80.858588] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   80.858669] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.858750] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   80.858831] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.858911] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.858989] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.859070] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.859151] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.859258] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.859352] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.859450] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.859539] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.859621] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.859701] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.859780] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.859859] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.859937] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.860016] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.860096] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.860178] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.860261] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.860342] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   80.860423] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   80.860503] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.860583] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   80.860663] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   80.860746] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   80.860830] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   80.860910] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   80.860991] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.861074] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.861155] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.861235] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   80.861314] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.861396] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   80.861476] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.861556] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.861633] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.861712] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   80.861793] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   80.861872] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   80.861952] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.862029] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.862110] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   80.862191] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   80.862270] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.862351] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.862431] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.862514] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.862595] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.862676] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.862754] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   80.862835] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   80.862917] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.862996] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   80.863077] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.863158] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.863242] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.863340] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.863434] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.863515] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.863594] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.863673] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   80.863750] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   80.863828] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   80.863909] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   80.863989] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.864069] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.864148] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.864228] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.864307] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.864386] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.864466] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.864547] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   80.864630] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   80.864710] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   80.864790] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   80.864869] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   80.864950] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   80.865031] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   80.865057] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   80.865155] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.865232] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000004d07fa36
[   80.865289] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   80.865344] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   80.865400] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   80.865408] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   80.865464] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.865550] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   80.865635] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   80.865719] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   80.865801] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   80.865885] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   80.865968] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   80.866050] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   80.866130] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   80.866210] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   80.866291] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   80.866371] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   80.866452] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   80.866533] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   80.866615] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   80.866695] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   80.866775] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   80.866857] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   80.866939] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   80.867022] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   80.867104] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   80.867187] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   80.867281] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   80.867378] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   80.867467] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   80.867545] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   80.867629] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   80.867722] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   80.867802] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   80.867884] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   80.867964] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   80.868046] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   80.868128] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   80.868212] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   80.868295] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   80.868377] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   80.868458] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   80.868539] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   80.868620] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.868701] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   80.868782] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.868863] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   80.868942] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   80.869022] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   80.869103] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   80.869186] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   80.869267] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   80.869353] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   80.869424] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   80.869493] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   80.869564] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   80.869630] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   80.869697] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   80.869765] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   80.869832] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   80.869900] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   80.869968] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   80.870036] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   80.870103] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   80.870186] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   80.870270] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   80.870350] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   80.870430] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   80.870509] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   80.870588] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   80.870668] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   80.870748] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   80.870828] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   80.870908] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   80.870988] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   80.871074] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   80.871155] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   80.871236] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   80.871318] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   80.871411] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   80.871499] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   80.871579] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   80.871660] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   80.871743] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   80.871823] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   80.871902] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   80.871981] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.872060] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.872140] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.872220] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   80.872299] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.872379] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   80.872461] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.872541] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.872620] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.872700] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   80.872781] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.872863] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.872943] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   80.873024] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   80.873104] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.873184] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.873264] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.873345] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.873427] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   80.873508] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.873586] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   80.873664] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   80.873742] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.873821] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   80.873897] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.873979] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.874060] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.874140] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.874223] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.874305] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.874388] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.874470] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.874551] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.874633] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.874713] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.874792] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.874871] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.874951] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.875032] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.875115] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.875197] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.875298] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.875396] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   80.875481] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   80.875563] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.875642] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   80.875723] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   80.875808] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   80.875888] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   80.875971] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   80.876054] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.876135] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.876216] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.876298] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   80.876379] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.876459] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   80.876539] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.876618] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.876699] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.876779] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   80.876860] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   80.876940] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   80.877021] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.877103] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.877184] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   80.877265] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   80.877345] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.877426] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.877508] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.877591] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.877674] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.877755] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.877837] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   80.877919] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   80.878000] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.878080] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   80.878160] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.878239] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.878318] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.878397] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.878479] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.878561] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.878642] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.878723] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   80.878806] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   80.878889] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   80.878971] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   80.879054] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.879134] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.879217] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.879298] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.879392] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.879486] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.879581] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.879674] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   80.879766] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   80.879848] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   80.879929] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   80.880010] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   80.880090] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   80.880170] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   80.880203] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   80.880306] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.880382] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   80.880444] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   80.880499] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   80.880555] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   80.880606] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   80.880656] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000f68b62fd
[   80.880705] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   80.880754] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   80.880804] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   80.880812] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   80.880865] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   80.880922] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.881008] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   80.881092] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   80.881174] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   80.881256] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   80.881337] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   80.881418] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   80.881499] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   80.881581] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   80.881662] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   80.881742] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   80.881823] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   80.881902] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   80.881982] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   80.882062] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   80.882142] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   80.882223] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   80.882302] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   80.882381] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   80.882461] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   80.882541] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   80.882621] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   80.882700] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   80.882779] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   80.882861] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   80.882939] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   80.883018] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   80.883098] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   80.883177] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   80.883265] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   80.883362] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   80.883454] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   80.883547] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   80.883641] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   80.883721] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   80.883800] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   80.883881] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   80.883963] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   80.884042] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   80.884119] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.884198] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   80.884277] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.884340] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.884359] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   80.884440] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   80.884438] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.884521] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   80.884601] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   80.884651] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.884679] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   80.884757] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   80.884840] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   80.884947] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   80.885052] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   80.885134] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.885152] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.885158] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   80.885257] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   80.885338] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   80.885420] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   80.885501] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   80.885580] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   80.885661] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   80.885741] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   80.885820] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   80.885900] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   80.885980] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   80.886059] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   80.886139] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   80.886219] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   80.886298] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   80.886376] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   80.886456] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   80.886534] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   80.886611] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   80.886690] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   80.886771] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   80.886851] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   80.886929] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   80.887013] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   80.887084] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   80.887151] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   80.887221] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   80.887293] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   80.887371] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   80.887450] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   80.887530] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   80.887608] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   80.887688] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   80.887760] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   80.887827] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   80.887912] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   80.887996] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   80.888075] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   80.888154] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   80.888232] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   80.888309] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   80.888389] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   80.888469] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   80.888551] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   80.888631] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   80.888713] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   80.888796] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   80.888878] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   80.888960] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   80.889039] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   80.889120] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   80.889200] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   80.889279] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   80.889358] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   80.889440] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   80.889523] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   80.889603] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   80.889682] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.889761] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.889842] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.889922] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   80.890001] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.890080] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   80.890159] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.890239] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.890316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.890396] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   80.890475] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.890554] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.890633] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   80.890712] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   80.890793] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.890872] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.890953] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.891034] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.891115] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   80.891194] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.891275] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   80.891363] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   80.891460] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.891557] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   80.891652] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.891736] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.891817] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.891897] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.891979] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.892059] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.892138] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.892218] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.892300] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.892382] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.892463] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.892545] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.892628] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.892711] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.892794] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.892877] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.892958] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.893041] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.893121] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   80.893204] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   80.893286] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.893367] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   80.893450] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   80.893531] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   80.893611] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   80.893690] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   80.893771] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.893852] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.893931] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.894010] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   80.894090] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.894172] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   80.894253] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.894331] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.894409] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.894488] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   80.894568] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   80.894648] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   80.894726] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.894804] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.894881] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   80.894959] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   80.895036] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.895117] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   80.895198] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   80.895282] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   80.895375] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   80.895473] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   80.895568] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   80.895662] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   80.895741] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.895821] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   80.895901] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.895983] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.896065] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.896146] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.896228] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.896307] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.896385] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.896465] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.896545] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.896627] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.896709] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.896791] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.896873] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.896954] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.897034] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.897113] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.897191] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   80.897272] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   80.897354] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   80.897436] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   80.897517] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   80.897597] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   80.897680] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   80.897761] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   80.897843] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   80.897923] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   80.898004] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   80.898086] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   80.898168] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   80.898249] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   80.898332] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   80.898415] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.898497] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.898578] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   80.898662] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   80.898744] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   80.898825] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   80.898904] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   80.898985] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   80.899067] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   80.899091] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   80.899196] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.899278] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   80.899347] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   80.899416] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   80.899482] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   80.899541] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   80.899600] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000004d07fa36
[   80.899658] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   80.899717] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   80.899766] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   80.899775] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   80.899825] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   80.899884] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.899972] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   80.900058] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   80.900141] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   80.900225] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   80.900307] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   80.900388] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   80.900469] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   80.900551] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   80.900632] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   80.900714] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   80.900794] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   80.900873] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   80.900952] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   80.901031] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   80.901113] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   80.901193] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   80.901272] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   80.901350] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   80.901429] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   80.901510] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   80.901589] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   80.901669] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   80.901748] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   80.901829] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   80.901908] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   80.901987] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   80.902065] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   80.902144] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   80.902224] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   80.902304] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   80.902384] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   80.902463] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   80.902540] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   80.902620] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   80.902701] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   80.902782] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   80.902862] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   80.902943] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   80.903023] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.903103] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   80.903183] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.903267] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   80.903357] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   80.903451] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   80.903544] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   80.903640] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   80.903733] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   80.903813] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   80.903892] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   80.903972] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   80.904052] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   80.904133] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   80.904213] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   80.904295] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   80.904376] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   80.904454] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   80.904532] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   80.904612] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   80.904692] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   80.904771] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   80.904850] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   80.904930] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   80.905009] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   80.905089] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   80.905168] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   80.905246] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   80.905326] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   80.905406] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   80.905486] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   80.905566] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   80.905646] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   80.905726] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   80.905806] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   80.905892] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   80.905960] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   80.906027] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   80.906097] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   80.906171] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   80.906240] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   80.906318] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   80.906406] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   80.906491] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   80.906569] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   80.906650] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   80.906731] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   80.906831] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   80.906928] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   80.907024] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   80.907122] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   80.907220] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   80.907320] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   80.907413] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   80.907509] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   80.907607] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   80.907692] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   80.907774] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   80.907856] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   80.907934] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   80.908014] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   80.908096] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   80.908176] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   80.908256] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   80.908335] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   80.908416] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   80.908498] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   80.908578] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   80.908658] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   80.908740] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.908822] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.908905] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.908986] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   80.909065] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.909145] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   80.909223] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.909303] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.909384] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.909465] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   80.909544] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.909622] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.909702] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   80.909783] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   80.909861] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.909941] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.910021] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.910103] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.910186] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   80.910268] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.910351] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   80.910433] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   80.910513] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.910536] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.910595] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   80.910645] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.910677] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.910758] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.910839] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.910858] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.910919] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.911001] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.911093] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.911200] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.911350] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.911321] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.911370] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.911424] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.911519] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.911601] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.911682] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.911760] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.911840] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.911921] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.912000] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.912079] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.912158] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.912236] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   80.912318] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   80.912399] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.912478] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   80.912557] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   80.912638] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   80.912717] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   80.912796] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   80.912872] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.912951] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.913031] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.913109] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   80.913186] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.913263] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   80.913343] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.913422] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.913501] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.913581] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   80.913663] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   80.913744] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   80.913825] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.913907] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.913986] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   80.914065] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   80.914143] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.914220] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   80.914301] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   80.914382] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   80.914463] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   80.914543] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   80.914624] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   80.914705] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   80.914786] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.914865] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   80.914944] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.915024] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.915105] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.915183] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.915273] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.915371] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.915466] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.915560] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.915649] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.915730] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.915810] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.915890] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.915969] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.916050] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.916129] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.916209] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.916286] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   80.916365] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   80.916446] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   80.916526] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   80.916605] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   80.916686] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   80.916766] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   80.916845] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   80.916925] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   80.917005] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   80.917086] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   80.917165] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   80.917245] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   80.917325] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   80.917404] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   80.917483] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.917564] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.917643] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   80.917723] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   80.917802] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   80.917880] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   80.917962] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   80.918040] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   80.918120] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   80.918204] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   80.918300] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.918361] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000f68b62fd
[   80.918417] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   80.918471] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   80.918523] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   80.918532] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   80.918585] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.918668] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   80.918750] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.918810] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   80.918866] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   80.918920] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   80.918976] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   80.919025] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   80.919076] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000f68b62fd
[   80.919128] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   80.919178] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   80.919236] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   80.919245] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   80.919302] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   80.919369] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.919470] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   80.919569] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.919640] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000f68b62fd
[   80.919700] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   80.919753] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   80.919807] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 20 slots for pipe bpp 24.0000 dsc 0
[   80.919860] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.919945] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   80.920028] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.920088] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   80.920143] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   80.920197] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   80.920254] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   80.920307] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   80.920358] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000f68b62fd
[   80.920408] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   80.920457] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   80.920507] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   80.920558] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   80.920617] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.920703] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   80.920785] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] Link bpp limited to 23.9375
[   80.920867] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 18.0000
[   80.920927] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000f68b62fd
[   80.920982] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 18.0000
[   80.921035] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 18.0000
[   80.921087] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 14 slots for pipe bpp 18.0000 dsc 0
[   80.921138] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 18, dithering: 1
[   80.921222] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   80.921304] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.921362] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   80.921416] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   80.921469] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   80.921525] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   80.921575] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   80.921624] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000f68b62fd
[   80.921672] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   80.921721] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   80.921769] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   80.921818] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   80.921874] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.921958] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   80.922040] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   80.922122] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   80.922204] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   80.922286] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   80.922367] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 14, data 1779513/8388608 link 96119/524288)
[   80.922448] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   80.922528] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   80.922607] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   80.922688] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   80.922770] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   80.922851] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   80.922930] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   80.923011] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   80.923091] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   80.923170] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   80.923256] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   80.923353] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   80.923453] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   80.923548] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   80.923642] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   80.923722] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   80.923801] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   80.923879] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   80.923958] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   80.924040] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   80.924167] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   80.924250] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   80.924330] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   80.924412] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   80.924495] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   80.924576] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   80.924655] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   80.924737] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   80.924819] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   80.924900] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in fec_enable (expected no, found yes)
[   80.924980] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   80.925061] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   80.925141] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.925222] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   80.925300] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.925380] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 18)
[   80.925461] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   80.925542] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   80.925621] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   80.925701] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   80.925782] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   80.925872] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   80.925968] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   80.926057] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   80.926136] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   80.926217] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   80.926295] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   80.926374] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   80.926455] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   80.926535] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   80.926615] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   80.926692] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   80.926771] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   80.926849] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   80.926927] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   80.927006] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   80.927087] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   80.927168] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   80.927250] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   80.927340] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   80.927426] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   80.927505] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   80.927585] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   80.927664] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   80.927743] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   80.927822] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   80.927902] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   80.927981] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   80.928059] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   80.928139] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   80.928219] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   80.928298] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   80.928376] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   80.928456] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   80.928535] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   80.928614] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   80.928694] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   80.928774] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   80.928855] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   80.928935] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.929016] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   80.929095] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.929173] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   80.929254] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   80.929334] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   80.929413] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   80.929493] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   80.929574] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   80.929654] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   80.929733] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   80.929811] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   80.929892] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   80.929972] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   80.930051] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   80.930128] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   80.930208] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   80.930288] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   80.930368] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   80.930448] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   80.930527] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   80.930607] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   80.930686] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   80.930765] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   80.930845] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   80.930924] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   80.931004] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   80.931086] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   80.931169] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   80.931266] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   80.931359] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   80.931443] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   80.931523] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   80.931602] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   80.931681] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   80.931773] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   80.931843] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x7
[   80.931911] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 682), active pipes 0x1 -> 0x7
[   80.931978] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (682 - 2048), active pipes 0x1 -> 0x7
[   80.932048] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   80.932115] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   80.932185] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   80.932253] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.932321] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.932388] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.932455] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 -  646), size    0 ->  646
[   80.932521] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> ( 646 -  682), size    0 ->   36
[   80.932585] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   80.932649] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   80.932714] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   80.932780] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   80.932847] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> ( 682 - 1979), size    0 -> 1297
[   80.932914] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   80.932982] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   80.933048] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   80.933117] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   80.933186] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   80.933254] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   80.933341] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   80.933426] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 9299 required 3499
[   80.933510] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 10925 required 3499
[   80.933593] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 11707 required 3499
[   80.933673] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 10508 required 3499
[   80.933753] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 3499
[   80.933834] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 3499
[   80.933916] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 3499
[   80.933999] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   80.934081] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   80.934161] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   80.934241] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   80.934324] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 97984 kHz
[   80.934405] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   80.934490] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   80.934572] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   80.934665] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   80.934745] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   80.934825] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   80.934907] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   80.934989] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   80.935070] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] sharing existing TBT PLL (pipe mask 0x2, active 0x0)
[   80.935150] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   80.935231] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] sharing existing TC PLL 3 (pipe mask 0x2, active 0x0)
[   80.935341] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   80.935438] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   80.935537] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   80.935631] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   80.935715] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   80.935798] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.935880] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.935964] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.936047] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   80.936128] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.936209] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   80.936294] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.936376] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.936418] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.936459] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.936517] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.936539] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   80.936617] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.936696] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.936704] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.936777] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   80.936855] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   80.936951] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.937061] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.937188] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.937169] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.937208] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.937271] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.937355] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   80.937437] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.937518] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   80.937598] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   80.937677] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.937755] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   80.937836] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.937917] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.937998] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.938079] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.938161] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.938243] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.938325] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.938406] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.938487] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.938568] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.938648] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.938730] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.938812] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.938895] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.938975] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.939054] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.939132] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.939214] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.939309] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   80.939408] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[   80.939516] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[   80.939613] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[   80.939714] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[   80.939808] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [NOFB], visible: no
[   80.939902] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   80.939997] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   80.940095] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 18, dithering: 1
[   80.940192] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   80.940288] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.940385] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.940483] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.940580] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 1779513, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 14
[   80.940676] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.940772] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   80.940869] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.940967] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.941062] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.941149] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   80.941238] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   80.941334] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   80.941427] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.941518] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.941611] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   80.941704] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   80.941797] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.941889] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.941982] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.942074] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.942172] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.942274] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.942373] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   80.942468] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   80.942561] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.942658] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   80.942753] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.942848] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.942941] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.943036] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.943133] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.943228] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.943352] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.943451] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.943550] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.943646] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.943740] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.943836] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.943932] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.944027] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.944120] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.944215] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.944313] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.944408] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.944505] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   80.944604] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   80.944701] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   80.944795] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   80.944890] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   80.944983] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   80.945076] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   80.945169] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   80.945264] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   80.945358] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   80.945450] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.945543] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.945637] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.945731] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   80.945825] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.945918] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   80.946010] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.946106] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.946202] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.946297] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   80.946389] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   80.946481] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   80.946575] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.946667] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.946760] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   80.946853] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   80.946948] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.947041] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   80.947134] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   80.947239] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   80.947340] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   80.947441] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   80.947546] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   80.947641] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   80.947735] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.947828] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   80.947918] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.948009] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.948102] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.948197] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.948292] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.948386] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.948480] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.948574] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.948666] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.948759] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.948852] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.948946] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.949039] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.949132] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.949226] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.949319] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.949416] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   80.949511] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   80.949606] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   80.949699] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   80.949792] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   80.949887] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   80.949980] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   80.950072] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   80.950165] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   80.950258] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   80.950352] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   80.950446] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   80.950544] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   80.950644] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   80.950742] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   80.950840] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.950939] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.951035] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   80.951130] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   80.951239] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   80.951339] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   80.951441] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   80.951543] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   80.951647] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   80.951659] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   80.951706] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   80.951813] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.951908] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.951987] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.952082] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   80.952185] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.952258] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000004d07fa36
[   80.952323] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   80.952385] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   80.952446] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   80.952456] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   80.952522] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.952622] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   80.952722] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   80.952819] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   80.952918] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   80.953015] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   80.953110] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   80.953204] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   80.953301] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   80.953397] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   80.953491] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   80.953587] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   80.953684] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   80.953780] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   80.953875] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   80.953971] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   80.954066] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   80.954161] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   80.954257] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   80.954354] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   80.954461] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   80.954563] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   80.954659] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   80.954758] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   80.954855] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   80.954950] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   80.955045] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   80.955146] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   80.955249] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   80.955349] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   80.955445] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   80.955543] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   80.955641] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   80.955735] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   80.955828] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   80.955922] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   80.956015] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   80.956107] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   80.956201] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.956297] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   80.956390] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.956488] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   80.956585] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   80.956681] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   80.956777] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   80.956875] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   80.956971] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   80.957074] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   80.957158] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   80.957243] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   80.957330] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   80.957411] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   80.957494] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   80.957573] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   80.957652] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   80.957734] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   80.957817] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   80.957900] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   80.957981] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   80.958083] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   80.958182] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   80.958279] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   80.958378] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   80.958474] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   80.958568] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   80.958661] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   80.958755] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   80.958852] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   80.958950] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   80.959048] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   80.959148] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   80.959261] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   80.959361] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   80.959462] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   80.959567] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   80.959662] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   80.959757] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   80.959853] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   80.959951] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   80.960049] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   80.960145] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   80.960240] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.960338] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.960435] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.960535] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   80.960632] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.960729] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   80.960827] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.960922] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.961017] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.961113] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   80.961211] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.961306] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.961402] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   80.961500] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   80.961594] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.961687] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.961785] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.961884] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.961980] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   80.962078] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.962176] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   80.962210] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.962272] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   80.962314] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.962365] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.962458] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   80.962548] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.962546] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.962641] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.962736] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.962847] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.962954] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.963036] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.963055] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.963062] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.963166] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.963271] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.963369] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.963462] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.963557] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.963650] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.963746] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.963835] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.963928] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.964023] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.964116] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.964212] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.964304] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   80.964398] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   80.964495] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.964591] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   80.964688] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   80.964782] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   80.964878] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   80.964970] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   80.965065] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.965160] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.965255] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.965351] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   80.965446] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.965541] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   80.965634] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.965728] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.965821] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.965913] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   80.966007] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   80.966101] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   80.966193] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.966284] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.966363] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   80.966443] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   80.966521] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.966603] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.966684] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.966765] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.966847] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.966929] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.967010] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   80.967091] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   80.967172] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.967310] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   80.967408] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.967507] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.967608] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.967700] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.967803] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.967899] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.967993] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.968085] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   80.968177] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   80.968268] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   80.968361] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   80.968455] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.968547] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.968641] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.968736] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.968831] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.968926] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.969022] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.969116] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   80.969208] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   80.969303] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   80.969396] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   80.969489] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   80.969583] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   80.969681] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   80.969774] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   80.969881] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.969972] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.970053] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.970150] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   80.970252] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.970338] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.970410] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   80.970503] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   80.970592] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.970654] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000f68b62fd
[   80.970710] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   80.970764] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   80.970815] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   80.970825] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   80.970878] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.970962] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   80.971046] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   80.971129] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   80.971213] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   80.971310] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   80.971409] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   80.971512] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   80.971615] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   80.971709] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   80.971802] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   80.971897] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   80.971991] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   80.972088] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   80.972182] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   80.972276] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   80.972371] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   80.972469] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   80.972561] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   80.972654] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   80.972748] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   80.972842] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   80.972936] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   80.973029] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   80.973123] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   80.973217] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   80.973308] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   80.973402] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   80.973495] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   80.973589] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   80.973685] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   80.973778] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   80.973872] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   80.973967] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   80.974060] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   80.974153] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   80.974244] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   80.974337] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   80.974429] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.974512] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   80.974592] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.974673] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   80.974756] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   80.974839] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   80.974919] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   80.975000] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   80.975083] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   80.975170] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   80.975259] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   80.975345] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   80.975433] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   80.975513] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   80.975597] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   80.975676] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   80.975755] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   80.975835] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   80.975913] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   80.975991] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   80.976069] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   80.976170] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   80.976271] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   80.976367] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   80.976463] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   80.976557] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   80.976652] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   80.976749] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   80.976845] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   80.976943] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   80.977040] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   80.977136] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   80.977235] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   80.977331] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   80.977427] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   80.977525] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   80.977622] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   80.977718] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   80.977812] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   80.977909] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   80.978007] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   80.978104] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   80.978203] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   80.978298] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.978393] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.978488] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.978583] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   80.978679] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.978776] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   80.978871] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.978967] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.979063] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.979157] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   80.979276] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.979380] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.979481] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   80.979581] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   80.979673] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.979768] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.979863] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.979959] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.980057] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   80.980154] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.980251] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   80.980346] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   80.980437] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.980531] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   80.980625] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.980720] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.980815] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.980910] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.981004] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.981099] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.981194] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.981290] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.981385] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.981481] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.981578] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.981675] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.981773] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.981852] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.981933] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.982015] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.982093] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.982173] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.982252] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   80.982332] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   80.982416] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.982498] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   80.982579] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   80.982661] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   80.982743] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   80.982825] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   80.982906] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.982989] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.983070] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.983150] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   80.983230] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.983351] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   80.983451] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.983553] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.983652] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.983746] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   80.983840] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   80.983936] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   80.984033] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.984126] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.984220] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   80.984315] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   80.984409] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.984504] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.984601] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.984699] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.984795] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   80.984891] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   80.984987] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   80.985078] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   80.985172] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.985267] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   80.985360] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.985456] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.985552] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.985648] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.985744] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.985839] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.985936] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.986032] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   80.986128] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   80.986226] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   80.986323] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   80.986418] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.986512] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.986604] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.986696] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.986789] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.986885] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.986982] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.987078] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   80.987177] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   80.987312] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   80.987429] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   80.987532] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   80.987633] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   80.987731] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   80.987764] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   80.987826] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   80.987907] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   80.987992] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000004d07fa36
[   80.987978] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.988064] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   80.988134] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   80.988199] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   80.988209] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   80.988221] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   80.988273] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   80.988374] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   80.988484] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   80.988594] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   80.988714] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   80.988702] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   80.988733] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   80.988808] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   80.988906] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   80.989002] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   80.989096] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   80.989188] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   80.989279] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   80.989371] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   80.989450] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   80.989529] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   80.989607] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   80.989685] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   80.989765] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   80.989845] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   80.989923] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   80.990001] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   80.990082] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   80.990162] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   80.990241] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   80.990320] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   80.990396] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   80.990473] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   80.990553] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   80.990633] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   80.990712] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   80.990792] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   80.990871] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   80.990951] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   80.991033] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   80.991113] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   80.991194] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   80.991301] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   80.991399] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   80.991498] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   80.991598] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.991697] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   80.991790] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   80.991886] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   80.991981] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   80.992075] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   80.992170] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   80.992264] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   80.992358] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   80.992460] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   80.992541] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   80.992621] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   80.992701] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   80.992778] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   80.992857] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   80.992934] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   80.993012] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   80.993092] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   80.993172] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   80.993251] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   80.993331] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   80.993432] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   80.993530] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   80.993624] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   80.993718] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   80.993814] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   80.993908] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   80.994000] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   80.994091] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   80.994187] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   80.994283] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   80.994377] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   80.994475] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   80.994571] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   80.994668] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   80.994768] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   80.994866] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   80.994962] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   80.995056] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   80.995152] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   80.995253] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   80.995354] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   80.995454] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   80.995553] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   80.995652] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   80.995745] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   80.995839] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   80.995935] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   80.996030] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   80.996122] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   80.996214] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   80.996309] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   80.996404] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   80.996497] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   80.996588] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   80.996679] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   80.996768] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   80.996849] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   80.996929] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.997009] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   80.997088] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.997167] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   80.997249] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   80.997331] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   80.997413] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   80.997492] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   80.997585] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   80.997666] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   80.997747] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   80.997827] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   80.997905] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   80.997985] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   80.998066] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   80.998147] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   80.998228] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.998307] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.998386] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   80.998467] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   80.998547] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   80.998627] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.998706] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.998783] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   80.998865] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   80.998972] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   80.999055] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.999143] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   80.999241] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   80.999353] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   80.999451] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   80.999551] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   80.999651] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   80.999744] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   80.999835] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   80.999928] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.000021] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.000115] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.000207] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   81.000302] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.000397] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   81.000491] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.000584] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.000677] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.000773] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   81.000867] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   81.000962] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   81.001056] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.001149] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.001241] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   81.001333] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   81.001428] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.001521] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.001618] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.001715] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   81.001811] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.001907] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   81.002002] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   81.002096] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   81.002190] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.002283] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   81.002378] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.002475] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.002574] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.002671] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.002768] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.002863] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.002960] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.003055] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   81.003150] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   81.003248] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   81.003365] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   81.003465] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.003564] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.003662] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.003756] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.003850] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.003942] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.004037] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.004132] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   81.004232] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   81.004327] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   81.004421] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   81.004517] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   81.004611] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   81.004708] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   81.004764] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   81.004885] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   81.004971] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   81.005044] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   81.005112] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   81.005180] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   81.005242] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   81.005304] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000f68b62fd
[   81.005367] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   81.005429] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   81.005494] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   81.005504] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   81.005570] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   81.005643] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   81.005745] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   81.005847] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   81.005945] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   81.006041] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   81.006139] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   81.006233] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   81.006317] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   81.006400] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   81.006482] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   81.006563] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   81.006645] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   81.006725] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   81.006805] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   81.006887] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   81.006968] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   81.007070] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   81.007151] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   81.007234] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   81.007347] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   81.007448] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   81.007547] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   81.007645] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   81.007737] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   81.007829] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   81.007921] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   81.008011] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   81.008105] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   81.008199] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   81.008291] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   81.008385] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   81.008480] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   81.008574] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   81.008666] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   81.008760] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   81.008854] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   81.008948] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   81.009041] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   81.009133] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   81.009226] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.009321] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   81.009415] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.009509] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   81.009605] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   81.009700] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   81.009794] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   81.009889] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   81.009985] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   81.010081] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   81.010179] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   81.010275] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   81.010358] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   81.010441] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   81.010523] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   81.010605] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   81.010686] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   81.010767] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   81.010849] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   81.010929] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   81.011009] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   81.011146] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   81.011397] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   81.011578] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   81.011720] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   81.011832] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   81.011951] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   81.012094] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   81.012205] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   81.012317] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   81.012438] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   81.012541] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   81.012658] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   81.012771] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   81.012889] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   81.013021] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   81.013147] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   81.013256] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   81.013351] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   81.013452] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   81.013559] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   81.013651] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   81.013643] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.013733] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   81.013819] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   81.013805] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.013900] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   81.013958] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.013986] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   81.014070] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   81.014187] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   81.014309] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   81.014452] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.014432] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   81.014478] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.014571] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   81.014692] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   81.014802] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   81.014902] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   81.015010] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   81.015118] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   81.015240] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   81.015371] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   81.015487] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   81.015609] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   81.015725] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   81.015833] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   81.015964] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   81.016087] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   81.016211] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   81.016340] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   81.016464] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   81.016575] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   81.016704] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   81.016835] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.016953] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.017061] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.017166] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   81.017296] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.017405] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   81.017533] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.017669] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.017791] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.017912] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   81.018018] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.018129] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.018259] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   81.018393] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   81.018540] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.018674] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.018806] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.018930] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.019056] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   81.019164] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.019309] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   81.019415] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   81.019547] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.019648] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   81.019749] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.019848] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.019949] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.020047] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.020149] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.020249] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.020352] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.020455] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.020608] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.020791] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.020916] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   81.021020] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.021122] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.021221] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.021336] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.021439] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.021537] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.021635] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.021730] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   81.021827] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   81.021929] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.022032] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   81.022132] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   81.022228] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   81.022323] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   81.022418] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   81.022512] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.022604] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.022696] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.022810] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   81.022906] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.023001] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   81.023094] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.023186] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.023300] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.023404] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   81.023543] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   81.023640] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   81.023736] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.023829] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.023923] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   81.024015] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   81.024107] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.024200] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   81.024294] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   81.024390] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   81.024486] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   81.024583] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   81.024679] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   81.024774] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   81.024876] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.024977] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   81.025075] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.025174] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.025271] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.025367] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.025465] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.025560] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.025661] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.025762] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.025861] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.025958] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.026053] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   81.026149] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.026244] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.026339] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.026436] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.026534] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.026632] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   81.026734] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   81.026835] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   81.026934] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   81.027032] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   81.027131] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   81.027234] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   81.027335] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   81.027435] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   81.027530] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   81.027624] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   81.027716] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   81.027810] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   81.027904] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   81.027999] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   81.028095] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.028189] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.028283] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   81.028378] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   81.028472] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   81.028569] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   81.028666] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   81.028755] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   81.028839] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   81.028900] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   81.029011] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   81.029080] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   81.029137] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   81.029193] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   81.029250] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   81.029304] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   81.029356] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000004d07fa36
[   81.029407] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   81.029457] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   81.029506] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   81.029515] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   81.029565] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   81.029625] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   81.029719] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   81.029819] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   81.029915] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   81.030016] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   81.030128] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   81.030233] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   81.030337] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   81.030432] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   81.030533] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   81.030632] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   81.030731] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   81.030831] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   81.030931] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   81.031028] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   81.031127] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   81.031231] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   81.031336] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   81.031434] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   81.031528] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   81.031623] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   81.031719] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   81.031815] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   81.031909] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   81.032006] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   81.032099] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   81.032191] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   81.032284] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   81.032380] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   81.032475] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   81.032570] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   81.032663] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   81.032760] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   81.032855] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   81.032950] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   81.033045] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   81.033140] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   81.033233] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   81.033326] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   81.033418] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.033512] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   81.033606] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.033702] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   81.033795] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   81.033890] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   81.033984] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   81.034077] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   81.034168] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   81.034263] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   81.034357] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   81.034450] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   81.034541] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   81.034634] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   81.034728] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   81.034822] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   81.034915] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   81.035010] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   81.035105] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   81.035199] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   81.035299] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   81.035398] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   81.035498] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   81.035594] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   81.035688] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   81.035779] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   81.035873] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   81.035968] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   81.036060] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   81.036155] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   81.036248] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   81.036341] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   81.036433] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   81.036523] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   81.036615] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   81.036727] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   81.036813] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   81.036896] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   81.036980] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   81.037058] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   81.037135] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   81.037214] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   81.037294] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   81.037360] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   81.037426] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   81.037492] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   81.037559] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   81.037645] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   81.037729] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   81.037811] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   81.037892] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   81.037972] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   81.038054] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   81.038134] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   81.038215] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   81.038298] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   81.038381] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   81.038465] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   81.038550] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   81.038632] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   81.038714] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   81.038796] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   81.038878] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   81.038959] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   81.039040] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   81.039122] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   81.039205] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   81.039309] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   81.039411] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   81.039509] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.039516] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.039606] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.039617] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.039699] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.039793] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   81.039814] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.039890] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.039984] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   81.040089] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.040193] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.040315] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.040302] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.040336] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.040406] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   81.040501] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.040595] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.040689] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   81.040786] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   81.040880] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.040975] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.041068] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.041164] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.041259] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   81.041355] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.041451] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   81.041544] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   81.041637] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.041731] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   81.041826] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.041920] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.042013] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.042105] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.042188] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.042269] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.042348] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.042429] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.042509] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.042589] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.042670] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   81.042751] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.042831] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.042912] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.042994] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.043073] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.043156] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.043244] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.043343] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   81.043438] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   81.043535] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.043620] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   81.043701] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   81.043781] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   81.043862] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   81.043944] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   81.044026] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.044107] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.044187] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.044266] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   81.044347] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.044430] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   81.044513] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.044593] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.044675] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.044758] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   81.044837] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   81.044916] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   81.044997] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.045077] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.045157] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   81.045240] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   81.045323] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.045405] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   81.045485] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   81.045566] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   81.045647] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   81.045728] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   81.045810] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   81.045891] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   81.045971] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.046051] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   81.046132] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.046214] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.046295] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.046374] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.046456] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.046536] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.046617] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.046697] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.046778] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.046860] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.046942] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   81.047021] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.047099] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.047179] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.047266] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.047367] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.047464] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   81.047559] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   81.047654] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   81.047737] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   81.047816] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   81.047895] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   81.047974] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   81.048054] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   81.048133] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   81.048214] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   81.048295] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   81.048375] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   81.048456] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   81.048537] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   81.048620] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   81.048701] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.048781] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.048860] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   81.048940] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   81.049019] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   81.049100] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   81.049181] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   81.049260] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   81.049342] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   81.050983] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:579]
[   81.052522] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:591]
[   81.053169] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1]
[   81.053182] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:508:eDP-1]
[   81.053287] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   81.053353] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[   81.053414] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[   81.053472] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[   81.053501] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   81.053522] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[   81.053541] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[   81.053562] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] VRR capable: yes
[   81.053631] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
[   81.053692] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
[   81.053939] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x03000 AUX -> (ret=  1) 00
[   81.053980] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] probed modes:
[   81.053990] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.054113] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1]
[   81.054121] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[   81.058228] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1] disconnected
[   81.058262] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1]
[   81.058270] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[   81.058390] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1] disconnected
[   81.058421] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2]
[   81.058428] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[   81.058542] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2] disconnected
[   81.058565] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3]
[   81.058570] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[   81.059051] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  1) 14
[   81.059859] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   81.060668] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   81.060677] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   81.060688] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   81.061222] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  8) 14 1e 80 aa 02 00 00 00
[   81.061232] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][DPRX] LTTPR common capabilities: 14 1e 80 aa 02 00 00 00
[   81.061662] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) 55
[   81.062136] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) aa
[   81.062545] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0020 AUX -> (ret=  3) 03 03 00
[   81.062554] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][LTTPR 1] PHY capabilities: 03 03 00
[   81.063210] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf003d AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   81.063220] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: LTTPR 1: OUI 00-00-00 dev-ID  HW-rev 0.0 SW-rev 0.0 quirks 0x0000
[   81.064030] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   81.064839] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   81.064847] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   81.064857] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   81.065370] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 53 22 10 05 05
[   81.065379] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DP branch: OUI 90-cc-24 dev-ID SYNAS" HW-rev 1.0 SW-rev 5.5 quirks 0x0068
[   81.065706] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02210 AUX -> (ret=  1) f8
[   81.066034] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00200 AUX -> (ret=  1) 02
[   81.066547] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00080 AUX -> (ret= 12) 08 00 00 00 00 00 00 00 08 00 00 00
[   81.066555] i915 0000:00:02.0: [drm:drm_dp_read_downstream_info [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD DFP: 08 00 00 00 00 00 00 00 08 00 00 00
[   81.066880] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00021 AUX -> (ret=  1) 01
[   81.066888] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [ENCODER:544:DDI TC3/PHY TC3] MST support: port: yes, sink: MST, modparam: yes -> enable: MST
[   81.067318] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00111 AUX -> (ret=  1) 07
[   81.067827] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0000 AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   81.068186] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe000d AUX -> (ret=  3) 00 00 00
[   81.068574] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0020 AUX -> (ret=  5) 00 00 00 00 00
[   81.068915] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0028 AUX -> (ret=  2) 00 00
[   81.069240] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0030 AUX -> (ret=  1) 00
[   81.069583] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00070 AUX -> (ret=  2) 00 00
[   81.070159] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00060 AUX -> (ret= 16) 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   81.070166] i915 0000:00:02.0: [drm:intel_dp_read_dsc_dpcd [i915]] DSC DPCD: 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   81.070561] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00090 AUX -> (ret=  1) 0f
[   81.070570] i915 0000:00:02.0: [drm:intel_dp_get_dsc_sink_cap [i915]] FEC CAPABILITY: f
[   81.070991] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x000a0 AUX -> (ret=  3) 09 1e 10
[   81.071317] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02214 AUX -> (ret=  1) 00
[   81.071326] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   81.071398] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000, 810000
[   81.071461] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000, 810000
[   81.071517] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3] disconnected
[   81.071548] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4]
[   81.071556] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[   81.071672] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4] disconnected
[   81.071699] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:509:DP-5]
[   81.071707] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 0000000039cd68e6 (2)
[   81.071716] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 0000000039cd68e6 (1)
[   81.071724] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:509:DP-5] disconnected
[   81.071746] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:567:DP-6]
[   81.071756] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 00000000b4779840 (2)
[   81.071764] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000b4779840 (1)
[   81.071771] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 00000000b4779840 (2)
[   81.071779] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.071788] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   81.071797] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   81.071804] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=1:
[   81.071811] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   81.072345] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 00 10 50 01 da
[   81.111333] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.111751] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.112236] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.113078] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.113151] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.114277] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 05 c3 22 02 01 00 db 00 00 00 00 00 00 00 00
[   81.114346] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.114420] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.114528] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   81.114641] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.114700] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   81.114762] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   81.114812] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=128:
[   81.114865] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   81.114905] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.115530] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 00 10 50 80 e0
[   81.116094] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.116158] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.155284] usb 3-6.3.3: new high-speed USB device number 10 using xhci_hcd
[   81.156412] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.156893] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.157317] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.158144] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.158194] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.159048] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 02 80 00 ff ff ff ff ff ff 00 04 72
[   81.159084] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.159728] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 1a 07 3f 63 60 21 10 20 01 04 a5 3c 22 78 3f 53
[   81.160367] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) a5 a7 56 52 9c 26 11 50 54 b3 0c 00 71 4f 81 32
[   81.160403] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.160827] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.161261] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.161294] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.171585] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.172545] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.172621] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.173597] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 80 81 c0 81 00 95 00 b3 00 d1 c0 01 01
[   81.173650] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.174317] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 2a 44 80 a0 70 38 27 40 30 20 35 00 56 50 21 00
[   81.174977] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 1a 02 3a 80 18 71 38 2d 40 58 2c 45 00 56 c5
[   81.175014] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.175450] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.175886] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.175927] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.206155] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.206784] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.207534] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.208572] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.208649] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.209654] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 50 21 00 00 1e 00 00 00 fd 00 30 4b 54
[   81.209708] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.210377] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 54 12 01 0a 20 20 20 20 20 20 00 00 00 fc 00 43
[   81.211016] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 42 32 37 32 0a 20 20 20 20 20 20 20 01 e3 9e
[   81.211058] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.211156] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   81.211250] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.211292] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   81.211334] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   81.211368] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=128:
[   81.211401] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 80
[   81.211484] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.212076] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 80 10 50 80 bb
[   81.212593] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.212645] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.230340] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.231097] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.231833] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.232783] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.232862] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.233822] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 02 80 02 03 18 f1 4b 90 01 02 03 04
[   81.233870] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.234542] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 05 11 12 13 14 1f 23 09 07 07 83 01 00 00 02 3a
[   81.235198] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 80 18 71 38 2d 40 58 2c 45 00 56 50 21 00 00 dc
[   81.235274] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.235711] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.236150] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.236186] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.258333] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.259136] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.259972] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.260980] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.261061] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.262071] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 1e 01 1d 00 72 51 d0 1e 20 6e 28 55 00
[   81.262124] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.262794] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 56 50 21 00 00 1e 8c 0a d0 8a 20 e0 2d 10 10 3e
[   81.263463] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 96 00 56 50 21 00 00 18 2a 44 80 a0 70 38 27 8a
[   81.263508] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.263944] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.264382] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.264418] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.267478] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.268431] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.268508] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.269500] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 40 30 20 35 00 56 50 21 00 00 1a 00 00
[   81.269553] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.270224] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[   81.270880] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 00 00 00 00 00 00 00 00 00 00 00 00 00 97 ac
[   81.270930] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.271029] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   81.271124] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000b4779840 (1)
[   81.271173] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] Supported Monitor Refresh rate range is 48 Hz - 75 Hz
[   81.271385] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.271354] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   81.271472] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] ELD monitor CB272
[   81.271583] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] ELD size 28, SAD count 1
[   81.271836] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.271880] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.272281] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 60 74250 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   81.272406] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 50 74250 1920 2448 2492 2640 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   81.272510] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 60 74176 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   81.272614] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:567:DP-6] probed modes:
[   81.272653] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 75 174500 1920 1968 2000 2080 1080 1083 1088 1119 0x48 0x9
[   81.272684] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.272714] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.272743] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.272771] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 50 148500 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5
[   81.272799] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1680x1050": 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   81.272827] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x1024": 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   81.272854] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1440x900": 60 106500 1440 1520 1672 1904 900 903 909 934 0x40 0x6
[   81.272881] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x800": 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   81.272908] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1152x864": 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   81.272934] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   81.272960] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   81.272986] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   81.273011] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 50 74250 1280 1720 1760 1980 720 725 730 750 0x40 0x5
[   81.273036] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[   81.273060] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   81.273084] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   81.273108] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[   81.273132] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x576": 50 27000 720 732 796 864 576 581 586 625 0x40 0xa
[   81.273156] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x576": 50 27000 720 732 796 864 576 581 586 625 0x40 0xa
[   81.273180] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27027 720 736 798 858 480 489 495 525 0x40 0xa
[   81.273204] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27027 720 736 798 858 480 489 495 525 0x40 0xa
[   81.273228] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   81.273252] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   81.273276] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   81.273300] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[   81.273324] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[   81.273348] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   81.273371] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   81.273395] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x400": 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   81.273863] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:570:DP-7]
[   81.273902] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 000000004b112a7e (2)
[   81.273948] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 000000004b112a7e (1)
[   81.273989] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 000000004b112a7e (2)
[   81.274024] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.274062] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   81.274101] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   81.274133] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3 num_tx=1 id=80 size=1:
[   81.274162] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   81.274780] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 31 50 01 00 10 50 01 66
[   81.281570] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.281793] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.282061] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.282642] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.282673] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.283442] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 05 c3 22 03 01 00 58 00 00 00 00 00 00 00 00
[   81.283492] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.283544] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.283630] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   81.283710] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.283753] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   81.283797] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   81.283834] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3 num_tx=1 id=80 size=128:
[   81.283869] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   81.283984] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.284579] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 31 50 01 00 10 50 80 5c
[   81.285120] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.285176] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.313545] usb 3-6.3.3: New USB device found, idVendor=17ef, idProduct=a395, bcdDevice=60.70
[   81.313565] usb 3-6.3.3: New USB device strings: Mfr=10, Product=11, SerialNumber=0
[   81.313570] usb 3-6.3.3: Product: USB2.0 Hub
[   81.313575] usb 3-6.3.3: Manufacturer: Lenovo
[   81.313357] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.313919] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.314684] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.315620] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.315690] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.316345] hub 3-6.3.3:1.0: USB hub found
[   81.316688] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 03 80 00 ff ff ff ff ff ff 00 4c 2d
[   81.316740] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.317412] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 35 0f 45 32 39 30 13 22 01 04 b5 46 27 78 3a ae
[   81.318063] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) a5 af 4f 42 af 26 0f 50 54 bf ef 80 71 4f 81 52
[   81.318098] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.318521] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.318954] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.318987] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.319333] hub 3-6.3.3:1.0: 4 ports detected
[   81.336434] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.336806] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.337153] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.337883] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.337937] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.338832] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 00 81 c0 81 80 a9 c0 b3 00 95 00 01 01
[   81.338881] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.339522] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 22 cc 00 50 f0 70 3e 80 18 10 35 00 b9 88 21 00
[   81.340147] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 1a 00 00 00 fd 00 1e 4b 1e 87 3c 00 0a 20 ff
[   81.340180] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.340585] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.341001] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.341030] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.341331] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.341964] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.342001] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.342804] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 20 20 20 20 20 00 00 00 fc 00 55 33 32
[   81.342840] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.343478] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 4a 35 39 78 0a 20 20 20 20 20 00 00 00 ff 00 48
[   81.344094] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 43 4a 58 35 30 31 30 35 37 0a 20 20 01 5d 1c
[   81.344132] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.344153] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.344216] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.344257] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   81.344299] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   81.344331] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3 num_tx=1 id=80 size=128:
[   81.344361] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 80
[   81.344547] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.345134] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 31 50 01 80 10 50 80 07
[   81.345672] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.345736] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.370442] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.370607] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.370815] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.371330] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.371355] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.372036] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 03 80 02 03 0f f0 42 10 5f 23 09 07
[   81.372059] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.372669] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 07 83 01 00 00 02 3a 80 18 71 38 2d 40 58 2c 45
[   81.373275] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 b9 88 21 00 00 1e 56 5e 00 a0 a0 a0 29 50 db
[   81.373295] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.373690] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.374082] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.374099] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.391538] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.391696] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.391835] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.392358] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.392378] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.393070] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 30 20 35 00 b9 88 21 00 00 1a 04 74 00
[   81.393108] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.393746] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 30 f2 70 5a 80 b0 58 8a 00 b9 88 21 00 00 1e 00
[   81.394375] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 57
[   81.394408] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.394810] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.395246] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.395277] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.399373] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.399870] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.399888] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.400572] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 00 00 00 00 00 00 00 00 00 00 00 00 00
[   81.400588] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.401204] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[   81.401855] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 00 00 00 00 00 00 00 00 00 00 00 00 00 56 4e
[   81.401905] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.401983] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   81.402042] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 000000004b112a7e (1)
[   81.402077] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:570:DP-7] Assigning EDID-1.4 digital sink color depth as 10 bpc.
[   81.402180] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:570:DP-7] ELD monitor U32J59x
[   81.402260] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:570:DP-7] ELD size 32, SAD count 1
[   81.402351] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.402791] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.402875] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:570:DP-7] probed modes:
[   81.402901] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   81.402921] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 30 297000 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5
[   81.402822] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.402939] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 30 297000 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5
[   81.402956] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 30 296703 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5
[   81.402975] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "2560x1440": 60 241500 2560 2608 2640 2720 1440 1443 1448 1481 0x40 0x9
[   81.402994] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.403012] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.403031] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.403049] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1680x1050": 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   81.403068] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1600x900": 60 108000 1600 1624 1704 1800 900 901 904 1000 0x40 0x5
[   81.403087] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x1024": 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   81.403107] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x1024": 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   81.403126] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1440x900": 60 106500 1440 1520 1672 1904 900 903 909 934 0x40 0x6
[   81.403146] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x800": 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   81.403165] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1152x864": 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   81.403184] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   81.403204] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   81.403242] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   81.403262] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[   81.403282] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   81.403301] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "832x624": 75 57284 832 864 928 1152 624 625 628 667 0x40 0xa
[   81.403320] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   81.403339] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 72 50000 800 856 976 1040 600 637 643 666 0x40 0x5
[   81.403358] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   81.403366] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[   81.403372] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   81.403379] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 73 31500 640 664 704 832 480 489 492 520 0x40 0xa
[   81.403389] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[   81.403394] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[   81.403400] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   81.403406] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x400": 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   81.404307] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   81.404420] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   81.404498] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000007015c065
[   81.404567] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   81.404629] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   81.404689] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   81.404699] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   81.404764] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   81.404861] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   81.404950] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   81.405038] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   81.405124] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   81.405210] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   81.405298] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   81.405387] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   81.405473] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   81.405559] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   81.405645] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   81.405732] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   81.405818] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   81.405902] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   81.405988] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   81.406078] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   81.406167] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   81.406257] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   81.406346] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   81.406436] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   81.406528] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   81.406622] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   81.406715] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   81.406808] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   81.406902] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   81.406996] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   81.407089] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   81.407181] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   81.407288] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   81.407389] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   81.407488] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   81.407586] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   81.407684] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   81.407783] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   81.407882] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   81.407975] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   81.408068] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   81.408175] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   81.408277] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.408375] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   81.408468] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.408562] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   81.408656] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   81.408750] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   81.408844] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   81.408938] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   81.409035] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   81.409139] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   81.409220] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   81.409297] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   81.409380] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   81.409462] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   81.409540] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   81.409617] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   81.409682] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   81.409749] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   81.409817] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   81.409885] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   81.409952] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   81.410037] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   81.410119] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   81.410199] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   81.410277] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   81.410355] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   81.410436] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   81.410516] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   81.410595] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   81.410676] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   81.410758] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   81.410848] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   81.410946] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   81.411038] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   81.411131] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   81.411232] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   81.411358] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   81.411455] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   81.411570] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   81.411681] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   81.411765] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   81.411848] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   81.411930] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   81.412012] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.412093] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.412171] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.412251] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   81.412332] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.412414] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   81.412496] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.412579] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.412661] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.412741] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   81.412821] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.412904] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.412999] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   81.413093] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   81.413174] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.413255] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.413339] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.413421] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.413503] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   81.413586] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.413669] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   81.413749] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   81.413832] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.413914] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   81.413993] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.414074] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.414156] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.414239] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.414335] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.414413] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.414492] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.414573] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.414654] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.414735] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.414815] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   81.414895] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.414975] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.415057] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.415137] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.415222] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.415316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.415394] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.415421] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.415505] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.415517] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   81.415615] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   81.415702] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.415759] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.415784] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   81.415866] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   81.415946] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   81.416050] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   81.416159] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   81.416244] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.416261] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.416267] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.416371] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.416473] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.416574] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   81.416677] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.416777] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   81.416878] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.416958] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.417039] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.417119] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   81.417200] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   81.417280] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   81.417362] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.417443] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.417524] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   81.417605] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   81.417686] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.417769] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.417852] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.417933] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   81.418014] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.418095] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   81.418178] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   81.418273] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   81.418364] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.418444] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   81.418524] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.418607] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.418689] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.418769] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.418849] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.418928] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.419007] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.419088] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   81.419169] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   81.419280] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   81.419379] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   81.419478] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.419570] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.419660] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.419739] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.419818] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.419898] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.419978] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.420056] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   81.420135] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   81.420214] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   81.420294] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   81.420374] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   81.420454] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   81.420537] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   81.420584] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   81.420688] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   81.420751] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000009acbd376
[   81.420809] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   81.420863] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   81.420914] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   81.420922] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   81.420976] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   81.421062] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   81.421147] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   81.421232] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   81.421316] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   81.421399] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   81.421480] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   81.421562] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   81.421643] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   81.421722] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   81.421803] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   81.421884] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   81.421963] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   81.422041] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   81.422120] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   81.422200] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   81.422280] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   81.422358] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   81.422438] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   81.422518] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   81.422599] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   81.422680] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   81.422759] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   81.422840] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   81.422920] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   81.423000] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   81.423080] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   81.423161] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   81.423273] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   81.423372] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   81.423467] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   81.423560] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   81.423653] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   81.423744] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   81.423825] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   81.423908] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   81.423989] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   81.424070] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   81.424151] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.424232] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   81.424312] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.424406] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   81.424502] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   81.424585] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   81.424667] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   81.424761] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   81.424859] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   81.424956] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   81.425025] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   81.425095] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   81.425165] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   81.425233] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   81.425301] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   81.425366] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   81.425429] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   81.425494] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   81.425561] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   81.425627] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   81.425695] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   81.425780] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   81.425863] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   81.425946] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   81.426029] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   81.426123] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   81.426217] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   81.426314] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   81.426409] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   81.426503] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   81.426601] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   81.426697] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   81.426794] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   81.426892] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   81.426987] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   81.427082] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   81.427179] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   81.427282] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   81.427385] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   81.427481] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   81.427579] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   81.427674] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   81.427769] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   81.427855] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.427936] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.428018] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.428096] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   81.428176] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.428258] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   81.428338] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.428417] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.428499] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.428580] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   81.428661] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.428740] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.428818] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   81.428898] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   81.428979] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.429060] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.429141] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.429223] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.429304] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   81.429385] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.429463] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   81.429542] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   81.429621] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.429703] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   81.429784] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.429865] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.429946] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.430027] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.430106] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.430188] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.430270] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.430351] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.430430] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.430508] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.430586] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   81.430666] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.430745] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.430825] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.430905] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.430984] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.431062] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.431141] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.431229] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   81.431325] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   81.431427] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.431522] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   81.431618] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   81.431698] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   81.431778] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   81.431857] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   81.431936] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.432017] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.432097] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.432175] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   81.432254] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.432332] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   81.432412] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.432492] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.432571] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.432651] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   81.432733] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   81.432815] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   81.432896] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.432975] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.433054] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   81.433132] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   81.433210] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.433291] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.433371] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.433451] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   81.433531] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.433612] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   81.433694] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   81.433775] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   81.433856] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.433937] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   81.434018] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.434099] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.434178] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.434256] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.434336] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.434422] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.434517] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.434611] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   81.434705] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   81.434798] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   81.434893] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   81.434986] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.435079] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.435170] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.435272] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.435370] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.435465] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.435563] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.435660] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   81.435740] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   81.435820] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   81.435900] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   81.435979] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   81.436057] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   81.436136] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   81.436187] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   81.436289] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   81.436357] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   81.436415] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   81.436471] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   81.436530] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   81.436583] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   81.436633] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000007015c065
[   81.436686] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   81.436736] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   81.436784] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   81.436793] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   81.436842] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   81.436900] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   81.436985] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   81.437071] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   81.437156] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   81.437240] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   81.437323] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   81.437406] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   81.437489] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   81.437568] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   81.437647] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   81.437728] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   81.437810] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   81.437890] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   81.437972] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   81.438055] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   81.438136] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   81.438215] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   81.438293] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   81.438374] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   81.438454] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   81.438535] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   81.438616] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   81.438696] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   81.438775] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   81.438856] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   81.438937] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   81.439019] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   81.439100] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   81.439178] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   81.439273] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   81.439375] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   81.439475] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   81.439570] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   81.439663] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   81.439744] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   81.439822] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   81.439903] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   81.439983] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   81.440061] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   81.440138] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.440218] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   81.440297] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.440376] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   81.440455] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   81.440535] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   81.440614] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   81.440692] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   81.440773] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   81.440851] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   81.440928] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   81.441006] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   81.441085] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   81.441166] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   81.441248] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   81.441329] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   81.441411] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   81.441494] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   81.441574] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   81.441653] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   81.441731] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   81.441811] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   81.441891] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   81.441972] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   81.442054] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   81.442135] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   81.442216] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   81.442297] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   81.442379] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   81.442458] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   81.442539] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   81.442620] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   81.442699] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   81.442779] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   81.442860] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   81.442946] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   81.443018] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   81.443087] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   81.443159] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   81.443233] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   81.443314] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   81.443402] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   81.443483] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   81.443565] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   81.443646] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   81.443726] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   81.443799] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   81.443883] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   81.443967] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   81.444047] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   81.444126] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   81.444204] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   81.444283] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   81.444364] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   81.444445] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   81.444526] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   81.444610] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   81.444691] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   81.444774] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   81.444853] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   81.444934] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   81.445013] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   81.445093] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   81.445174] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   81.445253] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   81.445333] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   81.445416] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   81.445498] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   81.445579] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   81.445659] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.445740] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.445819] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.445899] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   81.445982] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.446061] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   81.446140] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.446218] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.446244] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.446298] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.446355] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.446377] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   81.446458] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.446521] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.446538] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.446619] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   81.446703] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   81.446810] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.446917] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.447006] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.447024] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.447027] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.447126] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.447223] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   81.447323] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.447419] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   81.447516] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   81.447604] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.447684] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   81.447766] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.447848] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.447929] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.448011] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.448094] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.448175] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.448257] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.448339] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.448421] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.448502] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.448580] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   81.448660] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.448741] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.448821] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.448900] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.448981] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.449062] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.449143] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.449223] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   81.449304] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   81.449386] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.449465] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   81.449543] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   81.449624] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   81.449702] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   81.449781] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   81.449860] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.449939] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.450019] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.450098] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   81.450178] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.450259] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   81.450338] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.450417] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.450499] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.450580] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   81.450662] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   81.450742] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   81.450820] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.450899] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.450979] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   81.451061] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   81.451140] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.451222] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   81.451317] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   81.451416] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   81.451516] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   81.451612] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   81.451708] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   81.451788] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   81.451868] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.451949] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   81.452032] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.452112] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.452193] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.452272] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.452353] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.452434] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.452514] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.452595] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.452674] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.452751] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.452830] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   81.452909] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.452988] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.453068] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.453148] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.453227] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.453306] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   81.453386] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   81.453468] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   81.453549] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   81.453630] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   81.453714] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   81.453795] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   81.453877] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   81.453956] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   81.454036] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   81.454117] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   81.454197] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   81.454277] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   81.454357] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   81.454439] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   81.454522] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.454604] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.454684] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   81.454763] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   81.454843] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   81.454924] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   81.455004] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   81.455084] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   81.455167] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   81.455195] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   81.455307] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   81.455405] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   81.455473] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   81.455536] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   81.455602] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   81.455664] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   81.455724] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000009acbd376
[   81.455777] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   81.455829] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   81.455881] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   81.455890] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   81.455948] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   81.456011] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   81.456098] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   81.456183] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   81.456265] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   81.456345] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   81.456425] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   81.456507] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   81.456590] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   81.456671] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   81.456752] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   81.456835] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   81.456917] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   81.456995] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   81.457075] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   81.457156] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   81.457237] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   81.457318] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   81.457399] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   81.457478] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   81.457558] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   81.457639] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   81.457720] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   81.457801] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   81.457881] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   81.457960] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   81.458040] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   81.458122] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   81.458202] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   81.458281] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   81.458363] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   81.458443] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   81.458522] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   81.458601] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   81.458681] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   81.458760] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   81.458841] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   81.458922] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   81.459001] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   81.459081] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   81.459160] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.459245] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   81.459339] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.459438] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   81.459536] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   81.459633] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   81.459727] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   81.459813] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   81.459895] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   81.459979] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   81.460061] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   81.460143] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   81.460222] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   81.460303] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   81.460384] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   81.460464] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   81.460545] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   81.460626] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   81.460707] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   81.460787] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   81.460866] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   81.460946] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   81.461026] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   81.461105] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   81.461185] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   81.461265] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   81.461346] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   81.461426] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   81.461504] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   81.461582] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   81.461660] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   81.461741] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   81.461819] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   81.461899] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   81.461979] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   81.462061] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   81.462134] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   81.462204] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   81.462275] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   81.462342] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   81.462409] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   81.462476] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   81.462540] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   81.462606] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   81.462672] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   81.462737] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   81.462805] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   81.462891] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   81.462974] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   81.463054] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   81.463134] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   81.463217] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   81.463312] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   81.463410] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   81.463494] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   81.463577] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   81.463660] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   81.463742] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   81.463827] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   81.463911] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   81.463993] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   81.464075] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   81.464156] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   81.464238] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   81.464320] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   81.464401] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   81.464482] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   81.464564] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   81.464647] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   81.464728] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.464810] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.464890] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.464972] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   81.465054] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.465136] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   81.465216] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.465298] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.465380] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.465461] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   81.465542] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.465624] usb 3-6.3.2: Warning! Unlikely big volume step count (=6144), linear volume or wrong cval->res?
[   81.465629] usb 3-6.3.2: [5] FU [Mic Capture Volume] ch = 1, val = 1536/7680/1
[   81.465623] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.465706] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   81.465786] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   81.465865] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.465980] usbcore: registered new interface driver snd-usb-audio
[   81.465944] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.466027] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.466110] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.466210] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   81.466323] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.466414] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   81.466534] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   81.466628] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.466745] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   81.466855] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.466960] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.467067] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.467180] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.467309] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.467423] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.467527] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.467626] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.467747] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.467854] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.467961] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   81.468058] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.468168] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.468276] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.468369] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.468456] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.468554] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.468653] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.468741] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   81.468827] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   81.468910] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.468995] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   81.469082] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   81.469175] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   81.469268] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   81.469359] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   81.469444] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.469532] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.469625] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.469710] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   81.469793] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.469877] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   81.469961] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.470051] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.470140] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.470246] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   81.470381] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   81.470504] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   81.470624] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.470728] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.470830] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   81.470933] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   81.471034] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.471135] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   81.471245] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   81.471355] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   81.471456] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   81.471540] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.471569] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   81.471673] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   81.471670] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.471771] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   81.471872] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.471907] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.471973] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   81.472074] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.472179] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.472286] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.472396] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.472527] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.472508] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.472545] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.472617] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.472719] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.472820] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.472920] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.473019] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.473121] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   81.473225] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.473326] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.473427] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.473528] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.473629] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.473729] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   81.473832] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   81.473936] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   81.474039] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   81.474140] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   81.474240] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   81.474341] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   81.474440] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   81.474541] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   81.474644] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   81.474746] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   81.474848] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   81.474947] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   81.475052] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   81.475154] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   81.475264] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.475368] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.475475] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   81.475577] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   81.475677] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   81.475780] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   81.475881] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   81.475980] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   81.476087] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   81.476245] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   81.476370] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   81.476448] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000007015c065
[   81.476519] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   81.476588] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   81.476655] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   81.476666] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   81.476736] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   81.476841] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   81.476944] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   81.477021] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   81.477092] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   81.477159] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   81.477229] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   81.477291] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   81.477355] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000007015c065
[   81.477419] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   81.477478] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   81.477540] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   81.477551] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   81.477615] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   81.477688] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   81.477796] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   81.477901] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   81.477979] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000007015c065
[   81.478051] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   81.478116] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   81.478178] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 20 slots for pipe bpp 24.0000 dsc 0
[   81.478242] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   81.478349] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   81.478457] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   81.478534] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   81.478605] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   81.478671] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   81.478740] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   81.478804] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   81.478865] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000007015c065
[   81.478927] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   81.478989] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   81.479052] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   81.479119] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   81.479193] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   81.479309] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   81.479434] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] Link bpp limited to 23.9375
[   81.479539] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 18.0000
[   81.479619] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000007015c065
[   81.479690] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 18.0000
[   81.479765] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 18.0000
[   81.479861] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 14 slots for pipe bpp 18.0000 dsc 0
[   81.479944] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 18, dithering: 1
[   81.480067] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   81.480168] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   81.480241] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   81.480307] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   81.480372] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   81.480440] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   81.480501] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   81.480565] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000007015c065
[   81.480627] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   81.480702] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   81.480786] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   81.480862] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   81.480946] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   81.481048] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   81.481148] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   81.481247] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   81.481343] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   81.481438] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   81.481535] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 14, data 1779513/8388608 link 96119/524288)
[   81.481631] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   81.481725] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   81.481822] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   81.481918] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   81.482032] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   81.482141] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   81.482243] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   81.482342] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   81.482445] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   81.482550] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   81.482661] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   81.482770] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   81.482879] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   81.482990] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   81.483099] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   81.483204] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   81.483348] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   81.483456] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   81.483560] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   81.483680] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   81.483780] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   81.483880] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   81.483979] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   81.484080] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   81.484184] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   81.484288] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   81.484388] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   81.484489] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   81.484587] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   81.484686] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in fec_enable (expected no, found yes)
[   81.484787] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   81.484888] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   81.484989] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.485096] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   81.485202] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.485309] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 18)
[   81.485448] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   81.485551] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   81.485654] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   81.485751] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   81.485851] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   81.485952] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   81.486053] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   81.486151] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   81.486250] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   81.486349] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   81.486448] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   81.486546] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   81.486645] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   81.486743] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   81.486842] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   81.486943] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   81.487043] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   81.487139] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   81.487241] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   81.487344] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   81.487443] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   81.487542] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   81.487642] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   81.487743] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   81.487841] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   81.487944] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   81.488043] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   81.488142] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   81.488242] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   81.488343] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   81.488441] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   81.488539] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   81.488636] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   81.488734] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   81.488833] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   81.488934] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   81.489033] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   81.489136] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   81.489238] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   81.489341] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   81.489445] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   81.489545] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   81.489645] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   81.489747] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.489849] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   81.489949] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.490047] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   81.490147] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   81.490247] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   81.490347] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   81.490445] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   81.490557] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   81.490680] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   81.490784] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   81.490884] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   81.490983] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   81.491084] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   81.491185] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   81.491290] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   81.491396] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   81.491500] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   81.491602] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   81.491704] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   81.491805] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   81.491907] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   81.492007] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   81.492109] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   81.492212] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   81.492313] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   81.492415] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   81.492516] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   81.492615] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   81.492713] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   81.492811] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   81.492911] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   81.493011] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   81.493111] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   81.493209] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   81.493339] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   81.493433] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x7
[   81.493516] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 682), active pipes 0x1 -> 0x7
[   81.493602] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (682 - 2048), active pipes 0x1 -> 0x7
[   81.493690] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   81.493774] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   81.493856] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   81.493938] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   81.494022] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   81.494104] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   81.494187] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 -  646), size    0 ->  646
[   81.494270] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> ( 646 -  682), size    0 ->   36
[   81.494352] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   81.494435] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   81.494517] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   81.494600] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   81.494682] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> ( 682 - 1979), size    0 -> 1297
[   81.494764] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   81.494847] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   81.494927] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   81.495008] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   81.495089] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   81.495172] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   81.495281] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   81.495385] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 9299 required 3499
[   81.495487] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 10925 required 3499
[   81.495586] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 11707 required 3499
[   81.495684] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 10508 required 3499
[   81.495782] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 3499
[   81.495882] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 3499
[   81.495981] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 3499
[   81.496080] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   81.496184] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   81.496285] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   81.496386] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   81.496487] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 97984 kHz
[   81.496588] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   81.496692] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   81.496794] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   81.496895] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   81.496999] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   81.497102] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   81.497199] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   81.497225] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.497295] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   81.497340] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.497391] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] sharing existing TBT PLL (pipe mask 0x2, active 0x0)
[   81.497486] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   81.497547] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.497584] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] sharing existing TC PLL 3 (pipe mask 0x2, active 0x0)
[   81.497682] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   81.497787] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   81.497895] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   81.498019] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.498001] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   81.498035] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.498105] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   81.498204] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.498301] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.498401] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.498502] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   81.498601] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.498701] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   81.498801] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.498902] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.499002] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.499105] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   81.499206] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.499312] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.499414] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   81.499509] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   81.499605] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.499703] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.499798] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.499897] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.499992] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   81.500088] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.500185] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   81.500280] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   81.500373] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.500468] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   81.500562] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.500660] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.500757] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.500852] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.500948] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.501043] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.501136] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.501232] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.501328] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.501426] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.501543] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   81.501644] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.501747] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.501850] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.501964] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.502073] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.502190] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.502298] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.502406] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   81.502509] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[   81.502609] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[   81.502711] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[   81.502813] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[   81.502915] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [NOFB], visible: no
[   81.503015] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   81.503115] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   81.503221] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 18, dithering: 1
[   81.503324] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   81.503435] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.503531] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.503625] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.503721] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 1779513, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 14
[   81.503801] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.503882] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   81.503962] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.504046] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.504141] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.504238] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   81.504340] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   81.504433] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   81.504512] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.504591] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.504673] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   81.504753] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   81.504832] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.504911] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.504990] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.505071] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   81.505154] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.505237] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   81.505319] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   81.505400] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   81.505482] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.505564] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   81.505646] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.505727] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.505809] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.505889] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.505970] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.506054] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.506135] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.506215] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.506298] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.506380] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.506462] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   81.506541] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.506620] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.506700] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.506780] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.506861] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.506943] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.507025] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.507107] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   81.507190] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   81.507298] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   81.507401] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   81.507489] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   81.507572] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   81.507654] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   81.507734] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   81.507816] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   81.507899] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   81.507980] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.508061] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.508141] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.508222] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   81.508301] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.508382] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   81.508463] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.508542] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.508622] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.508704] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   81.508785] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   81.508866] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   81.508945] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.509037] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.509127] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   81.509207] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   81.509284] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.509363] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   81.509440] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   81.509522] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   81.509603] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   81.509682] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   81.509762] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   81.509842] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   81.509922] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.510001] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   81.510077] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.510156] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.510236] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.510316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.510397] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.510477] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.510557] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.510637] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.510718] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.510798] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.510876] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   81.510955] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.511036] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.511118] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.511198] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.511293] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.511391] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   81.511487] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   81.511568] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   81.511649] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   81.511735] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   81.511814] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   81.511895] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   81.511975] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   81.512057] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   81.512142] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   81.512234] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   81.512321] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   81.512405] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   81.512487] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   81.512568] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   81.512655] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.512750] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.512834] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   81.512915] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   81.512997] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   81.513078] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   81.513173] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   81.513265] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   81.513348] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   81.513362] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   81.513432] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   81.513536] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   81.513619] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   81.513690] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   81.513782] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   81.513870] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   81.513933] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000009acbd376
[   81.513988] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   81.514042] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   81.514095] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   81.514106] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   81.514163] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   81.514250] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   81.514335] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   81.514417] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   81.514500] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   81.514583] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   81.514663] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   81.514745] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   81.514824] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   81.514904] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   81.514984] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   81.515064] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   81.515145] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   81.515229] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   81.515360] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   81.515457] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   81.515538] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   81.515618] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   81.515697] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   81.515777] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   81.515854] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   81.515940] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   81.516033] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   81.516112] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   81.516190] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   81.516270] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   81.516350] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   81.516427] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   81.516505] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   81.516585] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   81.516664] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   81.516743] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   81.516821] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   81.516900] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   81.516981] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   81.517060] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   81.517139] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   81.517218] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   81.517297] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.517376] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   81.517454] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.517533] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   81.517614] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   81.517694] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   81.517774] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   81.517854] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   81.517935] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   81.518030] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   81.518111] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   81.518192] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   81.518276] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   81.518356] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   81.518441] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   81.518524] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   81.518605] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   81.518685] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   81.518767] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   81.518849] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   81.518931] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   81.519033] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   81.519143] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   81.519276] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   81.519383] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   81.519478] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   81.519563] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   81.519652] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   81.519736] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   81.519824] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   81.519910] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   81.519997] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   81.520086] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   81.520172] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   81.520260] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   81.520352] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   81.520447] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   81.520535] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   81.520617] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   81.520700] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   81.520789] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   81.520875] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   81.520960] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   81.521045] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.521150] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.521233] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.521316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   81.521398] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.521479] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   81.521559] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.521640] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.521723] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.521805] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   81.521886] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.521966] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.522043] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   81.522124] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   81.522206] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.522286] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.522368] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.522447] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.522527] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   81.522611] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.522693] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   81.522776] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   81.522859] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.522941] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   81.523022] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.523103] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.523184] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.523293] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.523394] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.523383] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.523493] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.523505] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.523588] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.523626] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.523683] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.523767] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.523863] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.523968] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   81.524074] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.524152] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.524166] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.524180] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.524280] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.524370] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.524451] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.524532] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.524616] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.524696] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   81.524777] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   81.524858] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.524938] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   81.525018] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   81.525095] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   81.525173] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   81.525250] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   81.525330] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.525411] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.525490] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.525569] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   81.525650] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.525730] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   81.525810] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.525890] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.525970] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.526049] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   81.526129] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   81.526209] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   81.526289] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.526368] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.526450] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   81.526542] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   81.526636] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.526732] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.526828] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.526921] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   81.527016] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.527110] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   81.527205] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   81.527306] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   81.527399] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.527486] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   81.527567] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.527647] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.527727] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.527806] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.527889] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.527971] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.528051] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.528130] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   81.528209] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   81.528288] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   81.528369] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   81.528450] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.528532] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.528613] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.528696] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.528775] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.528857] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.528939] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.529018] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   81.529099] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   81.529179] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   81.529257] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   81.529338] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   81.529429] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   81.529522] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   81.529607] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   81.529696] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   81.529779] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   81.529852] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   81.529938] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   81.530009] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   81.530079] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   81.530147] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   81.530239] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   81.530339] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   81.530401] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000007015c065
[   81.530457] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   81.530510] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   81.530562] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   81.530570] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   81.530629] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   81.530714] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   81.530797] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   81.530881] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   81.530965] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   81.531049] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   81.531132] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   81.531214] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   81.531310] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   81.531410] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   81.531512] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   81.531615] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   81.531716] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   81.531815] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   81.531908] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   81.532002] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   81.532099] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   81.532194] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   81.532282] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   81.532373] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   81.532453] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   81.532532] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   81.532610] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   81.532687] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   81.532766] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   81.532845] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   81.532923] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   81.533003] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   81.533083] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   81.533163] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   81.533244] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   81.533323] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   81.533402] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   81.533480] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   81.533559] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   81.533636] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   81.533715] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   81.533794] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   81.533872] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.533955] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   81.534035] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.534115] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   81.534196] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   81.534277] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   81.534359] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   81.534439] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   81.534519] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   81.534604] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   81.534674] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   81.534742] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   81.534814] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   81.534887] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   81.534966] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   81.535048] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   81.535125] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   81.535199] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   81.535311] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   81.535388] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   81.535466] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   81.535565] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   81.535664] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   81.535761] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   81.535857] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   81.535951] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   81.536045] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   81.536140] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   81.536248] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   81.536348] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   81.536450] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   81.536548] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   81.536663] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   81.536767] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   81.536880] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   81.536976] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   81.537076] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   81.537176] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   81.537275] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   81.537368] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   81.537467] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   81.537565] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   81.537662] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   81.537761] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.537859] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.537955] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.538049] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   81.538146] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.538239] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   81.538333] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.538430] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.538527] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.538623] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   81.538722] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.538820] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.538915] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   81.539009] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   81.539107] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.539206] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.539343] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.539457] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.539557] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   81.539669] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.539776] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   81.539883] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   81.539985] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.540095] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   81.540194] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.540307] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.540409] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.540505] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.540601] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.540698] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.540810] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.540913] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.541012] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.541111] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.541208] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   81.541309] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.541412] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.541514] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.541617] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.541716] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.541814] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.541916] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.542015] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   81.542118] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   81.542221] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.542322] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   81.542421] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   81.542520] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   81.542622] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   81.542723] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   81.542825] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.542924] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.543023] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.543125] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   81.543238] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.543372] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   81.543475] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.543582] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.543679] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.543776] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   81.543869] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   81.543962] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   81.544055] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.544143] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.544225] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   81.544320] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   81.544414] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.544497] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.544578] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.544661] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   81.544745] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.544836] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   81.544931] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   81.545029] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   81.545114] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.545200] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   81.545292] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.545383] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.545467] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.545550] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.545632] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.545713] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.545797] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.545877] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   81.545957] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   81.546038] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   81.546119] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   81.546199] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.546279] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.546358] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.546441] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.546522] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.546602] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.546685] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.546765] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   81.546848] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   81.546929] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   81.547011] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   81.547094] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   81.547177] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   81.547295] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   81.547338] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   81.547471] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   81.547567] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000009acbd376
[   81.547641] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   81.547703] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   81.547763] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   81.547772] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   81.547839] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   81.547942] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   81.548054] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   81.548156] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   81.548256] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   81.548354] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   81.548451] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   81.548550] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   81.548646] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   81.548741] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   81.548838] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   81.548934] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   81.548964] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.549030] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   81.549091] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.549121] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   81.549197] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.549217] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   81.549311] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   81.549413] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   81.549521] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   81.549650] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.549631] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   81.549663] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.549738] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   81.549842] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   81.549942] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   81.550041] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   81.550141] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   81.550242] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   81.550341] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   81.550438] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   81.550536] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   81.550636] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   81.550736] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   81.550834] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   81.550931] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   81.551027] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   81.551126] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   81.551227] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   81.551326] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   81.551424] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   81.551518] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   81.551612] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.551694] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   81.551776] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.551857] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   81.551939] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   81.552019] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   81.552099] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   81.552177] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   81.552256] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   81.552343] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   81.552414] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   81.552483] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   81.552554] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   81.552623] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   81.552691] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   81.552758] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   81.552824] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   81.552893] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   81.552958] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   81.553023] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   81.553089] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   81.553174] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   81.553257] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   81.553337] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   81.553418] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   81.553499] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   81.553577] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   81.553655] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   81.553734] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   81.553814] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   81.553893] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   81.553973] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   81.554056] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   81.554134] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   81.554214] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   81.554296] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   81.554377] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   81.554458] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   81.554538] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   81.554617] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   81.554701] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   81.554783] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   81.554865] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   81.554945] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.555024] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.555105] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.555185] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   81.555279] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.555377] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   81.555475] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.555571] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.555662] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.555742] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   81.555822] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.555903] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.555983] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   81.556064] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   81.556147] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.556228] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.556309] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.556392] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.556475] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   81.556557] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.556640] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   81.556719] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   81.556797] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.556877] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   81.556958] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.557042] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.557123] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.557205] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.557289] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.557373] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.557456] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.557539] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.557621] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.557702] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.557783] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   81.557866] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.557948] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.558032] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.558115] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.558198] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.558282] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.558366] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.558446] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   81.558525] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   81.558607] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.558690] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   81.558772] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   81.558855] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   81.558937] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   81.559018] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   81.559097] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.559176] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.559280] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.559380] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   81.559478] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.559572] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   81.559663] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.559746] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.559826] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.559909] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   81.559988] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   81.560069] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   81.560152] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.560233] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.560315] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   81.560397] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   81.560479] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.560559] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.560640] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.560721] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   81.560803] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.560885] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   81.560967] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   81.561050] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   81.561132] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.561215] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   81.561296] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.561377] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.561457] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.561537] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.561618] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.561697] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.561778] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.561859] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   81.561940] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   81.562021] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   81.562101] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   81.562183] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.562265] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.562344] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.562426] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.562508] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.562590] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.562672] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.562753] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   81.562836] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   81.562918] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   81.562999] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   81.563080] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   81.563162] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   81.563246] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   81.563342] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   81.563462] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   81.563536] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   81.563603] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   81.563662] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   81.563718] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   81.563769] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   81.563818] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000007015c065
[   81.563867] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   81.563916] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   81.563967] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   81.563975] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   81.564028] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   81.564088] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   81.564174] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   81.564258] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   81.564342] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   81.564423] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   81.564504] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   81.564582] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   81.564660] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   81.564740] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   81.564822] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   81.564903] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   81.564982] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   81.565061] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   81.565140] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   81.565220] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   81.565298] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   81.565376] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   81.565455] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   81.565536] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   81.565615] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   81.565696] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   81.565776] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   81.565855] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   81.565935] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   81.566016] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   81.566096] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   81.566175] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   81.566257] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   81.566337] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   81.566417] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   81.566498] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   81.566579] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   81.566659] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   81.566739] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   81.566819] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   81.566900] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   81.566980] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   81.567059] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   81.567139] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   81.567223] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.567327] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   81.567428] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.567526] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   81.567615] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   81.567693] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   81.567773] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   81.567855] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   81.567937] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   81.568017] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   81.568096] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   81.568173] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   81.568254] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   81.568333] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   81.568412] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   81.568491] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   81.568571] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   81.568651] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   81.568729] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   81.568809] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   81.568889] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   81.568969] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   81.569048] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   81.569125] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   81.569202] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   81.569281] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   81.569360] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   81.569438] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   81.569516] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   81.569594] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   81.569672] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   81.569750] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   81.569828] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   81.569906] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   81.569985] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   81.570068] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   81.570137] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   81.570205] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   81.570275] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   81.570340] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   81.570407] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   81.570473] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   81.570539] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   81.570606] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   81.570672] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   81.570737] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   81.570804] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   81.570889] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   81.570972] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   81.571052] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   81.571134] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   81.571214] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   81.571309] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   81.571407] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   81.571503] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   81.571600] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   81.571696] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   81.571780] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   81.571864] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   81.571944] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   81.572024] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   81.572105] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   81.572186] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   81.572265] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   81.572344] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   81.572423] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   81.572506] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   81.572587] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   81.572669] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   81.572750] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.572830] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.572909] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.572988] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   81.573070] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.573151] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   81.573231] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.573309] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.573388] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.573467] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   81.573547] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.573626] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.573704] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   81.573782] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   81.573859] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.573938] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.574018] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.574099] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.574182] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   81.574262] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.574341] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   81.574420] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   81.574498] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.574577] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   81.574658] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.574739] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.574821] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.574887] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.574913] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.575009] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.575015] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.575105] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.575121] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.575200] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.575306] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.575415] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.575522] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.575603] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.575615] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.575629] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   81.575730] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.575813] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.575893] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.575976] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.576056] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.576138] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.576221] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.576301] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   81.576382] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   81.576462] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.576541] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   81.576622] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   81.576704] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   81.576784] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   81.576866] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   81.576946] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.577028] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.577110] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.577191] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   81.577273] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.577353] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   81.577432] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.577513] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.577592] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.577671] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   81.577749] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   81.577830] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   81.577911] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.577992] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.578072] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   81.578152] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   81.578232] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.578314] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   81.578397] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   81.578478] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   81.578558] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   81.578638] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   81.578720] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   81.578800] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   81.578880] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.578960] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   81.579041] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.579120] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.579200] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.579292] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.579394] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.579493] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.579585] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.579675] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.579754] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.579835] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.579914] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   81.579996] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.580076] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.580156] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.580238] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.580320] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.580402] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   81.580485] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   81.580567] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   81.580648] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   81.580729] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   81.580813] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   81.580893] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   81.580975] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   81.581058] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   81.581139] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   81.581219] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   81.581298] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   81.581377] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   81.581456] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   81.581533] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   81.581616] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.581700] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.581781] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   81.581860] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   81.581941] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   81.582022] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   81.582102] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   81.582181] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   81.582263] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   81.582293] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   81.582394] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   81.582458] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   81.582516] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   81.582569] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   81.582626] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   81.582676] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   81.582726] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000009acbd376
[   81.582775] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   81.582826] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   81.582876] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   81.582885] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   81.582936] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   81.582995] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   81.583078] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   81.583164] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   81.583282] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   81.583382] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   81.583480] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   81.583574] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   81.583670] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   81.583751] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   81.583832] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   81.583913] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   81.583994] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   81.584074] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   81.584154] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   81.584236] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   81.584317] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   81.584399] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   81.584480] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   81.584562] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   81.584641] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   81.584721] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   81.584803] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   81.584884] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   81.584966] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   81.585047] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   81.585128] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   81.585210] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   81.585291] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   81.585372] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   81.585453] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   81.585535] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   81.585616] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   81.585696] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   81.585775] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   81.585855] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   81.585934] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   81.586013] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   81.586092] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   81.586172] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   81.586251] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.586333] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   81.586413] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.586493] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   81.586572] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   81.586653] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   81.586733] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   81.586813] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   81.586892] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   81.586971] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   81.587052] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   81.587133] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   81.587212] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   81.587305] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   81.587401] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   81.587495] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   81.587588] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   81.587681] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   81.587762] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   81.587845] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   81.587926] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   81.588007] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   81.588087] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   81.588170] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   81.588251] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   81.588330] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   81.588410] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   81.588489] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   81.588569] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   81.588648] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   81.588726] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   81.588806] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   81.588887] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   81.588966] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   81.589047] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   81.589132] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   81.589201] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   81.589269] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   81.589340] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   81.589408] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   81.589474] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   81.589542] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   81.589609] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   81.589674] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   81.589738] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   81.589805] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   81.589874] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   81.589960] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   81.590044] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   81.590128] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   81.590208] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   81.590287] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   81.590366] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   81.590447] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   81.590527] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   81.590607] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   81.590689] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   81.590771] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   81.590855] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   81.590935] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   81.591015] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   81.591097] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   81.591179] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   81.591275] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   81.591367] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   81.591460] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   81.591559] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   81.591658] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   81.591739] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   81.591820] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.591903] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.591984] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.592064] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   81.592143] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.592221] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   81.592303] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.592384] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.592464] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.592544] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   81.592626] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.592707] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.592787] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   81.592869] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   81.592951] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.593032] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.593112] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.593194] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.593276] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   81.593357] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.593437] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   81.593516] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   81.593595] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.593673] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   81.593754] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.593837] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.593916] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.593996] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.594080] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.594160] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.594241] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.594321] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.594401] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.594480] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.594558] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   81.594640] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.594721] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.594802] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.594882] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.594961] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.595038] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.595118] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.595200] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   81.595294] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   81.595391] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.595485] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   81.595579] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   81.595667] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   81.595746] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   81.595825] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   81.595904] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.595985] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.596063] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.596143] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   81.596221] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.596300] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   81.596378] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.596459] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.596541] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.596622] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   81.596706] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   81.596786] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   81.596865] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.596946] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.597027] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   81.597108] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   81.597186] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.597266] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   81.597347] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   81.597428] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   81.597509] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   81.597589] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   81.597668] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   81.597748] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   81.597828] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.597909] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   81.597990] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.598070] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.598149] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.598229] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.598311] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.598391] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.598471] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.598548] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.598626] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.598705] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.598784] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   81.598862] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   81.598939] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.599017] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.599098] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   81.599179] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   81.599272] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   81.599365] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   81.599456] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   81.599553] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   81.599643] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   81.599724] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   81.599804] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   81.599882] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   81.599960] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   81.600037] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   81.600115] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   81.600195] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   81.600277] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   81.600357] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   81.600436] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   81.600516] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   81.600597] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   81.600680] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   81.600760] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   81.600839] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   81.600917] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   81.600996] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   81.601075] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   81.601154] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   81.602743] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:581]
[   81.611470] usb 3-6.3.3.1: new full-speed USB device number 11 using xhci_hcd
[   81.627484] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:593]
[   81.628367] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1]
[   81.628382] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:508:eDP-1]
[   81.628508] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   81.628576] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[   81.628641] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[   81.628703] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[   81.628730] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   81.628753] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[   81.628774] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[   81.628797] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] VRR capable: yes
[   81.628865] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
[   81.628930] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
[   81.629176] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x03000 AUX -> (ret=  1) 00
[   81.629209] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] probed modes:
[   81.629217] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.629371] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1]
[   81.629378] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[   81.633480] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1] disconnected
[   81.633515] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1]
[   81.633523] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[   81.633648] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1] disconnected
[   81.633678] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2]
[   81.633684] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[   81.633785] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2] disconnected
[   81.633807] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3]
[   81.633813] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[   81.634286] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  1) 14
[   81.635130] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   81.635977] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   81.635995] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   81.636017] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   81.636579] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  8) 14 1e 80 aa 02 00 00 00
[   81.636598] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][DPRX] LTTPR common capabilities: 14 1e 80 aa 02 00 00 00
[   81.637157] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) 55
[   81.637649] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) aa
[   81.638093] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0020 AUX -> (ret=  3) 03 03 00
[   81.638110] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][LTTPR 1] PHY capabilities: 03 03 00
[   81.638855] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf003d AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   81.638875] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: LTTPR 1: OUI 00-00-00 dev-ID  HW-rev 0.0 SW-rev 0.0 quirks 0x0000
[   81.639696] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   81.640523] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   81.640539] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   81.640557] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   81.641095] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 53 22 10 05 05
[   81.641113] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DP branch: OUI 90-cc-24 dev-ID SYNAS" HW-rev 1.0 SW-rev 5.5 quirks 0x0068
[   81.641469] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02210 AUX -> (ret=  1) f8
[   81.641822] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00200 AUX -> (ret=  1) 02
[   81.642357] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00080 AUX -> (ret= 12) 08 00 00 00 00 00 00 00 08 00 00 00
[   81.642370] i915 0000:00:02.0: [drm:drm_dp_read_downstream_info [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD DFP: 08 00 00 00 00 00 00 00 08 00 00 00
[   81.642724] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00021 AUX -> (ret=  1) 01
[   81.642739] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [ENCODER:544:DDI TC3/PHY TC3] MST support: port: yes, sink: MST, modparam: yes -> enable: MST
[   81.643246] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00111 AUX -> (ret=  1) 07
[   81.643762] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0000 AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   81.644128] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe000d AUX -> (ret=  3) 00 00 00
[   81.644531] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0020 AUX -> (ret=  5) 00 00 00 00 00
[   81.644884] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0028 AUX -> (ret=  2) 00 00
[   81.645218] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0030 AUX -> (ret=  1) 00
[   81.645570] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00070 AUX -> (ret=  2) 00 00
[   81.646162] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00060 AUX -> (ret= 16) 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   81.646174] i915 0000:00:02.0: [drm:intel_dp_read_dsc_dpcd [i915]] DSC DPCD: 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   81.646632] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00090 AUX -> (ret=  1) 0f
[   81.646648] i915 0000:00:02.0: [drm:intel_dp_get_dsc_sink_cap [i915]] FEC CAPABILITY: f
[   81.647131] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x000a0 AUX -> (ret=  3) 09 1e 10
[   81.647461] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02214 AUX -> (ret=  1) 00
[   81.647475] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   81.647598] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000, 810000
[   81.647718] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000, 810000
[   81.647834] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3] disconnected
[   81.647892] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4]
[   81.647906] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[   81.648097] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4] disconnected
[   81.648145] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:509:DP-5]
[   81.648155] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 0000000039cd68e6 (2)
[   81.648165] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 0000000039cd68e6 (1)
[   81.648174] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:509:DP-5] disconnected
[   81.648197] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:567:DP-6]
[   81.648208] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 00000000b4779840 (2)
[   81.648216] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000b4779840 (1)
[   81.648224] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 00000000b4779840 (2)
[   81.648233] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.648242] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   81.648250] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   81.648258] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=1:
[   81.648265] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   81.648799] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 00 10 50 01 da
[   81.687259] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.688068] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.688831] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.689791] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.689874] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.690980] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 05 c3 22 02 01 00 db 00 00 00 00 00 00 00 00
[   81.691042] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.691105] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.691211] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   81.691377] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.691440] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   81.691503] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   81.691555] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=128:
[   81.691602] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   81.691612] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.692263] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 00 10 50 80 e0
[   81.692882] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.692955] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.704801] usb 3-6.3.3.1: New USB device found, idVendor=17ef, idProduct=a38f, bcdDevice= 0.00
[   81.704823] usb 3-6.3.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   81.704829] usb 3-6.3.3.1: Product: 40AS
[   81.704834] usb 3-6.3.3.1: Manufacturer: Cypress Semiconductor
[   81.704838] usb 3-6.3.3.1: SerialNumber: 1S40ASZKT0R2VD
[   81.712850] hid-generic 0003:17EF:A38F.0003: hiddev1,hidraw2: USB HID v1.11 Device [Cypress Semiconductor 40AS] on usb-0000:00:14.0-6.3.3.1/input1
[   81.733994] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.734705] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.735287] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.736114] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.736168] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.737078] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 02 80 00 ff ff ff ff ff ff 00 04 72
[   81.737118] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.737761] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 1a 07 3f 63 60 21 10 20 01 04 a5 3c 22 78 3f 53
[   81.738406] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) a5 a7 56 52 9c 26 11 50 54 b3 0c 00 71 4f 81 32
[   81.738438] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.738850] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.739269] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.739294] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.747636] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.748642] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.748717] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.749723] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 80 81 c0 81 00 95 00 b3 00 d1 c0 01 01
[   81.749772] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.750435] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 2a 44 80 a0 70 38 27 40 30 20 35 00 56 50 21 00
[   81.751080] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 1a 02 3a 80 18 71 38 2d 40 58 2c 45 00 56 c5
[   81.751117] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.751534] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.751959] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.751989] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.782242] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.782984] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.783467] usb 3-6.3.3.2: new full-speed USB device number 12 using xhci_hcd
[   81.783570] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.784389] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.784446] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.785348] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 50 21 00 00 1e 00 00 00 fd 00 30 4b 54
[   81.785391] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.786036] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 54 12 01 0a 20 20 20 20 20 20 00 00 00 fc 00 43
[   81.786650] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 42 32 37 32 0a 20 20 20 20 20 20 20 01 e3 9e
[   81.786684] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.786797] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   81.786867] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.786908] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   81.786949] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   81.786983] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=128:
[   81.787016] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 80
[   81.787098] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.787691] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 80 10 50 80 bb
[   81.790612] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.790671] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.806190] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.806889] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.807523] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.808366] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.808434] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.809406] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 02 80 02 03 18 f1 4b 90 01 02 03 04
[   81.809452] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.810105] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 05 11 12 13 14 1f 23 09 07 07 83 01 00 00 02 3a
[   81.810746] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 80 18 71 38 2d 40 58 2c 45 00 56 50 21 00 00 dc
[   81.810781] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.811198] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.811666] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.811694] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.835155] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.835988] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.836730] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.837679] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.837765] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.838815] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 1e 01 1d 00 72 51 d0 1e 20 6e 28 55 00
[   81.838867] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.839544] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 56 50 21 00 00 1e 8c 0a d0 8a 20 e0 2d 10 10 3e
[   81.840201] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 96 00 56 50 21 00 00 18 2a 44 80 a0 70 38 27 8a
[   81.840240] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.840678] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.841112] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.841141] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.843425] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.844275] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.844323] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.845208] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 40 30 20 35 00 56 50 21 00 00 1a 00 00
[   81.845249] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.845899] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[   81.846525] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 00 00 00 00 00 00 00 00 00 00 00 00 00 97 ac
[   81.846563] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.846664] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   81.846739] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000b4779840 (1)
[   81.846783] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] Supported Monitor Refresh rate range is 48 Hz - 75 Hz
[   81.846916] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   81.846985] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.847027] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] ELD monitor CB272
[   81.847126] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] ELD size 28, SAD count 1
[   81.847439] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.847501] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.847780] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 60 74250 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   81.847903] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 50 74250 1920 2448 2492 2640 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   81.848014] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 60 74176 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   81.848128] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:567:DP-6] probed modes:
[   81.848168] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 75 174500 1920 1968 2000 2080 1080 1083 1088 1119 0x48 0x9
[   81.848202] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.848233] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.848263] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.848292] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 50 148500 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5
[   81.848319] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1680x1050": 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   81.848348] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x1024": 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   81.848376] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1440x900": 60 106500 1440 1520 1672 1904 900 903 909 934 0x40 0x6
[   81.848405] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x800": 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   81.848433] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1152x864": 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   81.848460] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   81.848487] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   81.848514] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   81.848541] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 50 74250 1280 1720 1760 1980 720 725 730 750 0x40 0x5
[   81.848568] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[   81.848595] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   81.848622] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   81.848649] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[   81.848676] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x576": 50 27000 720 732 796 864 576 581 586 625 0x40 0xa
[   81.848706] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x576": 50 27000 720 732 796 864 576 581 586 625 0x40 0xa
[   81.848734] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27027 720 736 798 858 480 489 495 525 0x40 0xa
[   81.848761] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27027 720 736 798 858 480 489 495 525 0x40 0xa
[   81.848789] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   81.848816] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   81.848842] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   81.848867] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[   81.848891] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[   81.848915] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   81.848939] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   81.848963] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x400": 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   81.849422] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:570:DP-7]
[   81.849458] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 000000004b112a7e (2)
[   81.849498] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 000000004b112a7e (1)
[   81.849535] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 000000004b112a7e (2)
[   81.849569] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.849603] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   81.849638] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   81.849668] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3 num_tx=1 id=80 size=1:
[   81.849696] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   81.850309] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 31 50 01 00 10 50 01 66
[   81.858343] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.858550] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.858799] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.859341] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.859373] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.860095] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 05 c3 22 03 01 00 58 00 00 00 00 00 00 00 00
[   81.860144] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.860196] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.860287] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   81.860367] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.860410] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   81.860455] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   81.860494] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3 num_tx=1 id=80 size=128:
[   81.860531] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   81.860640] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.861233] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 31 50 01 00 10 50 80 5c
[   81.861758] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.861809] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.890002] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.890793] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.891612] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.892632] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.892716] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.893737] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 03 80 00 ff ff ff ff ff ff 00 4c 2d
[   81.893796] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.894483] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 35 0f 45 32 39 30 13 22 01 04 b5 46 27 78 3a ae
[   81.895139] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) a5 af 4f 42 af 26 0f 50 54 bf ef 80 71 4f 81 52
[   81.895182] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.895669] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.896108] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.896145] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.913331] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.914035] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.914800] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.915948] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.916027] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.917020] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 00 81 c0 81 80 a9 c0 b3 00 95 00 01 01
[   81.917064] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.917721] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 22 cc 00 50 f0 70 3e 80 18 10 35 00 b9 88 21 00
[   81.918364] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 1a 00 00 00 fd 00 1e 4b 1e 87 3c 00 0a 20 ff
[   81.918396] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.918816] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.919289] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.919343] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.919651] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.920329] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.920372] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.921243] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 20 20 20 20 20 00 00 00 fc 00 55 33 32
[   81.921281] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.921935] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 4a 35 39 78 0a 20 20 20 20 20 00 00 00 ff 00 48
[   81.922568] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 43 4a 58 35 30 31 30 35 37 0a 20 20 01 5d 1c
[   81.922624] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.922669] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.922707] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   81.922747] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   81.922782] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3 num_tx=1 id=80 size=128:
[   81.922816] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 80
[   81.922922] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.923407] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 31 50 01 80 10 50 80 07
[   81.923851] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.924281] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.924317] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.946281] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.947048] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.947739] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.948706] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.948776] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.949740] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 03 80 02 03 0f f0 42 10 5f 23 09 07
[   81.949789] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.950439] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 07 83 01 00 00 02 3a 80 18 71 38 2d 40 58 2c 45
[   81.951081] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 b9 88 21 00 00 1e 56 5e 00 a0 a0 a0 29 50 db
[   81.951113] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.951532] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.951958] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.951990] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.969276] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   81.970024] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.970844] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.971888] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.971960] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.972941] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 30 20 35 00 b9 88 21 00 00 1a 04 74 00
[   81.972988] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.973654] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 30 f2 70 5a 80 b0 58 8a 00 b9 88 21 00 00 1e 00
[   81.974305] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 57
[   81.974340] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.974778] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.975212] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.975252] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.979680] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   81.980582] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   81.980652] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   81.981592] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 00 00 00 00 00 00 00 00 00 00 00 00 00
[   81.981640] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   81.982304] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[   81.982954] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 00 00 00 00 00 00 00 00 00 00 00 00 00 56 4e
[   81.982999] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   81.983094] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   81.983184] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 000000004b112a7e (1)
[   81.983264] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:570:DP-7] Assigning EDID-1.4 digital sink color depth as 10 bpc.
[   81.983409] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:570:DP-7] ELD monitor U32J59x
[   81.983441] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   81.983516] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:570:DP-7] ELD size 32, SAD count 1
[   81.983881] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   81.983922] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   81.984438] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:570:DP-7] probed modes:
[   81.984480] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   81.984512] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 30 297000 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5
[   81.984542] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 30 297000 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5
[   81.984569] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 30 296703 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5
[   81.984596] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "2560x1440": 60 241500 2560 2608 2640 2720 1440 1443 1448 1481 0x40 0x9
[   81.984623] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.984648] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.984674] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   81.984698] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1680x1050": 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   81.984723] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1600x900": 60 108000 1600 1624 1704 1800 900 901 904 1000 0x40 0x5
[   81.984748] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x1024": 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   81.984773] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x1024": 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   81.984798] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1440x900": 60 106500 1440 1520 1672 1904 900 903 909 934 0x40 0x6
[   81.984823] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x800": 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   81.984848] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1152x864": 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   81.984873] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   81.984897] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   81.984923] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   81.984945] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[   81.984967] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   81.984989] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "832x624": 75 57284 832 864 928 1152 624 625 628 667 0x40 0xa
[   81.985012] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   81.985034] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 72 50000 800 856 976 1040 600 637 643 666 0x40 0x5
[   81.985056] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   81.985078] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[   81.985101] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   81.985123] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 73 31500 640 664 704 832 480 489 492 520 0x40 0xa
[   81.985146] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[   81.985168] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[   81.985189] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   81.985211] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x400": 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   81.987530] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   81.987849] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   81.988047] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000002751833a
[   81.988215] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   81.988362] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   81.988499] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   81.988522] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   81.988675] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   81.988892] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   81.989099] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   81.989289] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   81.989467] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   81.989639] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   81.989809] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   81.989967] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   81.990126] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   81.990276] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   81.990422] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   81.990564] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   81.990709] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   81.990851] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   81.990985] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   81.991114] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   81.991240] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   81.991355] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   81.991477] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   81.991591] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   81.991704] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   81.991818] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   81.991927] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   81.992034] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   81.992142] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   81.992251] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   81.992360] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   81.992471] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   81.992582] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   81.992694] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   81.992807] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   81.992919] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   81.993027] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   81.993133] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   81.993238] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   81.993338] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   81.993440] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   81.993541] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   81.993641] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.993741] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   81.993833] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   81.993925] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   81.994017] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   81.994112] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   81.994209] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   81.994302] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   81.994389] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   81.994481] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   81.994555] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   81.994627] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   81.994700] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   81.994772] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   81.994843] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   81.994910] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   81.994979] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   81.995046] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   81.995114] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   81.995180] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   81.995275] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   81.995375] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   81.995473] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   81.995566] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   81.995660] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   81.995742] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   81.995825] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   81.995907] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   81.995987] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   81.996069] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   81.996153] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   81.996236] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   81.996322] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   81.996401] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   81.996481] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   81.996565] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   81.996648] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   81.996729] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   81.996808] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   81.996887] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   81.996969] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   81.997052] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   81.997135] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   81.997216] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   81.997298] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   81.997378] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   81.997458] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   81.997540] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   81.997623] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   81.997703] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   81.997782] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   81.997861] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   81.997941] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   81.998021] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   81.998101] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   81.998183] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   81.998265] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   81.998345] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   81.998424] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.998503] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   81.998585] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.998667] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   81.998748] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   81.998828] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   81.998907] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   81.998986] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   81.999067] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   81.999148] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   81.999233] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   81.999323] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   81.999415] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   81.999510] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   81.999604] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   81.999683] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   81.999762] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.999841] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   81.999922] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.000004] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.000084] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.000167] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.000250] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.000332] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.000414] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.000497] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.000580] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.000661] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.000740] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.000820] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.000898] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.000979] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   82.001059] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.001141] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   82.001223] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   82.001303] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.001383] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.001464] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.001544] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   82.001626] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.001706] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   82.001785] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.001867] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.001947] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.002029] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.002109] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   82.002190] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   82.002268] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.002356] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.002370] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.002451] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   82.002498] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.002546] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   82.002640] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.002734] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.002725] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.002830] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.002926] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.003032] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.003141] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.003246] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.003252] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   82.003262] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.003356] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   82.003461] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.003566] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   82.003671] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.003773] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.003876] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.003977] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.004061] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.004142] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.004223] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.004306] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   82.004388] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   82.004470] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   82.004550] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   82.004630] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.004712] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.004793] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.004873] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.004951] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.005032] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.005114] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.005194] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   82.005274] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   82.005356] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   82.005437] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   82.005517] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   82.005595] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   82.005676] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   82.005702] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.005805] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.005881] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000009b377e17
[   82.005951] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   82.006008] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   82.006061] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   82.006070] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   82.006123] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.006210] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   82.006296] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   82.006378] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   82.006462] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   82.006543] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   82.006624] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   82.006707] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.006790] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.006872] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   82.006954] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   82.007036] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   82.007119] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   82.007200] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   82.007290] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   82.007393] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   82.007483] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   82.007564] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   82.007644] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   82.007724] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   82.007803] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   82.007882] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   82.007962] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   82.008042] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   82.008122] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   82.008204] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   82.008285] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   82.008364] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   82.008443] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   82.008523] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   82.008603] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   82.008683] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   82.008764] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   82.008846] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.008926] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.009005] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   82.009084] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   82.009165] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.009245] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.009326] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.009404] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.009485] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.009565] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   82.009645] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   82.009727] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.009807] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.009888] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   82.009974] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.010045] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.010114] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.010183] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.010252] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.010321] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   82.010390] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   82.010458] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.010526] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   82.010593] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   82.010661] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   82.010730] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   82.010816] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   82.010899] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   82.010978] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   82.011057] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   82.011137] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   82.011219] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   82.011311] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   82.011402] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   82.011498] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   82.011595] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   82.011693] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.011777] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.011858] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   82.011940] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.012022] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   82.012104] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   82.012184] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   82.012265] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   82.012346] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.012428] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.012510] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.012592] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.012673] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.012754] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.012834] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.012913] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.012992] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.013070] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.013151] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.013232] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.013312] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.013394] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.013475] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.013556] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.013637] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.013717] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.013797] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.013878] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.013960] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.014041] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.014121] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.014200] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.014280] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.014361] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.014440] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.014521] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.014602] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.014685] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.014767] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.014847] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.014929] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.015011] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.015095] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.015178] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.015264] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.015357] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.015449] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.015541] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.015629] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.015709] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.015788] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.015867] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.015945] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.016024] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.016104] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.016186] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.016266] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.016348] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.016430] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   82.016511] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.016590] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   82.016671] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   82.016752] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.016832] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.016914] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.016993] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   82.017073] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.017155] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   82.017236] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.017316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.017395] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.017476] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.017558] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   82.017640] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   82.017721] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.017801] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.017883] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   82.017966] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   82.018045] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.018126] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.018209] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.018291] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.018372] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.018452] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.018533] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   82.018614] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   82.018694] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.018777] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   82.018858] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.018938] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.019021] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.019103] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.019183] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.019266] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.019358] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.019454] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   82.019548] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   82.019642] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   82.019726] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   82.019807] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.019885] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.019964] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.020045] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.020124] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.020202] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.020282] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.020364] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   82.020445] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   82.020526] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   82.020607] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   82.020686] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   82.020765] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   82.020846] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   82.020880] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.020984] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.021061] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.021131] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.021189] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.021249] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.021302] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.021356] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000002751833a
[   82.021408] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.021459] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.021511] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   82.021519] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.021573] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.021632] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.021719] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   82.021803] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   82.021888] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   82.021970] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   82.022050] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   82.022128] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   82.022207] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.022289] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.022370] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   82.022453] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   82.022534] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   82.022616] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   82.022698] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   82.022778] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   82.022859] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   82.022942] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   82.023023] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   82.023104] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   82.023185] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   82.023269] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   82.023361] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   82.023455] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   82.023448] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.023551] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   82.023559] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.023645] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   82.023744] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   82.023782] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.023843] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   82.023942] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   82.024046] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   82.024151] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   82.024257] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.024270] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.024259] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   82.024360] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   82.024451] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   82.024532] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.024613] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.024692] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   82.024775] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   82.024856] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   82.024937] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.025017] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.025099] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.025179] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.025261] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.025341] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   82.025425] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   82.025506] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.025586] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.025665] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   82.025745] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   82.025826] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   82.025906] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   82.025986] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   82.026066] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   82.026147] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   82.026228] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   82.026308] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   82.026389] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   82.026469] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   82.026547] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   82.026628] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   82.026709] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   82.026789] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   82.026869] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   82.026949] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   82.027029] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   82.027108] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   82.027190] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   82.027279] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   82.027379] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   82.027477] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   82.027572] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   82.027667] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   82.027747] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   82.027827] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   82.027913] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.027985] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.028054] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.028124] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.028194] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.028261] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   82.028326] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   82.028392] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.028459] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   82.028530] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   82.028600] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   82.028669] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   82.028754] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   82.028836] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   82.028916] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   82.028997] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   82.029080] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   82.029161] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   82.029241] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   82.029324] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   82.029407] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   82.029490] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   82.029572] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.029655] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.029735] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   82.029815] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.029895] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   82.029977] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   82.030058] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   82.030138] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   82.030220] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.030303] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.030384] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.030466] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.030547] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.030629] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.030710] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.030791] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.030873] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.030955] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.031036] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.031116] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.031196] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.031282] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.031376] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.031472] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.031569] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.031658] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.031737] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.031816] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.031896] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.031977] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.032059] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.032141] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.032222] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.032306] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.032386] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.032466] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.032548] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.032630] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.032710] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.032789] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.032869] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.032950] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.033032] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.033114] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.033196] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.033276] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.033355] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.033437] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.033516] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.033596] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.033675] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.033757] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.033838] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.033919] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.034001] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.034084] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.034166] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.034246] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.034325] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   82.034405] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.034487] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   82.034568] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   82.034649] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.034730] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.034809] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.034889] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   82.034970] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.035049] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   82.035129] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.035208] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.035291] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.035382] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.035475] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   82.035569] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   82.035664] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.035749] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.035830] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   82.035911] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   82.035991] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.036074] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.036156] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.036236] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.036317] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   82.036398] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.036479] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   82.036559] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   82.036639] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.036720] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   82.036801] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.036880] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.036962] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.037043] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.037125] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.037207] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.037287] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.037368] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.037450] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.037531] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.037611] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.037692] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.037773] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.037855] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.037936] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.038017] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.038096] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   82.038179] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   82.038262] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   82.038343] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   82.038426] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   82.038507] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   82.038590] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   82.038670] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   82.038752] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   82.038834] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   82.038915] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   82.038996] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   82.039077] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   82.039161] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   82.039245] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   82.039339] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.039436] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.039533] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   82.039628] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   82.039712] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   82.039794] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   82.039876] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   82.039956] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   82.040038] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   82.040062] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.040161] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.040224] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.040280] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.040334] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.040390] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.040443] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.040494] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000009b377e17
[   82.040544] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.040592] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.040640] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   82.040648] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.040700] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.040761] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.040845] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   82.040930] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   82.041013] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   82.041095] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   82.041179] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   82.041262] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   82.041345] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.041428] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.041509] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   82.041592] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   82.041673] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   82.041754] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   82.041833] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   82.041912] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   82.041991] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   82.042072] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   82.042154] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   82.042235] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   82.042315] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   82.042394] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   82.042474] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   82.042556] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   82.042635] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   82.042714] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   82.042793] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   82.042874] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   82.042954] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   82.043035] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   82.043117] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   82.043198] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   82.043281] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   82.043373] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   82.043465] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.043559] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.043651] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   82.043743] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   82.043824] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   82.043905] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.043986] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.044067] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.044148] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.044230] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.044312] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   82.044391] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   82.044470] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.044549] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.044630] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   82.044712] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   82.044791] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   82.044871] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   82.044950] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   82.045028] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   82.045108] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   82.045189] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   82.045270] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   82.045350] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   82.045431] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   82.045509] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   82.045588] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   82.045668] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   82.045749] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   82.045828] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   82.045909] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   82.045991] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   82.046073] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   82.046153] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   82.046232] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   82.046311] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   82.046388] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   82.046466] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   82.046545] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   82.046627] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   82.046708] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   82.046793] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.046863] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.046933] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.047002] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.047069] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.047138] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   82.047207] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   82.047275] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.047352] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   82.047432] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   82.047512] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   82.047592] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   82.047693] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   82.047781] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   82.047864] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   82.047948] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   82.048029] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   82.048109] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   82.048188] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   82.048267] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   82.048349] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   82.048432] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   82.048512] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.048599] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.048679] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   82.048757] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.048837] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   82.048918] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   82.048998] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   82.049079] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   82.049159] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.049205] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.049238] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.049318] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.049315] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.049398] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.049487] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.049513] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.049584] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.049677] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.049782] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.049889] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.049992] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.050005] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.049996] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.050100] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.050194] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.050277] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.050358] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.050440] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.050523] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.050602] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.050681] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.050759] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.050838] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.050920] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.051002] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.051083] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.051162] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.051243] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.051342] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.051438] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.051532] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.051617] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.051697] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.051777] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.051858] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.051939] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.052021] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.052102] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.052184] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.052263] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.052344] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.052424] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.052502] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.052582] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.052662] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.052743] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.052822] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.052899] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.052978] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.053057] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.053134] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.053215] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.053294] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.053374] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   82.053456] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.053538] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   82.053619] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   82.053699] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.053778] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.053859] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.053940] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   82.054020] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.054101] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   82.054183] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.054263] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.054344] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.054424] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.054505] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   82.054585] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   82.054664] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.054743] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.054824] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   82.054905] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   82.054987] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.055068] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.055149] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.055230] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.055320] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   82.055416] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.055510] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   82.055604] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   82.055688] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.055769] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   82.055850] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.055932] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.056011] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.056091] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.056172] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.056253] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.056333] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.056415] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.056493] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.056572] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.056653] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.056735] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.056815] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.056893] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.056972] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.057053] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.057133] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   82.057212] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   82.057291] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   82.057370] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   82.057453] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   82.057533] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   82.057611] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   82.057691] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   82.057772] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   82.057854] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   82.057935] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   82.058015] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   82.058095] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   82.058175] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   82.058253] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   82.058334] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.058416] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.058496] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   82.058576] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   82.058657] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   82.058738] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   82.058819] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   82.058900] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   82.058982] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   82.059066] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.059175] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.059250] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000002751833a
[   82.059313] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   82.059376] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   82.059439] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   82.059450] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   82.059516] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.059617] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.059708] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.059767] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.059823] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.059877] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.059933] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.059983] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.060032] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000002751833a
[   82.060081] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.060129] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.060176] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   82.060185] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.060236] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.060297] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.060382] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.060467] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.060526] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000002751833a
[   82.060580] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   82.060633] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   82.060687] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 20 slots for pipe bpp 24.0000 dsc 0
[   82.060739] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.060823] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.060908] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.060968] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.061024] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.061079] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.061134] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.061185] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.061234] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000002751833a
[   82.061283] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.061332] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.061383] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.061433] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.061490] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.061574] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.061658] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] Link bpp limited to 23.9375
[   82.061740] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 18.0000
[   82.061799] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000002751833a
[   82.061854] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 18.0000
[   82.061908] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 18.0000
[   82.061961] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 14 slots for pipe bpp 18.0000 dsc 0
[   82.062014] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 18, dithering: 1
[   82.062098] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.062181] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.062242] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.062298] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.062351] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.062406] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.062456] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.062506] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000002751833a
[   82.062554] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.062602] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.062650] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.062701] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.062759] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.062844] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   82.062927] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   82.063010] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   82.063091] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   82.063172] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   82.063256] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 14, data 1779513/8388608 link 96119/524288)
[   82.063348] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.063444] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.063538] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   82.063636] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   82.063731] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   82.063811] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   82.063893] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   82.063976] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   82.064057] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   82.064137] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   82.064216] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   82.064297] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   82.064380] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   82.064462] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   82.064542] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   82.064624] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   82.064704] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   82.064785] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   82.064864] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   82.064945] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   82.065027] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   82.065109] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   82.065189] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   82.065270] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   82.065351] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   82.065430] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   82.065511] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.065591] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.065669] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   82.065749] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in fec_enable (expected no, found yes)
[   82.065830] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   82.065910] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.065990] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.066071] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.066151] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.066230] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 18)
[   82.066309] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   82.066389] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   82.066469] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.066550] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.066633] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   82.066713] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   82.066791] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   82.066869] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   82.066947] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   82.067027] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   82.067105] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   82.067187] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.067268] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.067358] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   82.067451] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   82.067545] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   82.067639] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   82.067729] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   82.067808] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   82.067888] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   82.067967] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   82.068050] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   82.068130] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   82.068210] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   82.068292] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   82.068372] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   82.068451] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   82.068531] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   82.068613] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   82.068694] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   82.068775] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   82.068855] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   82.068934] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   82.069013] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   82.069095] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   82.069176] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   82.069258] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   82.069339] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.069420] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.069500] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   82.069579] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   82.069658] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   82.069739] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.069817] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.069897] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.069979] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.070060] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.070140] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   82.070222] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   82.070303] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.070383] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.070462] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   82.070542] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   82.070624] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   82.070703] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   82.070782] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   82.070863] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   82.070944] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   82.071025] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   82.071104] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   82.071182] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   82.071262] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   82.071354] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   82.071449] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   82.071545] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   82.071640] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   82.071729] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   82.071811] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   82.071893] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   82.071974] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   82.072055] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   82.072135] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   82.072216] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   82.072297] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   82.072377] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   82.072458] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   82.072538] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   82.072619] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   82.072709] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.072780] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x7
[   82.072848] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 682), active pipes 0x1 -> 0x7
[   82.072916] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (682 - 2048), active pipes 0x1 -> 0x7
[   82.072984] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.073051] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.073120] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   82.073186] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.073253] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.073321] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.073388] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 -  646), size    0 ->  646
[   82.073454] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> ( 646 -  682), size    0 ->   36
[   82.073518] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.073580] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   82.073646] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   82.073712] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   82.073779] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> ( 682 - 1979), size    0 -> 1297
[   82.073846] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   82.073912] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.073978] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   82.074045] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   82.074113] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   82.074181] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   82.074260] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.074283] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   82.074376] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 9299 required 3499
[   82.074379] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.074469] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 10925 required 3499
[   82.074568] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 11707 required 3499
[   82.074597] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.074666] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 10508 required 3499
[   82.074766] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 3499
[   82.074871] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 3499
[   82.074976] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 3499
[   82.075069] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.075082] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.075080] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   82.075183] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   82.075287] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   82.075384] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   82.075479] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 97984 kHz
[   82.075562] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.075645] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.075726] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   82.075807] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.075888] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   82.075970] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   82.076051] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   82.076131] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   82.076210] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] sharing existing TBT PLL (pipe mask 0x2, active 0x0)
[   82.076290] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   82.076370] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] sharing existing TC PLL 3 (pipe mask 0x2, active 0x0)
[   82.076451] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   82.076532] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.076616] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.076699] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.076780] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.076863] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.076946] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.077027] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.077109] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.077191] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.077273] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.077353] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.077431] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.077509] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.077589] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.077669] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.077749] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.077832] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.077913] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.077992] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.078072] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.078155] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.078236] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.078317] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.078398] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.078480] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.078560] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.078639] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.078719] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.078799] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.078881] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.078962] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.079043] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.079125] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.079207] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.079289] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.079383] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.079479] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.079575] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.079669] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.079750] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.079828] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.079908] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.079989] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.080069] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.080151] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.080235] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.080317] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.080398] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[   82.080478] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[   82.080557] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[   82.080638] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[   82.080718] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [NOFB], visible: no
[   82.080797] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   82.080876] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.080959] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 18, dithering: 1
[   82.081039] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   82.081119] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.081198] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.081276] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.081354] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 1779513, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 14
[   82.081434] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.081514] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   82.081593] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.081670] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.081749] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.081830] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.081911] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   82.081993] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   82.082075] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.082155] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.082238] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   82.082322] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   82.082404] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.082484] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.082564] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.082645] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.082727] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.082809] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.082890] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   82.082968] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   82.083048] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.083129] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   82.083209] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.083290] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.083397] usb 3-6.3.3.2: New USB device found, idVendor=17ef, idProduct=a396, bcdDevice= 0.14
[   82.083400] usb 3-6.3.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   82.083402] usb 3-6.3.3.2: Product: ThinkPad USB-C Dock Gen2 USB Audio
[   82.083403] usb 3-6.3.3.2: Manufacturer: Lenovo
[   82.083404] usb 3-6.3.3.2: SerialNumber: 000000000000
[   82.083381] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.083476] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.083579] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.083711] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.083818] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.083914] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.084009] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.084102] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.084184] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.084266] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.084347] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.084427] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.084508] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.084589] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.084670] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.084752] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.084832] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   82.084913] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   82.084996] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   82.085077] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   82.085158] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   82.085237] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   82.085317] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   82.085399] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.085481] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   82.085560] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   82.085641] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.085721] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.085802] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.085881] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   82.085962] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.086045] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   82.086125] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.086205] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.086284] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.086365] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.086447] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   82.086528] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   82.086607] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.086688] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.086768] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   82.086848] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   82.086928] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.087009] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.087091] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.087197] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.087301] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   82.087396] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.087492] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   82.087588] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   82.087677] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.087759] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   82.087840] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.087920] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.087999] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.088077] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.088159] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.088240] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.088318] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.088397] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.088476] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.088557] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.088638] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.088718] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.088801] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.088883] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.088964] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.089043] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.089125] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   82.089207] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   82.089288] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   82.089369] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   82.089450] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   82.089533] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   82.089614] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   82.089694] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   82.089776] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   82.089858] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   82.089939] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   82.090020] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   82.090101] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   82.090180] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   82.090262] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   82.090343] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.090424] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.090503] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   82.090583] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   82.090663] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   82.090744] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   82.090824] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   82.090902] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   82.090984] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   82.090992] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   82.091027] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   82.091115] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.091198] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.091280] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.091380] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.091481] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.091567] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000009b377e17
[   82.091630] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   82.091687] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   82.091741] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   82.091749] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   82.091803] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.091888] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   82.091973] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   82.092058] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   82.092140] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   82.092223] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   82.092305] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   82.092388] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.092471] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.092554] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   82.092637] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   82.092721] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   82.092803] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   82.092884] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   82.092967] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   82.093048] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   82.093130] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   82.093212] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   82.093292] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   82.093370] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   82.093450] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   82.093531] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   82.093611] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   82.093690] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   82.093770] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   82.093850] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   82.093929] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   82.094009] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   82.094088] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   82.094166] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   82.094246] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   82.094326] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   82.094406] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   82.094486] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.094565] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.094644] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   82.094722] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   82.094799] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.094877] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.094957] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.095035] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.095113] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.095191] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   82.095279] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   82.095377] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.095472] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.095566] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   82.095667] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.095736] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.095803] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.095871] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.095940] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.096009] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   82.096074] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   82.096144] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.096210] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   82.096274] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   82.096341] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   82.096408] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   82.096493] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   82.096576] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   82.096657] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   82.096738] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   82.096820] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   82.096902] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   82.096982] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   82.097062] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   82.097145] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   82.097227] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   82.097308] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.097392] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.097474] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   82.097556] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.097637] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   82.097719] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   82.097798] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   82.097878] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   82.097957] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.098040] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.098123] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.098204] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.098285] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.098366] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.098446] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.098526] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.098608] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.098689] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.098769] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.098849] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.098929] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.099008] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.099087] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.099168] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.099249] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.099341] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.099434] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.099528] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.099531] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.099626] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.099643] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.099721] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.099821] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.099865] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.099916] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.100011] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.100119] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.100225] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.100330] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.100330] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.100344] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.100432] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.100520] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.100599] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.100680] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.100760] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.100841] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.100923] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.101004] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.101082] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.101161] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.101239] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.101317] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.101397] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.101476] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.101554] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.101633] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.101711] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.101791] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.101872] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.101953] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.102033] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.102111] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.102191] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   82.102272] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.102352] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   82.102432] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   82.102511] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.102591] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.102671] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.102752] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   82.102833] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.102915] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   82.102996] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.103075] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.103154] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.103235] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.103334] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   82.103433] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   82.103529] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.103619] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.103699] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   82.103781] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   82.103863] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.103944] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.104026] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.104108] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.104188] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.104269] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.104350] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   82.104432] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   82.104513] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.104594] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   82.104675] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.104753] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.104833] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.104914] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.104995] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.105076] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.105156] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.105236] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   82.105315] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   82.105394] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   82.105475] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   82.105556] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.105637] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.105716] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.105796] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.105876] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.105957] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.106039] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.106119] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   82.106202] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   82.106284] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   82.106364] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   82.106445] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   82.106524] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   82.106605] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   82.106659] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   82.106747] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.106828] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.106902] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.106983] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   82.107048] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.107112] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.107177] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.107265] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.107364] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.107436] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000002751833a
[   82.107501] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   82.107564] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   82.107625] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   82.107635] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   82.107691] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.107775] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   82.107860] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   82.107941] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   82.108021] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   82.108102] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   82.108180] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   82.108262] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.108343] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.108423] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   82.108503] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   82.108584] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   82.108664] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   82.108743] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   82.108822] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   82.108901] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   82.108980] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   82.109058] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   82.109137] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   82.109218] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   82.109298] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   82.109378] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   82.109458] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   82.109539] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   82.109619] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   82.109697] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   82.109775] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   82.109856] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   82.109936] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   82.110015] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   82.110094] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   82.110173] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   82.110252] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   82.110332] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.110412] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.110491] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   82.110580] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   82.110715] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.110844] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.110965] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.111048] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.111128] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.111209] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   82.111292] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   82.111380] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.111472] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.111567] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   82.111670] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.111752] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.111820] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.111889] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.111956] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.112021] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   82.112085] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   82.112149] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.112213] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   82.112278] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   82.112343] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   82.112411] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   82.112494] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   82.112578] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   82.112659] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   82.112742] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   82.112823] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   82.112902] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   82.112982] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   82.113063] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   82.113146] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   82.113228] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   82.113311] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.113395] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.113474] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   82.113554] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.113637] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   82.113719] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   82.113799] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   82.113878] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   82.113955] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.114037] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.114120] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.114202] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.114282] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.114364] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.114446] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.114527] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.114608] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.114691] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.114775] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.114858] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.114939] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.115021] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.115103] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.115184] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.115272] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.115367] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.115461] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.115553] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.115643] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.115723] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.115807] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.115889] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.115970] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.116049] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.116128] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.116207] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.116288] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.116369] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.116448] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.116526] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.116604] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.116683] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.116764] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.116845] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.116927] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.117008] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.117088] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.117170] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.117250] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.117330] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.117412] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.117495] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.117576] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.117658] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.117741] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.117823] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.117907] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.117988] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.118069] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   82.118151] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.118234] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   82.118316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   82.118397] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.118478] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.118556] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.118634] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   82.118714] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.118794] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   82.118873] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.118951] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.119030] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.119111] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.119191] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   82.119274] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   82.119369] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.119466] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.119561] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   82.119655] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   82.119736] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.119816] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.119898] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.119977] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.120058] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.120139] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.120221] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   82.120301] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   82.120381] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.120463] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   82.120545] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.120626] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.120704] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.120785] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.120868] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.120951] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.121030] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.121112] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   82.121194] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   82.121275] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   82.121355] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   82.121435] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.121515] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.121597] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.121677] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.121758] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.121840] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.121922] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.122001] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   82.122084] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   82.122167] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   82.122249] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   82.122330] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   82.122411] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   82.122493] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   82.122518] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.122619] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.122693] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000009b377e17
[   82.122756] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   82.122811] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   82.122862] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   82.122871] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   82.122923] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.123007] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   82.123092] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   82.123174] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   82.123261] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   82.123359] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   82.123456] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   82.123552] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.123649] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.123736] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   82.123819] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   82.123900] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   82.123980] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   82.124061] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   82.124140] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   82.124221] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   82.124302] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   82.124383] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   82.124463] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   82.124541] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   82.124623] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   82.124703] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   82.124786] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   82.124868] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   82.124948] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   82.124969] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.125027] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   82.125078] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.125110] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   82.125192] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   82.125273] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.125289] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   82.125385] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   82.125486] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   82.125592] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   82.125698] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   82.125751] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.125763] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.125807] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.125905] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.125988] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   82.126070] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   82.126150] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.126230] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.126311] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.126391] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.126474] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.126555] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   82.126635] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   82.126716] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.126797] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.126877] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   82.126961] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.127032] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.127101] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.127169] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.127238] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.127314] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   82.127397] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   82.127478] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.127556] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   82.127628] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   82.127694] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   82.127759] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   82.127846] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   82.127931] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   82.128014] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   82.128096] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   82.128177] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   82.128258] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   82.128340] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   82.128420] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   82.128504] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   82.128588] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   82.128668] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.128750] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.128832] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   82.128913] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.128995] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   82.129076] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   82.129157] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   82.129236] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   82.129315] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.129397] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.129478] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.129556] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.129636] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.129716] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.129796] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.129877] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.129957] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.130037] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.130114] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.130195] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.130277] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.130356] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.130437] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.130516] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.130597] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.130679] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.130758] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.130838] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.130920] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.131001] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.131081] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.131161] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.131243] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.131340] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.131440] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.131534] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.131628] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.131714] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.131792] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.131871] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.131952] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.132033] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.132116] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.132197] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.132278] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.132357] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.132435] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.132515] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.132596] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.132675] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.132756] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.132838] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.132918] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.133000] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.133079] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.133160] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.133240] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.133321] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.133403] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   82.133483] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.133564] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   82.133644] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   82.133723] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.133801] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.133881] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.133961] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   82.134040] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.134118] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   82.134196] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.134273] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.134351] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.134429] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.134508] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   82.134586] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   82.134665] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.134742] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.134818] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   82.134896] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   82.134974] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.135054] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.135135] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.135213] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.135304] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.135398] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.135497] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   82.135592] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   82.135685] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.135774] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   82.135854] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.135933] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.136013] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.136092] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.136173] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.136254] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.136334] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.136414] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   82.136495] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   82.136575] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   82.136654] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   82.136734] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.136813] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.136892] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.136973] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.137055] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.137137] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.137220] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.137301] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   82.137382] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   82.137462] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   82.137543] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   82.137623] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   82.137704] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   82.137785] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   82.137820] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.137923] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.137994] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.138052] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.138107] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.138162] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.138213] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.138263] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000002751833a
[   82.138312] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.138361] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.138412] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   82.138420] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.138472] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.138530] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.138614] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   82.138698] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   82.138779] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   82.138862] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   82.138944] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   82.139024] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   82.139103] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.139183] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.139268] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   82.139367] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   82.139463] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   82.139559] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   82.139655] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   82.139747] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   82.139829] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   82.139908] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   82.139990] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   82.140071] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   82.140150] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   82.140230] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   82.140310] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   82.140389] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   82.140470] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   82.140551] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   82.140631] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   82.140711] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   82.140791] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   82.140870] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   82.140949] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   82.141028] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   82.141108] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   82.141188] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   82.141269] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.141351] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.141431] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   82.141513] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   82.141595] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   82.141674] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.141755] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.141836] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.141914] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.141996] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.142078] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   82.142159] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   82.142240] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.142320] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.142399] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   82.142477] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   82.142555] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   82.142634] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   82.142714] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   82.142794] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   82.142874] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   82.142952] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   82.143030] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   82.143107] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   82.143186] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   82.143271] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   82.143368] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   82.143462] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   82.143554] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   82.143640] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   82.143720] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   82.143798] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   82.143877] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   82.143954] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   82.144034] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   82.144114] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   82.144194] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   82.144274] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   82.144355] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   82.144435] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   82.144515] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   82.144599] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.144670] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.144739] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.144805] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.144871] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.144940] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   82.145014] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   82.145078] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.145144] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   82.145210] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   82.145278] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   82.145344] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   82.145430] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   82.145513] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   82.145594] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   82.145674] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   82.145756] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   82.145836] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   82.145915] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   82.145996] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   82.146077] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   82.146157] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   82.146238] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.146323] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.146405] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   82.146486] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.146570] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   82.146651] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   82.146732] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   82.146814] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   82.146894] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.146978] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.147060] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.147142] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.147223] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.147306] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.147398] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.147491] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.147585] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.147682] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.147768] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.147847] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.147928] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.148010] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.148090] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.148171] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.148252] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.148333] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.148414] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.148495] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.148577] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.148659] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.148740] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.148818] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.148897] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.148978] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.149060] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.149140] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.149220] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.149301] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.149382] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.149460] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.149541] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.149620] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.149701] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.149783] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.149864] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.149955] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.150048] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.150146] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.150246] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.150273] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.150346] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.150399] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.150445] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.150535] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.150543] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.150644] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.150750] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.150856] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.151005] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.150966] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.151023] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.151071] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.151172] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.151274] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   82.151373] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.151470] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   82.151566] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   82.151660] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.151754] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.151851] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.151937] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   82.152016] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.152097] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   82.152175] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.152254] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.152333] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.152416] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.152496] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   82.152576] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   82.152654] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.152734] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.152814] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   82.152896] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   82.152977] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.153057] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.153140] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.153220] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.153300] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   82.153383] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.153466] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   82.153546] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   82.153629] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.153711] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   82.153790] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.153873] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.153956] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.154035] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.154116] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.154197] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.154280] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.154360] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.154440] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.154521] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.154602] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.154682] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.154762] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.154844] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.154926] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.155009] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.155092] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   82.155176] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   82.155265] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   82.155363] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   82.155461] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   82.155560] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   82.155652] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   82.155733] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   82.155812] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   82.155892] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   82.155972] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   82.156054] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   82.156135] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   82.156217] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   82.156297] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   82.156376] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.156457] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.156535] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   82.156615] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   82.156692] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   82.156770] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   82.156848] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   82.156926] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   82.157006] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   82.157032] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.157131] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.157207] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.157271] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.157325] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.157381] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.157432] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.157482] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000009b377e17
[   82.157534] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.157585] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.157636] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   82.157644] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.157693] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.157750] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.157834] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   82.157918] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   82.158000] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   82.158079] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   82.158161] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   82.158242] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   82.158321] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.158402] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.158483] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   82.158564] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   82.158643] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   82.158721] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   82.158800] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   82.158879] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   82.158958] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   82.159036] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   82.159113] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   82.159190] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   82.159271] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   82.159362] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   82.159456] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   82.159549] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   82.159642] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   82.159735] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   82.159813] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   82.159894] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   82.159975] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   82.160057] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   82.160135] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   82.160214] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   82.160294] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   82.160374] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   82.160453] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.160533] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.160614] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   82.160694] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   82.160771] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   82.160850] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.160929] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.161010] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.161092] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.161173] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.161252] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   82.161330] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   82.161410] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.161490] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.161570] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   82.161651] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   82.161730] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   82.161811] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   82.161893] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   82.161973] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   82.162054] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   82.162136] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   82.162217] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   82.162298] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   82.162380] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   82.162460] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   82.162540] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   82.162619] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   82.162701] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   82.162782] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   82.162864] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   82.162944] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   82.163024] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   82.163103] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   82.163182] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   82.163263] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   82.163353] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   82.163445] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   82.163538] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   82.163630] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   82.163720] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   82.163806] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.163874] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.163942] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.164011] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.164077] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.164144] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   82.164211] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   82.164279] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.164347] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   82.164415] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   82.164484] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   82.164552] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   82.164638] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   82.164721] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   82.164804] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   82.164884] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   82.164962] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   82.165042] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   82.165123] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   82.165204] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   82.165287] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   82.165368] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   82.165453] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.165539] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.165622] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   82.165704] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.165786] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   82.165868] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   82.165949] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   82.166029] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   82.166109] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.166193] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.166277] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.166359] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.166438] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.166520] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.166603] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.166685] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.166768] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.166852] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.166934] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.167017] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.167098] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.167179] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.167264] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.167353] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.167448] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.167544] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.167640] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.167722] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.167801] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.167883] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.167965] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.168046] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.168126] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.168205] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.168286] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.168366] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.168445] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.168525] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.168607] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.168689] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.168770] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.168850] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.168928] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.169009] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.169089] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.169170] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.169251] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.169331] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.169411] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.169491] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.169573] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.169655] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.169738] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.169819] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.169899] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.169980] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.170059] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.170137] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.170218] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   82.170299] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.170379] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   82.170460] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   82.170540] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.170619] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.170698] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.170778] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   82.170859] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.170939] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   82.171018] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.171097] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.171177] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.171267] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.171367] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   82.171465] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   82.171563] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.171661] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.171742] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   82.171824] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   82.171905] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.171985] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.172067] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.172148] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.172229] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   82.172309] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.172391] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   82.172472] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   82.172554] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.172638] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   82.172718] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.172799] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.172881] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.172963] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.173045] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.173125] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.173204] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.173283] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.173363] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.173443] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.173522] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.173599] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.173677] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.173756] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.173835] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.173914] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.173993] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   82.174074] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   82.174154] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   82.174234] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   82.174316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   82.174396] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   82.174476] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   82.174554] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   82.174632] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   82.174712] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   82.174791] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   82.174872] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   82.174955] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   82.175037] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   82.175118] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   82.175199] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.175283] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.175381] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   82.175478] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   82.175574] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   82.175587] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.175670] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   82.175695] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.175767] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   82.175867] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   82.175901] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.175962] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   82.176375] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.176388] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.177724] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:588]
[   82.179177] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:595]
[   82.179902] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1]
[   82.179915] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:508:eDP-1]
[   82.180024] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   82.180089] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000
[   82.180149] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000
[   82.180209] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Supported Monitor Refresh rate range is 40 Hz - 60 Hz
[   82.180238] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   82.180260] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD monitor 
[   82.180281] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:508:eDP-1] ELD size 20, SAD count 0
[   82.180302] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] VRR capable: yes
[   82.180367] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
[   82.180428] i915 0000:00:02.0: [drm:intel_dp_set_edid [i915]] [CONNECTOR:508:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
[   82.180674] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x03000 AUX -> (ret=  1) 00
[   82.180715] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:508:eDP-1] probed modes:
[   82.180727] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.180887] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1]
[   82.180895] i915 0000:00:02.0: [drm:intel_hdmi_detect [i915]] [CONNECTOR:517:HDMI-A-1]
[   82.185031] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:517:HDMI-A-1] disconnected
[   82.185097] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1]
[   82.185106] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:526:DP-1]
[   82.185259] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:526:DP-1] disconnected
[   82.185298] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2]
[   82.185306] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:536:DP-2]
[   82.185416] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:536:DP-2] disconnected
[   82.185441] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3]
[   82.185447] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:545:DP-3]
[   82.185944] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  1) 14
[   82.186754] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   82.187563] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   82.187572] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   82.187582] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   82.188111] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  8) 14 1e 80 aa 02 00 00 00
[   82.188121] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][DPRX] LTTPR common capabilities: 14 1e 80 aa 02 00 00 00
[   82.188573] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) 55
[   82.189043] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) aa
[   82.189482] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0020 AUX -> (ret=  3) 03 03 00
[   82.189490] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][LTTPR 1] PHY capabilities: 03 03 00
[   82.190139] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf003d AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   82.190148] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: LTTPR 1: OUI 00-00-00 dev-ID  HW-rev 0.0 SW-rev 0.0 quirks 0x0000
[   82.190957] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   82.191759] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   82.191767] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   82.191777] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   82.192290] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00500 AUX -> (ret= 12) 90 cc 24 53 59 4e 41 53 22 10 05 05
[   82.192300] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DP branch: OUI 90-cc-24 dev-ID SYNAS" HW-rev 1.0 SW-rev 5.5 quirks 0x0068
[   82.192628] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02210 AUX -> (ret=  1) f8
[   82.192955] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00200 AUX -> (ret=  1) 02
[   82.193470] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00080 AUX -> (ret= 12) 08 00 00 00 00 00 00 00 08 00 00 00
[   82.193478] i915 0000:00:02.0: [drm:drm_dp_read_downstream_info [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD DFP: 08 00 00 00 00 00 00 00 08 00 00 00
[   82.193804] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00021 AUX -> (ret=  1) 01
[   82.193812] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [ENCODER:544:DDI TC3/PHY TC3] MST support: port: yes, sink: MST, modparam: yes -> enable: MST
[   82.194241] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00111 AUX -> (ret=  1) 07
[   82.194750] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0000 AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   82.195109] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe000d AUX -> (ret=  3) 00 00 00
[   82.195500] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0020 AUX -> (ret=  5) 00 00 00 00 00
[   82.195832] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0028 AUX -> (ret=  2) 00 00
[   82.196158] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xe0030 AUX -> (ret=  1) 00
[   82.196500] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00070 AUX -> (ret=  2) 00 00
[   82.196918] input: Lenovo ThinkPad USB-C Dock Gen2 USB Audio as /devices/pci0000:00/0000:00:14.0/usb3/3-6/3-6.3/3-6.3.3/3-6.3.3.2/3-6.3.3.2:1.3/0003:17EF:A396.0004/input/input23
[   82.197083] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00060 AUX -> (ret= 16) 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   82.197096] i915 0000:00:02.0: [drm:intel_dp_read_dsc_dpcd [i915]] DSC DPCD: 01 21 00 14 0b 00 00 00 01 03 02 11 08 00 00 04
[   82.197505] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00090 AUX -> (ret=  1) 0f
[   82.197516] i915 0000:00:02.0: [drm:intel_dp_get_dsc_sink_cap [i915]] FEC CAPABILITY: f
[   82.197942] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x000a0 AUX -> (ret=  3) 09 1e 10
[   82.198272] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02214 AUX -> (ret=  1) 00
[   82.198282] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
[   82.198354] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] sink rates: 162000, 270000, 540000, 810000
[   82.198421] i915 0000:00:02.0: [drm:intel_dp_print_rates [i915]] common rates: 162000, 270000, 540000, 810000
[   82.198488] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:545:DP-3] disconnected
[   82.198530] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4]
[   82.198538] i915 0000:00:02.0: [drm:intel_dp_detect [i915]] [CONNECTOR:554:DP-4]
[   82.198655] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:554:DP-4] disconnected
[   82.198683] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:509:DP-5]
[   82.198692] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 0000000039cd68e6 (2)
[   82.198703] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 0000000039cd68e6 (1)
[   82.198713] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:509:DP-5] disconnected
[   82.198739] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:567:DP-6]
[   82.198751] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 00000000b4779840 (2)
[   82.198760] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000b4779840 (1)
[   82.198769] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 00000000b4779840 (2)
[   82.198778] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.198788] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   82.198799] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   82.198807] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=1:
[   82.198814] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   82.199351] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 00 10 50 01 da
[   82.237914] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.238299] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.238720] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.239452] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   82.239497] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   82.240366] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 05 c3 22 02 01 00 db 00 00 00 00 00 00 00 00
[   82.240436] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   82.240509] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.240636] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   82.240762] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.240835] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   82.240910] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   82.240972] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=128:
[   82.240996] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   82.241029] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   82.241695] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 00 10 50 80 e0
[   82.242294] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.242337] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.252161] hid-generic 0003:17EF:A396.0004: input,hidraw3: USB HID v1.11 Device [Lenovo ThinkPad USB-C Dock Gen2 USB Audio] on usb-0000:00:14.0-6.3.3.2/input3
[   82.282772] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.283568] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.284362] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.285464] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   82.285551] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   82.286659] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 02 80 00 ff ff ff ff ff ff 00 04 72
[   82.286717] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   82.287400] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 1a 07 3f 63 60 21 10 20 01 04 a5 3c 22 78 3f 53
[   82.288058] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) a5 a7 56 52 9c 26 11 50 54 b3 0c 00 71 4f 81 32
[   82.288097] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.288537] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   82.288981] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.289013] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.295664] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.296706] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   82.296781] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   82.297797] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 80 81 c0 81 00 95 00 b3 00 d1 c0 01 01
[   82.297844] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   82.298520] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 2a 44 80 a0 70 38 27 40 30 20 35 00 56 50 21 00
[   82.299174] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 1a 02 3a 80 18 71 38 2d 40 58 2c 45 00 56 c5
[   82.299209] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.299691] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   82.300129] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.300162] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.323525] usb 3-6.3.3.4: new full-speed USB device number 13 using xhci_hcd
[   82.331910] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.332491] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.333064] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.333951] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   82.334008] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   82.334936] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 50 21 00 00 1e 00 00 00 fd 00 30 4b 54
[   82.334980] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   82.335636] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 54 12 01 0a 20 20 20 20 20 20 00 00 00 fc 00 43
[   82.336256] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 42 32 37 32 0a 20 20 20 20 20 20 20 01 e3 9e
[   82.336288] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.336395] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   82.336459] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.336496] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   82.336533] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   82.336563] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 num_tx=1 id=80 size=128:
[   82.336592] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 80
[   82.336712] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   82.337296] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 21 50 01 80 10 50 80 bb
[   82.337845] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.337892] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.356071] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.356740] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.357467] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.358460] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   82.358530] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   82.359518] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 02 80 02 03 18 f1 4b 90 01 02 03 04
[   82.359565] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   82.360251] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 05 11 12 13 14 1f 23 09 07 07 83 01 00 00 02 3a
[   82.360940] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 80 18 71 38 2d 40 58 2c 45 00 56 50 21 00 00 dc
[   82.360977] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.361403] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   82.361813] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.361841] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.384504] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.385311] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.386054] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.387016] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   82.387092] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   82.388163] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 1e 01 1d 00 72 51 d0 1e 20 6e 28 55 00
[   82.388215] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   82.388886] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 56 50 21 00 00 1e 8c 0a d0 8a 20 e0 2d 10 10 3e
[   82.389548] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 96 00 56 50 21 00 00 18 2a 44 80 a0 70 38 27 8a
[   82.389587] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.390025] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   82.390445] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.390474] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.391439] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.392255] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   82.392306] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   82.393194] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 40 30 20 35 00 56 50 21 00 00 1a 00 00
[   82.393234] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   82.393872] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[   82.394499] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 00 00 00 00 00 00 00 00 00 00 00 00 00 97 ac
[   82.394537] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.394665] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   82.394741] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000b4779840 (1)
[   82.394784] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] Supported Monitor Refresh rate range is 48 Hz - 75 Hz
[   82.394917] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] Assigning EDID-1.4 digital sink color depth as 8 bpc.
[   82.394964] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   82.395025] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] ELD monitor CB272
[   82.395123] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:567:DP-6] ELD size 28, SAD count 1
[   82.395392] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.395425] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.395769] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 60 74250 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   82.395882] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 50 74250 1920 2448 2492 2640 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   82.395986] i915 0000:00:02.0: [drm:drm_mode_prune_invalid [drm]] Rejected mode: "1920x1080i": 60 74176 1920 2008 2052 2200 1080 1084 1094 1125 0x40 0x15 (NO_INTERLACE)
[   82.396100] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:567:DP-6] probed modes:
[   82.396141] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 75 174500 1920 1968 2000 2080 1080 1083 1088 1119 0x48 0x9
[   82.396175] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.396203] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.396229] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.396256] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 50 148500 1920 2448 2492 2640 1080 1084 1089 1125 0x40 0x5
[   82.396282] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1680x1050": 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   82.396308] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x1024": 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   82.396333] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1440x900": 60 106500 1440 1520 1672 1904 900 903 909 934 0x40 0x6
[   82.396359] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x800": 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   82.396385] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1152x864": 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   82.396410] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   82.396435] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   82.396459] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   82.396484] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 50 74250 1280 1720 1760 1980 720 725 730 750 0x40 0x5
[   82.396509] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[   82.396533] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   82.396557] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   82.396581] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[   82.396606] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x576": 50 27000 720 732 796 864 576 581 586 625 0x40 0xa
[   82.396630] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x576": 50 27000 720 732 796 864 576 581 586 625 0x40 0xa
[   82.396654] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27027 720 736 798 858 480 489 495 525 0x40 0xa
[   82.396678] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27027 720 736 798 858 480 489 495 525 0x40 0xa
[   82.396702] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   82.396726] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   82.396751] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x480": 60 27000 720 736 798 858 480 489 495 525 0x40 0xa
[   82.396775] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[   82.396799] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[   82.396823] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   82.396847] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   82.396871] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x400": 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   82.397312] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:570:DP-7]
[   82.397356] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 000000004b112a7e (2)
[   82.397400] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 000000004b112a7e (1)
[   82.397438] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 000000004b112a7e (2)
[   82.397474] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.397513] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   82.397553] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   82.397586] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3 num_tx=1 id=80 size=1:
[   82.397616] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   82.398223] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 31 50 01 00 10 50 01 66
[   82.407643] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.407894] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.408093] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.408624] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   82.408649] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   82.409377] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 05 c3 22 03 01 00 58 00 00 00 00 00 00 00 00
[   82.409393] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   82.409442] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.409528] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   82.409618] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.409667] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   82.409715] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   82.409755] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3 num_tx=1 id=80 size=128:
[   82.409793] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 00
[   82.409881] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   82.410465] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 31 50 01 00 10 50 80 5c
[   82.411034] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.411092] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.414242] usb 3-6.3.3.4: New USB device found, idVendor=1a81, idProduct=1202, bcdDevice= 1.01
[   82.414275] usb 3-6.3.3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   82.414287] usb 3-6.3.3.4: Product: wireless dongle
[   82.414296] usb 3-6.3.3.4: Manufacturer: MOSART Semi.
[   82.422442] input: MOSART Semi. wireless dongle as /devices/pci0000:00/0000:00:14.0/usb3/3-6/3-6.3/3-6.3.3/3-6.3.3.4/3-6.3.3.4:1.0/0003:1A81:1202.0005/input/input24
[   82.440666] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.441467] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.442209] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.443164] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   82.443279] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   82.444366] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 03 80 00 ff ff ff ff ff ff 00 4c 2d
[   82.444427] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   82.445095] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 35 0f 45 32 39 30 13 22 01 04 b5 46 27 78 3a ae
[   82.445762] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) a5 af 4f 42 af 26 0f 50 54 bf ef 80 71 4f 81 52
[   82.445806] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.446247] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   82.446690] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.446724] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.463511] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.464048] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.464448] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.465136] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   82.465180] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   82.466006] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 00 81 c0 81 80 a9 c0 b3 00 95 00 01 01
[   82.466039] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   82.466664] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 22 cc 00 50 f0 70 3e 80 18 10 35 00 b9 88 21 00
[   82.467310] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 1a 00 00 00 fd 00 1e 4b 1e 87 3c 00 0a 20 ff
[   82.467337] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.467744] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   82.468166] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.468189] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.468412] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.468999] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   82.469029] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   82.469851] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 20 20 20 20 20 00 00 00 fc 00 55 33 32
[   82.469881] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   82.470511] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 4a 35 39 78 0a 20 20 20 20 20 00 00 00 ff 00 48
[   82.471117] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 43 4a 58 35 30 31 30 35 37 0a 20 20 01 5d 1c
[   82.471150] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.471168] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.471228] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.471280] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=8 seqno=0 state=QUEUED path_msg=0 dst=00
[   82.471317] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=REMOTE_I2C_READ contents:
[   82.471348] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3 num_tx=1 id=80 size=128:
[   82.471379] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 			0: id=080 size=001 no_stop_bit=0 tx_delay=000: 80
[   82.471581] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   82.472166] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 12) 10 09 ca 22 31 50 01 80 10 50 80 07
[   82.474942] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.474983] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.496326] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.496882] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.497376] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.498080] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   82.498133] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   82.499020] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 8c 22 03 80 02 03 0f f0 42 10 5f 23 09 07
[   82.499053] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   82.499689] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 07 83 01 00 00 02 3a 80 18 71 38 2d 40 58 2c 45
[   82.500325] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 b9 88 21 00 00 1e 56 5e 00 a0 a0 a0 29 50 db
[   82.500355] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.500770] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   82.501188] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.501216] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.518297] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.518971] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.519544] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.520371] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   82.520429] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   82.521327] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2d 07 30 20 35 00 b9 88 21 00 00 1a 04 74 00
[   82.521370] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   82.522011] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 30 f2 70 5a 80 b0 58 8a 00 b9 88 21 00 00 1e 00
[   82.522640] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 57
[   82.522671] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.523081] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   82.523496] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.523520] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.527476] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.528334] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   82.528388] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   82.529294] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 2c 4e 00 00 00 00 00 00 00 00 00 00 00 00 00
[   82.529335] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   82.529991] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01410 AUX -> (ret= 16) 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[   82.530621] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01420 AUX -> (ret= 15) 00 00 00 00 00 00 00 00 00 00 00 00 00 56 4e
[   82.530660] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.530689] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   82.530764] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 000000004b112a7e (1)
[   82.530812] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:570:DP-7] Assigning EDID-1.4 digital sink color depth as 10 bpc.
[   82.530941] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:570:DP-7] ELD monitor U32J59x
[   82.531078] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   82.531046] i915 0000:00:02.0: [drm:update_display_info.part.0 [drm]] [CONNECTOR:570:DP-7] ELD size 32, SAD count 1
[   82.531507] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.531539] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.532050] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:570:DP-7] probed modes:
[   82.532089] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.532120] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 30 297000 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5
[   82.532151] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 30 297000 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5
[   82.532180] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "3840x2160": 30 296703 3840 4016 4104 4400 2160 2168 2178 2250 0x40 0x5
[   82.532209] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "2560x1440": 60 241500 2560 2608 2640 2720 1440 1443 1448 1481 0x40 0x9
[   82.532238] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.532265] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.532293] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1920x1080": 60 148352 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.532320] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1680x1050": 60 146250 1680 1784 1960 2240 1050 1053 1059 1089 0x40 0x6
[   82.532346] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1600x900": 60 108000 1600 1624 1704 1800 900 901 904 1000 0x40 0x5
[   82.532374] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x1024": 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   82.532400] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x1024": 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   82.532425] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1440x900": 60 106500 1440 1520 1672 1904 900 903 909 934 0x40 0x6
[   82.532451] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x800": 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x6
[   82.532475] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1152x864": 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[   82.532499] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74250 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   82.532524] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1280x720": 60 74176 1280 1390 1430 1650 720 725 730 750 0x40 0x5
[   82.532548] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   82.532572] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[   82.532597] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "1024x768": 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   82.532621] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "832x624": 75 57284 832 864 928 1152 624 625 628 667 0x40 0xa
[   82.532645] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   82.532668] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 72 50000 800 856 976 1040 600 637 643 666 0x40 0x5
[   82.532692] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   82.532716] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "800x600": 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[   82.532739] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   82.532763] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 73 31500 640 664 704 832 480 489 492 520 0x40 0xa
[   82.532787] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[   82.532810] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[   82.532833] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "640x480": 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   82.532857] i915 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] Probed mode: "720x400": 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   82.535186] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.535528] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.535756] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000ba91839d
[   82.535925] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   82.536085] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   82.536235] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   82.536260] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   82.536416] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.536650] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   82.536878] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   82.537090] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   82.537289] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   82.537475] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   82.537659] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   82.537846] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.538023] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.538190] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   82.538353] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   82.538510] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   82.538665] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   82.538814] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   82.538960] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   82.539097] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   82.539231] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   82.539371] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   82.539501] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   82.539631] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   82.539760] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   82.539881] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   82.539994] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   82.540111] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   82.540221] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   82.540330] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   82.540439] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   82.540544] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   82.540646] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   82.540749] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   82.540851] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   82.540953] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   82.541044] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   82.541136] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.541225] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.541318] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   82.541319] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.541415] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   82.541450] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.541509] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.541560] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.541605] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.541708] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.541817] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.541926] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.542007] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.542019] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.542035] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   82.542141] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   82.542240] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.542495] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.542814] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   82.542971] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.543054] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.543137] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.543221] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.543311] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.543396] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   82.543477] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   82.543544] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.543612] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   82.543680] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   82.543746] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   82.543813] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   82.543898] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   82.543981] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   82.544066] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   82.544147] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   82.544225] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   82.544305] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   82.544385] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   82.544465] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   82.544545] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   82.544626] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   82.544708] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.544796] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.544877] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   82.544959] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.545042] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   82.545123] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   82.545202] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   82.545282] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   82.545363] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.545445] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.545527] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.545607] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.545688] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.545768] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.545847] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.545928] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.546009] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.546090] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.546170] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.546249] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.546329] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.546407] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.546485] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.546565] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.546660] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.546754] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.546846] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.546927] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.547009] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.547091] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.547174] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.547258] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.547354] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.547448] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.547544] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.547642] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.547723] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.547806] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.547887] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.547967] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.548047] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.548126] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.548207] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.548289] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.548370] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.548452] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.548532] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.548611] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.548691] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.548771] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.548851] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.548933] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.549014] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.549108] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.549204] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.549292] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.549372] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.549454] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.549537] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   82.549617] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.549699] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   82.549782] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   82.549862] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.549942] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.550023] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.550105] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   82.550186] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.550267] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   82.550346] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.550425] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.550504] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.550583] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.550662] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   82.550742] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   82.550822] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.550916] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.551011] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   82.551106] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   82.551202] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.551301] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.551397] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.551489] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.551584] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.551673] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.551755] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   82.551835] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   82.551914] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.551994] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   82.552075] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.552156] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.552236] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.552317] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.552399] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.552479] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.552558] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.552637] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   82.552717] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   82.552797] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   82.552879] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   82.552959] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.553039] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.553122] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.553202] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.553283] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.553363] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.553444] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.553523] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   82.553603] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   82.553683] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   82.553762] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   82.553843] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   82.553923] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   82.554008] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   82.554036] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.554137] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.554215] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000002adca3c1
[   82.554282] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   82.554336] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   82.554390] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   82.554398] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   82.554454] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.554540] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   82.554623] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   82.554705] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   82.554786] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   82.554868] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   82.554950] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   82.555032] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.555113] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.555195] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   82.555287] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   82.555393] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   82.555490] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   82.555586] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   82.555685] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   82.555777] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   82.555860] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   82.555940] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   82.556024] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   82.556106] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   82.556188] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   82.556268] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   82.556349] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   82.556431] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   82.556513] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   82.556591] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   82.556669] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   82.556749] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   82.556829] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   82.556908] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   82.556986] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   82.557068] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   82.557150] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   82.557231] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.557311] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.557391] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   82.557471] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   82.557551] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.557631] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.557712] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.557791] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.557874] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.557956] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   82.558035] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   82.558116] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.558198] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.558279] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   82.558365] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.558433] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.558500] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.558569] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.558636] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.558703] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   82.558772] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   82.558840] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.558905] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   82.558973] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   82.559040] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   82.559106] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   82.559191] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   82.559284] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   82.559387] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   82.559492] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   82.559623] hid-generic 0003:1A81:1202.0005: input,hidraw4: USB HID v1.10 Keyboard [MOSART Semi. wireless dongle] on usb-0000:00:14.0-6.3.3.4/input0
[   82.559629] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   82.559761] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   82.559842] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   82.559923] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   82.560006] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   82.560087] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   82.560170] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.560254] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.560337] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   82.560417] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.560498] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   82.560579] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   82.560657] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   82.560737] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   82.560817] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.560901] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.560987] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.561069] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.561151] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.561232] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.561315] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.561397] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.561481] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.561564] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.561646] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.561726] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.561810] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.561892] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.561972] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.562052] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.562130] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.562259] input: MOSART Semi. wireless dongle Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-6/3-6.3/3-6.3.3/3-6.3.3.4/3-6.3.3.4:1.1/0003:1A81:1202.0006/input/input25
[   82.562233] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.562343] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.562414] input: MOSART Semi. wireless dongle Consumer Control as /devices/pci0000:00/0000:00:14.0/usb3/3-6/3-6.3/3-6.3.3/3-6.3.3.4/3-6.3.3.4:1.1/0003:1A81:1202.0006/input/input26
[   82.562440] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.562524] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.562606] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.562689] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.562771] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.562853] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.562934] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.563013] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.563092] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.563171] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.563260] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.563359] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.563454] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.563551] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.563647] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.563730] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.563809] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.563888] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.563967] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.564049] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.564129] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.564209] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.564290] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.564371] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.564452] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.564531] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.564613] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.564694] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.564775] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.564857] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.564936] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.565017] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   82.565098] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.565179] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   82.565260] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   82.565342] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.565423] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.565503] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.565583] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   82.565664] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.565744] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   82.565825] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.565903] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.565983] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.566064] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.566143] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   82.566222] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   82.566301] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.566379] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.566459] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   82.566540] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   82.566621] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.566701] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.566784] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.566866] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.566948] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.567032] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.567114] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   82.567194] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   82.567282] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.567382] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   82.567480] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.567576] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.567671] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.567753] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.567834] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.567918] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.567999] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.568080] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   82.568161] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   82.568242] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   82.568322] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   82.568403] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.568484] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.568563] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.568643] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.568722] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.568800] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.568881] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.568963] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   82.569045] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   82.569127] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   82.569208] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   82.569291] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   82.569372] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   82.569454] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   82.569492] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.569591] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.569662] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.569721] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.569776] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.569833] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.569885] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.569935] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000ba91839d
[   82.569984] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.570033] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.570083] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   82.570045] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.570092] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.570146] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.570154] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.570207] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.570244] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.570291] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   82.570376] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   82.570484] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   82.570592] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   82.570679] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.570691] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.570700] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   82.570799] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   82.570895] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.570991] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.571087] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   82.571182] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   82.571281] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   82.571384] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   82.571481] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   82.571576] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   82.571670] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   82.571753] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   82.571835] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   82.571917] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   82.571999] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   82.572078] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   82.572157] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   82.572238] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   82.572319] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   82.572401] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   82.572481] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   82.572563] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   82.572643] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   82.572724] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   82.572805] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   82.572886] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   82.572966] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   82.573046] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   82.573126] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.573207] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.573288] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   82.573368] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   82.573448] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   82.573526] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.573606] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.573688] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.573767] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.573847] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.573927] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   82.574008] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   82.574091] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.574171] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.574250] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   82.574329] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   82.574408] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   82.574489] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   82.574570] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   82.574652] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   82.574733] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   82.574817] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   82.574897] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   82.574976] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   82.575055] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   82.575136] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   82.575217] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   82.575311] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   82.575412] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   82.575506] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   82.575599] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   82.575695] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   82.575776] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   82.575855] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   82.575934] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   82.576013] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   82.576093] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   82.576174] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   82.576252] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   82.576332] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   82.576413] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   82.576500] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.576568] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.576641] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.576713] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.576781] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.576849] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   82.576916] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   82.576985] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.577051] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   82.577119] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   82.577187] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   82.577257] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   82.577344] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   82.577428] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   82.577510] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   82.577592] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   82.577675] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   82.577754] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   82.577833] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   82.577914] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   82.577999] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   82.578081] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   82.578161] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.578243] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.578324] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   82.578406] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.578488] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   82.578570] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   82.578651] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   82.578729] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   82.578811] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.578896] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.578979] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.579061] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.579142] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.579221] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.579311] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.579411] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.579506] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.579599] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.579691] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.579773] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.579853] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.579933] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.580014] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.580093] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.580173] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.580254] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.580333] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.580412] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.580493] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.580575] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.580656] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.580735] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.580815] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.580896] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.580978] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.581058] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.581139] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.581218] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.581297] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.581377] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.581459] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.581539] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.581622] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.581705] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.581786] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.581867] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.581946] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.582029] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.582110] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.582189] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.582267] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.582348] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.582429] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.582510] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.582591] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.582672] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.582756] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.582838] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.582918] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   82.582999] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.583079] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   82.583161] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   82.583248] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.583340] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.583435] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.583530] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   82.583628] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.583708] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   82.583787] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.583868] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.583949] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.584030] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.584111] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   82.584191] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   82.584270] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.584351] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.584431] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   82.584513] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   82.584595] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.584678] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.584760] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.584841] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.584920] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   82.584998] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.585078] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   82.585158] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   82.585236] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.585316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   82.585395] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.585476] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.585555] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.585636] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.585719] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.585801] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.585883] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.585962] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.586043] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.586124] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.586206] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.586288] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.586369] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.586450] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.586529] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.586611] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.586693] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   82.586774] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   82.586856] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   82.586940] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   82.587020] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   82.587099] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   82.587178] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   82.587257] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   82.587346] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   82.587441] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   82.587536] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   82.587630] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   82.587715] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   82.587796] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   82.587879] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   82.587962] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.588042] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.588122] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   82.588205] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   82.588287] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   82.588366] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   82.588446] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   82.588527] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   82.588608] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   82.588633] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.588733] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.588807] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.588877] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.588934] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.588992] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.589044] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.589094] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000002adca3c1
[   82.589146] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.589198] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.589247] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   82.589256] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.589312] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.589373] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.589459] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   82.589544] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   82.589627] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   82.589708] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   82.589789] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   82.589873] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   82.589955] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.590035] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.590115] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   82.590194] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   82.590274] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   82.590356] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   82.590437] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   82.590519] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   82.590601] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   82.590681] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   82.590764] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   82.590845] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   82.590925] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   82.591005] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   82.591085] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   82.591166] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   82.591248] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   82.591342] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   82.591437] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   82.591529] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   82.591622] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   82.591711] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   82.591791] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   82.591871] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   82.591950] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   82.592030] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   82.592111] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.592189] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.592271] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   82.592353] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   82.592434] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   82.592514] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.592595] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.592677] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.592756] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.592835] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.592916] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   82.592997] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   82.593078] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.593161] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.593242] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   82.593324] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   82.593405] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   82.593488] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   82.593568] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   82.593649] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   82.593731] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   82.593813] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   82.593893] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   82.593972] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   82.594050] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   82.594129] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   82.594211] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   82.594290] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   82.594371] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   82.594451] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   82.594534] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   82.594615] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   82.594695] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   82.594776] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   82.594857] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   82.594938] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   82.595018] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   82.595100] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   82.595180] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   82.595280] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   82.595372] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   82.595476] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.595563] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.595646] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.595727] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.595796] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.595865] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   82.595932] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   82.595998] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.596063] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   82.596135] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   82.596172] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.596215] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   82.596294] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   82.596293] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.596403] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.596396] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   82.596498] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   82.596606] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   82.596714] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   82.596853] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.596821] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   82.596865] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.596924] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   82.597021] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   82.597102] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   82.597182] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   82.597262] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   82.597343] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.597428] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.597510] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   82.597593] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.597674] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   82.597756] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   82.597837] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   82.597917] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   82.597999] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.598082] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.598166] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.598250] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.598331] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.598411] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.598490] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.598567] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.598645] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.598725] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.598806] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.598884] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.598963] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.599043] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.599123] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.599203] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.599289] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.599386] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.599483] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.599578] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.599669] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.599748] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.599828] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.599911] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.599993] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.600073] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.600153] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.600233] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.600311] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.600390] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.600468] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.600548] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.600630] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.600711] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.600791] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.600870] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.600950] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.601031] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.601112] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.601192] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.601273] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.601354] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.601435] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.601518] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.601601] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.601684] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.601764] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.601843] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.601921] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.602000] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.602080] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   82.602159] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.602239] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   82.602319] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   82.602399] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.602478] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.602557] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.602637] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   82.602718] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.602799] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   82.602879] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.602960] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.603039] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.603116] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.603194] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   82.603279] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   82.603374] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.603467] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.603561] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   82.603650] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   82.603731] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.603811] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.603892] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.603973] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.604054] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   82.604134] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.604217] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   82.604299] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   82.604381] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.604462] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   82.604543] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.604627] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.604708] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.604789] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.604873] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.604956] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.605038] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.605119] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.605198] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.605281] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.605363] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.605444] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.605525] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.605606] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.605687] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.605771] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.605852] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   82.605933] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   82.606013] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   82.606094] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   82.606176] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   82.606258] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   82.606339] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   82.606421] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   82.606502] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   82.606585] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   82.606667] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   82.606748] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   82.606829] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   82.606908] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   82.606986] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   82.607068] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.607150] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.607232] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   82.607318] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   82.607408] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   82.607501] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   82.607597] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   82.607694] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   82.607781] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   82.607865] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.607961] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.608024] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000ba91839d
[   82.608081] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   82.608137] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   82.608190] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   82.608198] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   82.608251] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.608334] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.608417] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.608477] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.608529] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.608584] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.608642] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.608695] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.608745] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000ba91839d
[   82.608797] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.608849] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.608898] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   82.608907] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.608956] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.609013] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.609099] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.609183] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.609242] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000ba91839d
[   82.609296] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   82.609349] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   82.609399] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 20 slots for pipe bpp 24.0000 dsc 0
[   82.609449] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.609533] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.609617] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.609676] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.609731] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.609783] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.609838] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.609889] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.609938] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000ba91839d
[   82.609986] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.610033] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.610080] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.610127] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.610183] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.610266] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.610349] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] Link bpp limited to 23.9375
[   82.610430] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 18.0000
[   82.610490] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000ba91839d
[   82.610546] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 18.0000
[   82.610598] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 18.0000
[   82.610649] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 14 slots for pipe bpp 18.0000 dsc 0
[   82.610700] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 18, dithering: 1
[   82.610785] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.610869] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.610928] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.610984] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.611036] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.611093] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.611147] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.611199] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000ba91839d
[   82.611252] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.611307] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.611368] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.611426] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.611493] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.611592] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   82.611691] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   82.611787] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   82.611868] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   82.611950] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   82.612030] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 14, data 1779513/8388608 link 96119/524288)
[   82.612113] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.612194] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.612274] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   82.612355] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   82.612436] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   82.612518] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   82.612598] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   82.612679] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   82.612760] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   82.612842] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   82.612924] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   82.613007] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   82.613088] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   82.613169] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   82.613252] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   82.613333] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   82.613413] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   82.613492] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   82.613572] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   82.613655] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   82.613737] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   82.613819] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   82.613901] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   82.613982] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   82.614062] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   82.614145] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   82.614226] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.614306] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.614389] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   82.614471] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in fec_enable (expected no, found yes)
[   82.614551] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   82.614630] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.614708] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.614786] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.614864] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.614945] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 18)
[   82.615023] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   82.615102] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   82.615181] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.615278] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.615370] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   82.615463] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   82.615555] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   82.615647] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   82.615738] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   82.615819] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   82.615900] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   82.615979] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.616057] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.616134] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   82.616212] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   82.616291] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   82.616371] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   82.616449] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   82.616530] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   82.616609] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   82.616687] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   82.616766] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   82.616846] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   82.616926] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   82.617004] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   82.617082] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   82.617161] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   82.617240] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   82.617320] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   82.617400] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   82.617481] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   82.617561] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   82.617641] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   82.617721] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   82.617801] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   82.617881] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   82.617960] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   82.618038] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.618116] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.618193] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   82.618271] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   82.618349] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   82.618429] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.618509] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.618591] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.618673] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.618754] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.618834] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   82.618917] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   82.618997] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.619076] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.619156] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   82.619236] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   82.619326] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   82.619420] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   82.619484] input: MOSART Semi. wireless dongle System Control as /devices/pci0000:00/0000:00:14.0/usb3/3-6/3-6.3/3-6.3.3/3-6.3.3.4/3-6.3.3.4:1.1/0003:1A81:1202.0006/input/input27
[   82.619605] input: MOSART Semi. wireless dongle as /devices/pci0000:00/0000:00:14.0/usb3/3-6/3-6.3/3-6.3.3/3-6.3.3.4/3-6.3.3.4:1.1/0003:1A81:1202.0006/input/input28
[   82.619549] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   82.619722] input: MOSART Semi. wireless dongle as /devices/pci0000:00/0000:00:14.0/usb3/3-6/3-6.3/3-6.3.3/3-6.3.3.4/3-6.3.3.4:1.1/0003:1A81:1202.0006/input/input29
[   82.619684] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   82.619784] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   82.619863] hid-generic 0003:1A81:1202.0006: input,hiddev2,hidraw5: USB HID v1.10 Mouse [MOSART Semi. wireless dongle] on usb-0000:00:14.0-6.3.3.4/input1
[   82.619880] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   82.619992] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   82.620094] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   82.620193] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   82.620294] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   82.620395] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   82.620495] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   82.620595] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   82.620694] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   82.620792] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   82.620894] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   82.620997] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   82.621102] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   82.621203] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   82.621300] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   82.621403] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   82.621502] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   82.621596] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   82.621687] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   82.621772] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   82.621871] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.621947] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x7
[   82.622032] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 682), active pipes 0x1 -> 0x7
[   82.622026] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.622119] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (682 - 2048), active pipes 0x1 -> 0x7
[   82.622165] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.622203] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.622283] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.622289] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.622362] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   82.622442] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.622538] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.622627] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.622717] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 -  646), size    0 ->  646
[   82.622753] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.622768] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.622803] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> ( 646 -  682), size    0 ->   36
[   82.622886] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.622966] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   82.623049] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   82.623133] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   82.623215] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> ( 682 - 1979), size    0 -> 1297
[   82.623304] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   82.623388] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.623471] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   82.623580] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   82.623723] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   82.623861] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   82.623983] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   82.624114] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 9299 required 3499
[   82.624226] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 10925 required 3499
[   82.624340] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 11707 required 3499
[   82.624467] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 10508 required 3499
[   82.624586] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 3499
[   82.624692] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 3499
[   82.624818] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 3499
[   82.624945] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   82.625098] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   82.625253] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   82.625403] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   82.625552] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 97984 kHz
[   82.625698] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.625846] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.625985] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   82.626129] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.626284] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   82.626427] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   82.626569] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   82.626708] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   82.626832] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] sharing existing TBT PLL (pipe mask 0x2, active 0x0)
[   82.626959] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   82.627093] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] sharing existing TC PLL 3 (pipe mask 0x2, active 0x0)
[   82.627204] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   82.627319] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.627427] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.627532] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.627660] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.627801] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.627930] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.628061] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.628196] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.628301] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.628414] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.628548] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.628679] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.628815] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.628947] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.629086] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.629231] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.629377] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.629517] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.629664] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.629811] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.629967] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.630118] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.630269] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.630426] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.630577] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.630724] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.630873] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.631024] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.631177] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.631340] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.631474] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.631610] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.631749] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.631884] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.632007] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.632110] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.632210] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.632318] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.632429] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.632565] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.632702] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.632843] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.632985] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.633121] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.633251] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.633399] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.633546] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.633697] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[   82.633842] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[   82.633988] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[   82.634121] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[   82.634262] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [NOFB], visible: no
[   82.634403] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   82.634521] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.634628] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 18, dithering: 1
[   82.634732] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   82.634833] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.634934] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.635035] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.635151] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 1779513, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 14
[   82.635271] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.635412] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   82.635548] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.635653] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.635765] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.635900] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.636032] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   82.636172] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   82.636312] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.636453] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.636589] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   82.636727] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   82.636860] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.636998] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.637137] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.637271] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.637392] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.637523] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.637660] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   82.637797] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   82.637937] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.638067] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   82.638202] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.638332] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.638465] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.638613] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.638748] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.638853] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.638956] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.639060] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.639161] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.639270] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.639411] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.639548] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.639656] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.639778] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.639884] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.639984] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.640088] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.640192] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.640292] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   82.640391] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   82.640490] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   82.640589] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   82.640687] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   82.640786] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   82.640886] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   82.640984] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.641084] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   82.641183] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   82.641280] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.641377] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.641474] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.641572] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   82.641671] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.641772] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   82.641872] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.641970] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.642067] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.642166] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.642268] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   82.642367] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   82.642465] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.642564] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.642663] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   82.642762] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   82.642860] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.642959] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.643061] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.643162] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.643267] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   82.643411] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.643508] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   82.643602] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   82.643694] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.643789] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   82.643884] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.643980] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.644075] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.644168] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.644266] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.644361] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.644456] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.644549] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.644643] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.644737] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.644830] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.644925] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.645018] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.645112] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.645204] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.645299] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.645394] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   82.645489] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   82.645584] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   82.645678] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   82.645775] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   82.645872] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   82.645968] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   82.646064] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   82.646159] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   82.646256] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   82.646351] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   82.646443] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   82.646538] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   82.646634] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   82.646730] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   82.646826] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.646920] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.647011] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   82.647105] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   82.647202] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   82.647313] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   82.647413] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   82.647515] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   82.647618] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   82.647634] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   82.647734] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   82.647795] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.647840] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.647922] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.647911] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.648001] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.648130] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.648127] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.648237] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.648318] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000002adca3c1
[   82.648395] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   82.648467] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   82.648537] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   82.648552] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   82.648613] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.648627] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.648630] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.648739] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   82.648841] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   82.648938] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   82.649034] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   82.649131] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   82.649225] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   82.649324] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.649421] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.649515] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   82.649612] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   82.649705] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   82.649801] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   82.649897] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   82.649991] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   82.650086] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   82.650181] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   82.650278] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   82.650373] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   82.650467] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   82.650560] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   82.650655] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   82.650753] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   82.650851] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   82.650948] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   82.651043] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   82.651138] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   82.651240] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   82.651344] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   82.651458] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   82.651554] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   82.651648] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   82.651740] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   82.651832] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.651926] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.652018] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   82.652112] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   82.652211] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.652307] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.652403] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.652497] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.652592] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.652688] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   82.652783] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   82.652878] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.652974] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.653071] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   82.653178] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.653263] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.653344] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.653426] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.653508] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.653587] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   82.653665] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   82.653745] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.653822] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   82.653901] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   82.653979] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   82.654060] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   82.654162] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   82.654261] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   82.654359] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   82.654457] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   82.654553] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   82.654650] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   82.654748] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   82.654844] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   82.654938] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   82.655035] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   82.655131] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.655230] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.655385] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   82.655512] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.655617] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   82.655715] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   82.655812] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   82.655906] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   82.656000] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.656099] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.656200] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.656295] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.656389] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.656482] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.656576] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.656671] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.656767] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.656864] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.656958] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.657050] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.657143] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.657239] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.657333] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.657427] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.657523] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.657620] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.657715] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.657811] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.657908] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.658006] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.658103] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.658198] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.658294] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.658390] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.658483] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.658574] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.658667] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.658762] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.658857] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.658951] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.659049] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.659147] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.659244] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.659350] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.659450] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.659546] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.659642] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.659736] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.659829] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.659922] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.660030] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.660128] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.660235] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.660350] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.660456] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.660553] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.660652] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.660746] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.660844] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   82.660939] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.661042] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   82.661140] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   82.661239] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.661349] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.661451] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.661551] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   82.661650] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.661752] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   82.661856] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.661949] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.662043] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.662138] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.662235] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   82.662331] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   82.662426] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.662525] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.662623] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   82.662719] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   82.662813] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.662907] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.663005] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.663108] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.663207] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.663327] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.663427] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   82.663534] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   82.663633] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.663727] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   82.663818] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.663911] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.664004] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.664099] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.664197] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.664291] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.664383] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.664478] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   82.664572] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   82.664667] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   82.664762] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   82.664857] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.664953] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.665047] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.665141] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.665236] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.665336] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.665434] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.665533] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   82.665633] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   82.665730] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   82.665826] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   82.665923] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   82.666017] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   82.666112] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   82.666227] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   82.666323] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.666408] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.666493] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.666595] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm ->  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
[   82.666678] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]      lines    3,   5,   7,   8,  12,  12,   0,   0,   0,   3,    0 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.666760] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]     blocks    6,  11,  15,  17,  25,  25,   0,   0,  20,   7,   21 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.666840] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:145:cursor A]    min_ddb    8,  14,  18,  20,  29,  29,   0,   0,  21,   9,   22 ->    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0
[   82.666958] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.667066] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.667140] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000ba91839d
[   82.667206] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   82.667293] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   82.667360] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   82.667371] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   82.667442] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.667551] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   82.667648] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   82.667742] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   82.667839] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   82.667933] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   82.668026] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   82.668122] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.668217] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.668313] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   82.668406] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   82.668485] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   82.668565] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   82.668647] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   82.668728] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   82.668809] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   82.668889] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   82.668970] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   82.669052] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   82.669131] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   82.669210] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   82.669290] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   82.669371] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   82.669449] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   82.669528] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   82.669607] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   82.669685] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   82.669762] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   82.669840] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   82.669920] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   82.670001] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   82.670082] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   82.670172] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   82.670266] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.670348] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.670430] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   82.670512] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   82.670592] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.670671] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.670753] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.670833] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.670914] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.670995] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   82.671076] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   82.671158] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.671247] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.671369] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   82.671479] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.671564] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.671647] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.671730] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.671809] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.671890] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   82.671967] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   82.672044] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.672127] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   82.672211] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   82.672293] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   82.672372] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   82.672470] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   82.672567] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   82.672665] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   82.672762] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   82.672858] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   82.672951] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   82.673045] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   82.673141] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   82.673234] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   82.673330] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   82.673428] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.673529] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.673623] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   82.673717] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.673816] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   82.673915] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   82.673913] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.674015] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   82.674045] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.674116] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   82.674174] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.674213] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.674310] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.674413] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.674522] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.674674] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.674629] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.674687] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.674736] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.674840] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.674940] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.675039] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.675141] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.675246] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.675345] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.675458] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.675600] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.675710] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.675828] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.675937] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.676050] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.676182] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.676298] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.676412] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.676515] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.676616] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.676729] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.676856] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.676989] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.677126] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.677235] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.677343] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.677447] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.677555] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.677662] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.677774] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.677887] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.678003] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.678117] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.678237] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.678363] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.678508] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.678651] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.678799] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.678921] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.679031] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.679138] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.679259] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.679386] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.679536] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.679658] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.679780] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.679898] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.680036] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   82.680175] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.680326] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   82.680469] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   82.680614] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.680744] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.680849] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.680951] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   82.681051] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.681151] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   82.681249] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.681346] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.681448] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.681549] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.681652] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   82.681754] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   82.681856] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.681956] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.682056] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   82.682158] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   82.682257] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.682358] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.682461] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.682564] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.682701] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.682839] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.682950] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   82.683057] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   82.683169] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.683298] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   82.683406] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.683508] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.683610] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.683713] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.683815] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.683916] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.684017] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.684117] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   82.684220] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   82.684322] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   82.684419] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   82.684526] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.684634] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.684740] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.684881] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.685024] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.685167] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.685306] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.685412] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   82.685520] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   82.685623] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   82.685733] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   82.685880] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   82.686013] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   82.686136] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   82.686218] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.686326] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.686408] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000002adca3c1
[   82.686478] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   82.686543] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   82.686608] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   82.686621] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   82.686695] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.686801] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   82.686907] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   82.687010] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   82.687112] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   82.687212] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   82.687319] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   82.687423] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.687525] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.687625] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   82.687727] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   82.687829] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   82.687937] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   82.688035] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   82.688133] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   82.688234] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   82.688334] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   82.688460] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   82.688601] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   82.688726] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   82.688836] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   82.688938] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   82.689037] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   82.689136] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   82.689234] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   82.689334] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   82.689433] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   82.689532] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   82.689634] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   82.689734] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   82.689832] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   82.689933] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   82.690034] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   82.690135] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.690236] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.690335] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   82.690433] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   82.690534] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.690634] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.690736] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.690836] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.690939] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.691038] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   82.691137] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   82.691234] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.691366] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.691518] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   82.691672] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.691768] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.691856] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.691945] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.692026] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.692106] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   82.692188] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   82.692272] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.692355] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   82.692436] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   82.692517] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   82.692600] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   82.692706] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   82.692808] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   82.692908] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   82.693008] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   82.693106] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   82.693207] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   82.693308] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   82.693409] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   82.693512] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   82.693615] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   82.693716] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.693820] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.693918] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   82.694019] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.694120] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   82.694218] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   82.694320] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   82.694449] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   82.694573] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.694687] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.694790] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.694889] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.694992] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.695094] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.695195] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.695303] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.695401] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.695498] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.695597] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.695697] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.695796] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.695895] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.695993] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.696091] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.696190] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.696290] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.696387] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.696481] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.696577] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.696682] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.696784] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.696885] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.696986] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.697085] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.697183] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.697284] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.697409] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.697521] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.697619] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.697717] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.697817] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.697917] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.698016] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.698115] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.698216] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.698315] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.698413] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.698511] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.698608] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.698708] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.698809] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.698911] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.699012] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.699114] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.699231] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.699342] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.699441] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.699539] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.699641] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   82.699744] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.699844] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   82.699945] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   82.699951] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.700045] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.700067] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.700145] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.700199] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.700242] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.700343] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   82.700450] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.700557] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   82.700689] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.700663] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.700705] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.700768] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.700870] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.700969] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.701066] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   82.701164] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   82.701261] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.701360] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.701459] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   82.701557] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   82.701654] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.701755] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.701856] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.701955] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.702054] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.702152] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.702255] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   82.702356] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   82.702455] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.702555] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   82.702654] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.702752] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.702850] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.702948] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.703049] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.703148] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.703252] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.703354] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   82.703456] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   82.703559] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   82.703658] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   82.703763] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.703859] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.703954] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.704049] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.704144] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.704243] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:575] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.704340] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.704438] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   82.704534] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   82.704631] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   82.704731] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   82.704828] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   82.704924] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   82.705029] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   82.705158] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.705268] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.705346] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.705414] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.705479] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.705546] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.705606] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.705667] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000ba91839d
[   82.705731] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.705794] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.705856] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   82.705866] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.705930] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.706009] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.706108] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   82.706206] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   82.706305] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   82.706403] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   82.706498] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   82.706592] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   82.706690] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.706788] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.706884] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   82.706982] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   82.707078] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   82.707174] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   82.707306] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   82.707411] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   82.707513] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   82.707615] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   82.707715] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   82.707815] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   82.707914] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   82.708017] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   82.708125] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   82.708221] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   82.708316] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   82.708410] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   82.708505] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   82.708600] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   82.708696] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   82.708790] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   82.708886] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   82.708981] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   82.709076] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   82.709169] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   82.709264] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.709359] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.709455] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   82.709549] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   82.709644] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   82.709741] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.709836] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.709931] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.710024] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.710118] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.710212] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   82.710309] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   82.710404] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.710499] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.710596] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   82.710693] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   82.710789] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   82.710883] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   82.710977] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   82.711074] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   82.711170] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   82.711302] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   82.711427] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   82.711534] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   82.711629] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   82.711715] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   82.711796] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   82.711877] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   82.711956] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   82.712036] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   82.712119] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   82.712200] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   82.712282] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   82.712364] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   82.712446] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   82.712529] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   82.712610] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   82.712691] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   82.712774] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   82.712855] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   82.712934] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   82.713036] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.713121] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.713203] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.713285] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.713365] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.713447] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   82.713527] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   82.713606] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.713686] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   82.713767] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   82.713849] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   82.713929] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   82.714033] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   82.714131] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   82.714231] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   82.714328] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   82.714424] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   82.714522] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   82.714619] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   82.714715] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   82.714813] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   82.714913] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   82.715009] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.715109] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.715201] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   82.715332] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.715431] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   82.715527] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   82.715622] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   82.715720] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   82.715807] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.715890] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.715974] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.716055] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.716141] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.716227] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.716310] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.716391] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.716469] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.716548] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.716629] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.716710] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.716791] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.716874] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.716956] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.717036] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.717116] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.717198] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.717280] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.717361] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.717440] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.717523] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.717607] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.717688] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.717771] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.717853] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.717934] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.718015] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.718095] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.718176] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.718256] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.718337] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.718419] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.718500] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.718581] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.718662] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.718744] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.718825] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.718907] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.718991] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.719075] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.719157] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.719241] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.719366] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.719469] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.719564] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.719658] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.719756] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.719857] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.719956] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.720051] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   82.720148] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.720244] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   82.720343] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   82.720445] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.720540] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.720634] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.720729] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   82.720825] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.720920] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   82.721015] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.721110] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.721202] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.721296] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.721392] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   82.721484] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   82.721577] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.721672] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.721766] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   82.721859] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   82.721951] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.722044] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.722138] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.722235] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.722331] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   82.722426] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.722522] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   82.722617] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   82.722712] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.722806] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   82.722899] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.722991] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.723082] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.723173] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.723296] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.723394] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.723495] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.723589] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.723683] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.723763] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.723842] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.723920] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.723997] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.724076] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.724157] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.724238] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.724317] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   82.724398] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   82.724479] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   82.724558] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   82.724637] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   82.724718] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   82.724799] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   82.724886] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   82.724979] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   82.725075] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   82.725188] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   82.725293] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   82.725342] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   82.725390] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   82.725452] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.725483] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   82.725580] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   82.725659] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   82.725682] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.725780] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.725886] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   82.725992] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   82.726110] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   82.726099] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   82.726125] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   82.726202] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   82.726299] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   82.726395] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   82.726493] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   82.726546] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.726665] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.726753] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.726819] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.726881] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.726950] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.727013] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.727074] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000002adca3c1
[   82.727137] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.727202] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.727273] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   82.727284] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.727350] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.727428] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.727536] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   82.727646] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   82.727748] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   82.727847] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   82.727945] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   82.728043] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   82.728139] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.728234] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.728326] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   82.728419] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   82.728513] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   82.728607] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   82.728703] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   82.728800] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   82.728897] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   82.728993] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   82.729090] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   82.729185] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   82.729278] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   82.729373] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   82.729468] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   82.729562] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   82.729656] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   82.729751] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   82.729846] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   82.729960] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   82.730060] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   82.730156] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   82.730253] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   82.730349] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   82.730444] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   82.730536] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   82.730632] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.730727] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.730820] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   82.730916] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   82.731013] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   82.731108] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.731200] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.731330] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.731451] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.731558] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.731662] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   82.731766] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   82.731864] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.731959] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.732055] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   82.732155] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   82.732252] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   82.732352] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   82.732451] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   82.732552] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   82.732652] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   82.732750] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   82.732844] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   82.732937] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   82.733032] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   82.733128] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   82.733224] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   82.733317] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   82.733417] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   82.733515] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   82.733615] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   82.733717] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   82.733816] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   82.733914] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   82.734022] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   82.734125] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   82.734227] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   82.734324] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   82.734418] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   82.734510] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   82.734602] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   82.734707] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.734792] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.734872] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.734958] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.735040] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.735122] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   82.735200] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   82.735311] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.735399] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   82.735484] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   82.735571] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   82.735680] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   82.735791] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   82.735898] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   82.736003] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   82.736111] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   82.736220] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   82.736327] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   82.736432] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   82.736534] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   82.736639] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   82.736743] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   82.736844] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.736950] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.737054] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   82.737154] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.737259] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   82.737363] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   82.737465] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   82.737566] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   82.737667] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.737773] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.737875] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.737975] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.738077] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.738178] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.738277] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.738379] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.738482] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.738586] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.738689] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.738791] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.738891] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.738992] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.739093] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.739195] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.739303] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.739410] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.739512] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.739611] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.739715] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.739817] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.739919] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.740021] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.740122] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.740224] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.740326] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.740428] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.740529] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.740630] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.740733] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.740834] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.740937] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.741037] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.741137] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.741237] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.741336] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.741435] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.741534] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.741635] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.741738] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.741840] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.741943] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.742045] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.742150] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.742255] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.742358] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.742461] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.742563] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.742662] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.742765] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   82.742865] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.742965] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   82.743065] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   82.743165] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.743270] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.743382] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.743483] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   82.743580] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.743676] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   82.743772] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.743864] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.743959] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.744054] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.744151] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   82.744249] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   82.744345] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.744439] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.744534] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   82.744629] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   82.744724] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.744821] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.744916] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.745014] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.745108] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   82.745210] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.745309] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   82.745411] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   82.745536] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.745632] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   82.745727] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.745825] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.745921] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.746016] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.746112] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.746206] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.746303] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.746400] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.746496] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.746601] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.746714] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.746813] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.746912] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.747011] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.747110] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.747210] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.747313] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   82.747412] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   82.747504] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   82.747598] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   82.747693] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   82.747793] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   82.747894] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   82.747988] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   82.748084] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   82.748179] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   82.748273] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   82.748366] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   82.748462] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   82.748558] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   82.748653] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   82.748746] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:582] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.748840] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.748936] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   82.749034] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   82.749133] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   82.749229] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   82.749323] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   82.749419] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   82.749519] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   82.751135] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:590]
[   82.752804] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:597]
[   82.753209] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:598]
[   82.754934] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:599]
[   82.755027] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.755150] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.755220] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000003db934e3
[   82.755330] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   82.755412] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   82.755494] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   82.755518] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   82.755598] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.755687] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   82.755773] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   82.755857] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   82.755939] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   82.756021] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   82.756103] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   82.756185] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.756267] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.756349] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   82.756432] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   82.756513] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   82.756595] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   82.756676] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   82.756757] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   82.756835] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   82.756918] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   82.757031] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   82.757115] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   82.757196] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   82.757277] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   82.757356] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   82.757434] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   82.757514] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   82.757594] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   82.757674] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   82.757757] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   82.757837] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   82.757919] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   82.758001] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   82.758082] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   82.758164] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   82.758255] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   82.758335] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.758414] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.758495] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   82.758575] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   82.758655] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.758737] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.758818] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.758896] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.758977] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.759057] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   82.759138] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   82.759216] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.759337] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.759452] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   82.759566] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.759652] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.759732] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.759807] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.759878] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.759948] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   82.760018] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   82.760085] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.760152] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   82.760217] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   82.760286] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   82.760356] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   82.760460] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   82.760544] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   82.760628] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   82.760708] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   82.760788] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   82.760869] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   82.760951] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   82.761034] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   82.761115] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   82.761197] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   82.761277] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.761363] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.761444] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   82.761523] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.761606] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   82.761690] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   82.761772] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   82.761851] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   82.761933] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.762016] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.762097] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.762176] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.762256] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.762338] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.762420] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.762502] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.762585] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.762665] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.762746] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.762826] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.762907] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.762989] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.763070] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.763150] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.763228] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.763348] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.763447] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.763543] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.763637] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.763721] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.763800] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.763882] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.763966] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.764047] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.764125] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.764205] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.764283] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.764364] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.764444] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.764523] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.764604] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.764694] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.764777] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.764858] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.764940] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.765021] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.765102] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.765181] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.765260] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.765339] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.765417] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.765497] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.765579] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.765661] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.765739] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.765819] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.765900] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.765980] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.766061] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   82.766145] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.766225] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   82.766306] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   82.766388] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.766468] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.766547] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.766626] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   82.766706] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.766786] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   82.766867] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.766949] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.767029] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.767108] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.767190] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   82.767304] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   82.767404] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.767503] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.767604] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   82.767707] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   82.767796] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.767891] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.767973] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.768057] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.768139] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.768220] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.768299] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   82.768379] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   82.768458] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.768536] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   82.768617] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.768699] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.768781] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.768863] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.768945] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.769028] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.769108] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.769187] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   82.769267] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   82.769347] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   82.769427] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   82.769508] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.769589] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.769670] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.769749] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.769830] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.769911] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:599] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.769992] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.770071] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   82.770154] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   82.770236] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   82.770317] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   82.770397] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   82.770476] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   82.770558] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   82.770604] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.770708] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.770780] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000b7c39f35
[   82.770836] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   82.770892] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   82.770944] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   82.770953] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   82.771006] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.771092] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   82.771175] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   82.771262] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   82.771396] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   82.771499] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   82.771595] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   82.771693] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.771776] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.771857] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   82.771938] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   82.772019] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   82.772099] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   82.772179] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   82.772257] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   82.772337] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   82.772419] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   82.772497] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   82.772577] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   82.772658] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   82.772739] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   82.772819] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   82.772899] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   82.772981] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   82.773063] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   82.773144] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   82.773228] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   82.773309] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   82.773388] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   82.773466] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   82.773547] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   82.773629] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   82.773710] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   82.773789] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.773870] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.773951] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   82.774032] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   82.774113] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.774193] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.774272] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.774352] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.774433] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.774513] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   82.774592] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   82.774672] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.774751] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.774831] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   82.774919] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.774991] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.775059] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.775130] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.775197] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.775268] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   82.775378] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   82.775466] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.775545] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   82.775627] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   82.775705] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   82.775784] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   82.775882] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   82.775964] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   82.776044] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   82.776122] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   82.776202] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   82.776282] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   82.776362] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   82.776442] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   82.776522] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   82.776602] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   82.776682] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.776766] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.776849] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   82.776930] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.777011] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   82.777094] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   82.777174] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   82.777255] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   82.777335] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.777417] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.777499] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.777580] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.777661] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.777744] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.777824] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.777905] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.777987] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.778067] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.778147] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.778226] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.778310] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.778390] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.778491] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.778585] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.778680] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.778774] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.778868] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.778962] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.779056] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.779151] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.779252] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.779380] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.779481] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.779576] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.779657] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.779738] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.779820] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.779902] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.779982] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.780061] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.780142] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.780219] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.780300] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.780379] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.780459] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.780538] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.780627] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.780707] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.780788] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.780868] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.780948] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.781028] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.781108] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.781189] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.781267] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.781346] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.781425] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.781504] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.781583] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   82.781664] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.781746] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   82.781826] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   82.781907] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.781989] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.782070] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.782149] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   82.782228] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.782308] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   82.782389] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.782470] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.782551] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.782632] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.782713] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   82.782795] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   82.782877] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.782956] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.783034] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   82.783116] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   82.783199] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.783310] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.783411] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.783512] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.783610] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.783705] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.783785] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   82.783865] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   82.783947] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.784031] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   82.784113] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.784193] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.784271] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.784351] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.784431] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.784511] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.784591] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.784673] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   82.784756] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   82.784837] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   82.784918] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   82.784998] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.785078] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.785158] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.785239] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.785321] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.785402] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:599] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.785484] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.785563] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   82.785642] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   82.785722] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   82.785803] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   82.785882] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   82.785962] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   82.786045] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   82.792134] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:575]
[   82.792270] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.792411] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.792478] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.792535] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.792592] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.792650] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.792703] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.792755] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000003db934e3
[   82.792806] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.792855] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.792904] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   82.792919] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.792974] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.793041] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.793131] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   82.793217] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   82.793300] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   82.793380] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   82.793460] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   82.793542] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   82.793624] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.793704] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.793782] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   82.793862] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   82.793943] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   82.794023] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   82.794102] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   82.794184] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   82.794265] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   82.794344] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   82.794426] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   82.794508] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   82.794590] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   82.794670] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   82.794749] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   82.794829] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   82.794909] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   82.794990] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   82.795072] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   82.795153] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   82.795233] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   82.795364] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   82.795464] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   82.795557] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   82.795649] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   82.795738] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   82.795815] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.795894] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.795975] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   82.796055] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   82.796135] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   82.796214] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.796293] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.796372] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.796451] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.796529] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.796610] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   82.796691] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   82.796772] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.796852] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.796932] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   82.797011] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   82.797090] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   82.797169] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   82.797247] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   82.797325] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   82.797402] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   82.797483] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   82.797563] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   82.797644] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   82.797723] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   82.797802] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   82.797880] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   82.797960] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   82.798040] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   82.798120] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   82.798200] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   82.798279] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   82.798357] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   82.798434] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   82.798513] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   82.798592] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   82.798674] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   82.798756] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   82.798836] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   82.798917] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   82.798998] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   82.799095] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.799168] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.799241] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.799350] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.799435] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.799516] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   82.799595] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   82.799675] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.799749] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   82.799814] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   82.799881] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   82.799948] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   82.800033] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   82.800117] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   82.800198] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   82.800280] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   82.800361] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   82.800441] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   82.800521] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   82.800602] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   82.800686] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   82.800770] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   82.800852] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.800941] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.801021] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   82.801103] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.801186] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   82.801267] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   82.801348] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   82.801428] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   82.801510] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.801593] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.801675] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.801759] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.801840] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.801921] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.802002] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.802083] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.802163] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.802244] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.802325] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.802405] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.802486] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.802567] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.802648] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.802727] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.802806] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.802886] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.802965] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.803047] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.803129] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.803209] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.803311] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.803410] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.803510] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.803605] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.803694] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.803777] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.803858] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.803939] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.804019] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.804098] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.804180] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.804258] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.804337] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.804418] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.804499] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.804589] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.804670] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.804752] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.804833] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.804913] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.804992] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.805074] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.805155] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.805239] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.805321] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.805404] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.805486] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.805567] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.805648] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   82.805730] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.805811] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   82.805893] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   82.805974] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.806055] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.806138] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.806220] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   82.806303] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.806387] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   82.806467] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.806550] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.806630] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.806710] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.806792] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   82.806873] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   82.806954] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.807033] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.807115] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   82.807198] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   82.807312] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.807415] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.807508] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.807600] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.807691] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   82.807772] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.807854] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   82.807934] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   82.808014] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.808093] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   82.808172] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.808252] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.808334] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.808415] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.808498] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.808582] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.808666] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.808749] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.808830] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.808911] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.808993] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.809075] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.809159] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.809241] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.809322] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.809403] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.809485] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   82.809564] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   82.809644] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   82.809726] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   82.809810] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   82.809893] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   82.809975] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   82.810058] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   82.810141] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   82.810222] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   82.810319] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   82.810418] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   82.810532] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   82.810620] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   82.810713] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   82.810798] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:575] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.810880] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.810962] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   82.811043] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   82.811124] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   82.811205] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   82.811308] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   82.811409] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   82.811509] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   82.811562] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.811690] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.811758] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.811818] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.811871] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.811928] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.811981] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.812034] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000b7c39f35
[   82.812085] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.812134] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.812182] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   82.812191] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.812243] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.812304] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.812388] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   82.812473] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   82.812554] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   82.812635] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   82.812717] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   82.812799] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   82.812881] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.812961] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.813040] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   82.813120] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   82.813199] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   82.813277] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   82.813357] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   82.813438] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   82.813518] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   82.813596] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   82.813682] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   82.813763] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   82.813844] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   82.813924] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   82.814006] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   82.814087] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   82.814167] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   82.814247] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   82.814329] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   82.814410] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   82.814489] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   82.814567] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   82.814647] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   82.814728] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   82.814808] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   82.814886] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   82.814962] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.815041] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.815121] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   82.815200] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   82.815294] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   82.815392] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.815493] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.815589] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.815685] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.815779] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.815859] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   82.815939] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   82.816019] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.816099] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.816179] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   82.816259] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   82.816338] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   82.816415] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   82.816493] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   82.816572] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   82.816651] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   82.816730] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   82.816808] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   82.816888] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   82.816969] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   82.817048] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   82.817127] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   82.817206] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   82.817286] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   82.817366] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   82.817446] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   82.817526] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   82.817605] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   82.817685] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   82.817765] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   82.817845] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   82.817925] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   82.818005] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   82.818086] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   82.818166] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   82.818246] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   82.818334] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.818406] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.818475] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.818547] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.818616] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.818683] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   82.818746] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   82.818811] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.818878] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   82.818945] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   82.819011] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   82.819078] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   82.819162] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   82.819248] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   82.819345] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   82.819446] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   82.819536] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   82.819616] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   82.819696] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   82.819776] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   82.819855] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   82.819936] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   82.820018] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.820104] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.820187] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   82.820269] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.820350] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   82.820430] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   82.820511] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   82.820591] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   82.820670] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.820752] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.820834] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.820914] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.820994] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.821073] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.821152] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.821229] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.821309] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.821390] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.821470] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.821548] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.821628] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.821707] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.821786] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.821865] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.821945] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.822025] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.822104] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.822185] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.822267] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.822347] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.822429] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.822509] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.822592] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.822674] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.822755] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.822837] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.822918] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.822997] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.823076] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.823157] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.823242] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.823340] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.823441] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.823535] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.823631] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.823715] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.823795] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.823875] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.823956] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.824036] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.824115] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.824194] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.824273] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.824355] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.824436] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.824516] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.824599] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.824679] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.824759] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   82.824839] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.824923] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   82.825005] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   82.825086] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.825165] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.825244] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.825325] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   82.825408] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.825490] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   82.825571] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.825654] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.825734] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.825813] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.825892] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   82.825971] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   82.826051] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.826130] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.826210] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   82.826290] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   82.826369] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.826448] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.826530] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.826612] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.826694] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   82.826774] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.826854] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   82.826935] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   82.827013] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.827091] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   82.827173] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.827255] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.827351] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.827450] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.827544] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.827636] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.827725] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.827808] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.827889] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.827969] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.828049] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.828127] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.828206] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.828288] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.828368] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.828448] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.828529] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   82.828613] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   82.828696] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   82.828776] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   82.828857] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   82.828938] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   82.829020] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   82.829102] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   82.829182] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   82.829262] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   82.829344] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   82.829425] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   82.829505] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   82.829585] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   82.829667] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   82.829748] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:575] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.829832] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.829913] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   82.829995] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   82.830076] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   82.830157] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   82.830238] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   82.830319] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   82.830402] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   82.833083] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   82.833234] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.833424] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.833514] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000003db934e3
[   82.833597] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   82.833675] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   82.833750] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   82.833768] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   82.833850] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.833964] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   82.834080] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   82.834198] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   82.834311] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   82.834421] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   82.834542] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   82.834653] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.834762] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.834868] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   82.834973] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   82.835081] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   82.835191] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   82.835323] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   82.835453] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   82.835567] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   82.835674] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   82.835781] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   82.835889] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   82.835993] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   82.836099] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   82.836208] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   82.836318] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   82.836425] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   82.836532] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   82.836640] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   82.836745] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   82.836851] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   82.836955] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   82.837060] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   82.837166] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   82.837272] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   82.837373] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   82.837473] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.837576] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.837680] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   82.837781] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   82.837883] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.837984] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.838085] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.838183] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.838283] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.838386] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   82.838489] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   82.838589] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.838688] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.838792] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   82.838916] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.839006] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.839090] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.839180] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.839274] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.839361] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   82.839446] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   82.839532] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.839618] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   82.839703] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   82.839794] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   82.839871] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   82.839962] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   82.840045] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   82.840125] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   82.840207] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   82.840287] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   82.840370] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   82.840451] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   82.840531] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   82.840613] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   82.840696] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   82.840779] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.840867] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.840947] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   82.841029] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.841114] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   82.841196] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   82.841279] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   82.841360] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   82.841442] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.841527] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.841610] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.841693] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.841775] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.841855] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.841936] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.842016] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.842096] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.842174] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.842250] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.842329] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.842410] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.842504] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.842597] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.842689] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.842782] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.842875] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.842969] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.843063] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.843159] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.843258] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.843372] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.843471] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.843571] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.843665] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.843757] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.843849] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.843944] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.844038] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.844131] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.844226] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.844321] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.844414] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.844511] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.844607] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.844702] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.844795] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.844890] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.844984] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.845078] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.845172] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.845268] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.845363] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.845459] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.845557] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.845652] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.845746] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:573] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.845841] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.845934] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+1041
[   82.846030] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   82.846129] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.846222] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   82.846316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   82.846411] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.846506] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.846598] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.846691] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   82.846788] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.846890] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   82.846991] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.847093] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.847193] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.847296] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.847394] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   82.847494] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   82.847593] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.847688] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.847781] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   82.847877] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   82.847971] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.848064] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.848151] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.848231] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.848308] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.848386] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.848467] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   82.848549] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   82.848629] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.848707] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   82.848789] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.848871] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.848954] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.849036] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.849121] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.849217] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.849324] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.849423] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   82.849520] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   82.849615] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   82.849710] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   82.849805] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.849885] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.849963] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.850043] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.850123] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.850204] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:564] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.850286] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.850363] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   82.850445] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   82.850527] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   82.850613] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   82.850706] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   82.850801] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   82.850914] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   82.851017] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.851146] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.851226] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000b7c39f35
[   82.851304] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   82.851372] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   82.851438] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   82.851449] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   82.851522] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.851628] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   82.851735] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   82.851838] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   82.851939] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   82.852041] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   82.852141] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 18, data 2306867/8388608 link 96119/524288)
[   82.852245] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.852346] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.852441] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   82.852529] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   82.852623] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   82.852716] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   82.852797] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   82.852893] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   82.852989] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   82.853086] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   82.853183] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   82.853279] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   82.853371] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   82.853466] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   82.853564] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   82.853666] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   82.853762] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   82.853862] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   82.853958] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   82.854056] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   82.854153] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   82.854249] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   82.854344] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   82.854439] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   82.854538] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   82.854636] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   82.854734] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.854832] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.854930] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   82.855030] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   82.855128] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.855228] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.855335] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.855441] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.855544] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.855649] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   82.855749] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   82.855848] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.855949] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.856051] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   82.856173] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.856264] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.856352] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x3
[   82.856443] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.856531] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.856616] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 - 2012), size    0 -> 2012
[   82.856697] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> (2012 - 2048), size    0 ->   36
[   82.856778] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.856860] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   82.856943] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   82.857026] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   82.857111] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   82.857217] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 1304
[   82.857321] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 1304
[   82.857422] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 1304
[   82.857524] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 1304
[   82.857626] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 1304
[   82.857725] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 1304
[   82.857825] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 1304
[   82.857924] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   82.858025] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   82.858126] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 20224 kHz
[   82.858228] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.858334] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.858436] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 192000 kHz, actual 192000 kHz
[   82.858537] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.858641] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   82.858743] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   82.858844] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   82.858942] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   82.859041] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.859142] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.859251] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.859359] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.859457] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.859552] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.859647] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.859742] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.859837] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.859934] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.860032] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.860128] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.860223] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.860319] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.860417] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.860513] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.860608] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.860701] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.860797] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.860893] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.860989] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.861083] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.861178] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.861276] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.861372] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.861469] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.861566] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.861660] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.861756] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.861851] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.861946] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.862041] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.862137] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.862231] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.862326] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.862424] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.862522] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.862616] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.862710] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.862805] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.862900] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.862993] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.863087] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.863181] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.863300] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.863408] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.863509] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.863596] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:597] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.863676] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.863754] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+941
[   82.863835] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   82.863915] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.863996] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 24, dithering: 0
[   82.864075] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   82.864153] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.864233] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.864314] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.864393] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 2306867, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 18
[   82.864475] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.864557] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: disabled
[   82.864638] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.864717] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.864797] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.864878] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.864958] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   82.865038] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   82.865120] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.865201] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.865282] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   82.865363] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   82.865442] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.865523] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.865604] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.865684] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.865766] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.865845] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.865927] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   82.866008] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   82.866087] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.866166] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   82.866246] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.866328] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.866409] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.866488] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.866568] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x40000000 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.866650] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.866731] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.866812] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0db0 0x0000 0x0000
[   82.866905] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0db0 0x0000
[   82.866997] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0db0
[   82.867091] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0100 0x0100 0x0100
[   82.867185] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.867283] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.867380] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.867479] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.867580] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.867676] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:564] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.867773] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.867868] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   82.867963] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   82.868057] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   82.868150] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   82.868245] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   82.868339] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   82.868438] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 00000000b4779840 (2)
[   82.868570] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.868685] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.868764] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.868837] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.868906] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.868975] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.869038] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.869101] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000003db934e3
[   82.869165] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.869229] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.869290] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   82.869301] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.869363] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.869435] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.869539] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   82.869645] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   82.869746] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   82.869848] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   82.869951] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   82.870052] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   82.870155] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.870254] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.870354] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   82.870457] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   82.870558] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   82.870656] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   82.870755] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   82.870855] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   82.870955] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   82.871055] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   82.871156] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   82.871262] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   82.871360] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   82.871458] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   82.871558] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   82.871659] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   82.871760] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   82.871859] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   82.871956] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   82.872054] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   82.872153] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   82.872251] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   82.872351] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   82.872452] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   82.872551] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   82.872651] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   82.872752] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.872853] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.872954] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   82.873056] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   82.873155] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   82.873252] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.873350] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.873450] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.873547] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.873649] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.873750] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   82.873850] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   82.873949] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.874049] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.874149] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   82.874247] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   82.874345] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   82.874446] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   82.874545] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   82.874644] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   82.874742] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   82.874840] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   82.874939] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   82.875039] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   82.875139] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   82.875244] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   82.875344] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   82.875444] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   82.875543] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   82.875643] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   82.875743] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   82.875843] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   82.875943] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   82.876042] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   82.876139] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   82.876239] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   82.876340] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   82.876440] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   82.876543] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   82.876645] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   82.876746] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   82.876857] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.876947] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.877031] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.877118] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.877203] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.877289] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   82.877371] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   82.877448] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.877528] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   82.877618] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   82.877705] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   82.877783] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   82.877885] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   82.877985] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   82.878083] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   82.878178] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   82.878272] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   82.878368] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   82.878461] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   82.878553] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   82.878648] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   82.878743] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   82.878839] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.878941] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.879038] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   82.879136] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.879235] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   82.879339] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   82.879445] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   82.879546] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   82.879644] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.879745] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.879841] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.879939] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.880036] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.880130] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.880227] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.880324] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.880422] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.880520] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.880618] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.880713] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.880810] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.880909] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.881007] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.881103] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.881201] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.881300] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.881398] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.881494] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.881590] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.881689] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.881788] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.881885] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.881982] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.882079] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.882176] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.882274] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.882369] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.882463] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.882561] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.882658] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.882753] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.882847] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.882943] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.883044] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.883146] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.883250] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.883350] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.883451] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.883549] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.883648] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.883747] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.883841] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.883938] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.884035] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.884134] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.884231] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:597] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.884328] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.884427] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+941
[   82.884525] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   82.884622] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.884721] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   82.884819] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   82.884918] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.885012] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.885105] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.885197] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   82.885292] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.885388] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   82.885482] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.885578] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.885676] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.885771] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.885864] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   82.885959] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   82.886049] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.886143] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.886237] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   82.886334] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   82.886430] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.886528] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.886624] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.886720] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.886815] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   82.886911] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.887007] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   82.887103] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   82.887199] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.887303] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   82.887401] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.887502] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.887604] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.887704] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.887806] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.887906] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.888005] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.888107] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.888209] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.888310] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.888409] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.888508] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.888608] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.888708] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.888806] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.888905] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.889006] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   82.889105] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   82.889206] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   82.889305] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   82.889406] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   82.889507] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   82.889608] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   82.889709] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   82.889809] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   82.889910] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   82.890010] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   82.890109] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   82.890208] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   82.890312] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   82.890414] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   82.890514] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:575] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.890617] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.890718] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   82.890817] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   82.890914] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   82.891014] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   82.891115] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   82.891214] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   82.891319] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   82.891335] i915 0000:00:02.0: [drm:intel_backlight_device_update_status [i915]] updating intel_backlight, brightness=13575/19393
[   82.891445] i915 0000:00:02.0: [drm:intel_panel_actually_set_backlight [i915]] [CONNECTOR:508:eDP-1] set backlight level = 13643
[   82.891599] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.891707] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.891787] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.891860] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.891929] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.891998] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.892058] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.892117] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x00000000b7c39f35
[   82.892174] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.892233] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.892282] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   82.892291] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.892345] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.892410] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.892498] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   82.892584] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   82.892667] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   82.892748] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 2)
[   82.892828] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   82.892908] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   82.892991] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.893072] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.893154] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   82.893235] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   82.893316] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   82.893398] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   82.893479] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   82.893559] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   82.893640] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   82.893719] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   82.893799] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   82.893876] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   82.893953] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   82.894030] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   82.894110] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   82.894191] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   82.894270] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   82.894349] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   82.894442] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   82.894537] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   82.894625] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   82.894704] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   82.894783] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   82.894863] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   82.894943] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   82.895024] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   82.895104] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.895183] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.895266] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   82.895366] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   82.895466] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   82.895562] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.895658] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.895747] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.895829] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.895912] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.895991] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   82.896073] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   82.896156] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.896236] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.896316] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   82.896395] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   82.896474] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   82.896554] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   82.896634] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   82.896716] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   82.896797] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   82.896878] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   82.896958] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   82.897039] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   82.897121] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   82.897203] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   82.897283] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   82.897363] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   82.897442] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   82.897523] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   82.897604] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   82.897684] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   82.897766] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   82.897847] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   82.897928] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   82.898007] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   82.898086] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   82.898165] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   82.898243] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   82.898324] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   82.898404] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   82.898493] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.898564] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.898632] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 2048), active pipes 0x1 -> 0x5
[   82.898702] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.898772] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.898839] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> (   0 - 1979), size    0 -> 1979
[   82.898907] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   82.898973] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.899039] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   82.899107] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   82.899172] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   82.899242] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   82.899364] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 11064 required 2875
[   82.899468] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 13813 required 2875
[   82.899564] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 14899 required 2875
[   82.899661] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 13010 required 2875
[   82.899748] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 2875
[   82.899828] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 2875
[   82.899907] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 2875
[   82.899989] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   82.900070] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   82.900152] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 65323 kHz
[   82.900233] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.900320] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.900402] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   82.900484] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.900567] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TBT PLL
[   82.900651] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   82.900733] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] allocated TC PLL 3
[   82.900812] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   82.900892] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.900975] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.901057] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.901138] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.901217] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.901299] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.901379] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.901458] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.901538] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.901618] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.901698] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.901779] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.901859] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.901939] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.902020] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.902101] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.902181] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.902262] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.902343] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.902421] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.902499] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.902578] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.902658] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.902739] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.902821] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.902900] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.902979] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.903061] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.903141] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.903222] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.903315] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.903416] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.903517] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.903610] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.903700] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.903779] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.903860] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.903939] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.904019] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.904099] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.904179] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.904258] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.904336] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.904416] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.904499] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:562] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.904581] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.904661] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.904740] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:597] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.904820] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.904900] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+941
[   82.904982] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   82.905064] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.905146] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   82.905227] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: C
[   82.905308] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.905387] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.905467] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.905549] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   82.905630] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.905710] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   82.905790] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.905870] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.905949] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.906030] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.906112] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   82.906192] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   82.906271] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.906352] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.906437] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   82.906531] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   82.906614] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.906692] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.906773] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.906854] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.906937] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   82.907019] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.907101] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   82.907181] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   82.907291] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.907389] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   82.907489] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.907586] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.907675] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.907754] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.907837] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.907917] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.907997] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.908075] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.908153] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.908235] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.908316] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.908396] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.908479] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.908560] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.908641] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.908721] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.908802] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   82.908883] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   82.908964] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   82.909046] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   82.909127] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   82.909207] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   82.909285] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   82.909365] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   82.909445] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   82.909524] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   82.909603] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   82.909683] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   82.909764] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   82.909845] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   82.909923] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   82.910004] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:575] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.910088] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.910169] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   82.910249] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   82.910328] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   82.910408] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   82.910489] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   82.910569] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   82.910649] i915 0000:00:02.0: [drm:drm_dp_mst_put_port_malloc [drm_display_helper]] port 000000004b112a7e (2)
[   82.910905] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.910994] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.911058] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000003db934e3
[   82.911116] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   82.911170] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   82.911226] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 00000000b4779840 (3)
[   82.911235] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 18 slots for pipe bpp 24.0000 dsc 0
[   82.911298] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.911416] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.911521] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.911593] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.911658] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.911711] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.911770] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.911824] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.911876] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000003db934e3
[   82.911927] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.911979] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.912030] i915 0000:00:02.0: [drm:drm_dp_atomic_find_time_slots [drm_display_helper]] port 000000004b112a7e (3)
[   82.912039] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.912091] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.912150] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.912236] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.912319] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.912378] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000003db934e3
[   82.912433] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 24.0000
[   82.912487] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 24.0000
[   82.912539] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 20 slots for pipe bpp 24.0000 dsc 0
[   82.912590] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.912674] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.912756] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.912816] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.912884] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.912951] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.913023] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.913077] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.913141] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000003db934e3
[   82.913198] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.913253] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.913305] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.913355] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.913415] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.913503] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:567:DP-6] Limiting target display pipe bpp to 24 (EDID bpp 24, max requested bpp 24, max platform bpp 36)
[   82.913588] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] Link bpp limited to 23.9375
[   82.913670] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:269:pipe B] DP link limits: pixel clock 148500 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 18.0000
[   82.913728] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000003db934e3
[   82.913783] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 18.0000 max bpp 18.0000
[   82.913838] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 18.0000
[   82.913889] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 14 slots for pipe bpp 18.0000 dsc 0
[   82.913940] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] hw max bpp: 24, pipe bpp: 18, dithering: 1
[   82.914023] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CONNECTOR:570:DP-7] Limiting target display pipe bpp to 24 (EDID bpp 30, max requested bpp 24, max platform bpp 36)
[   82.914108] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC off max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 18.0000 max link_bpp 24.0000
[   82.914169] i915 0000:00:02.0: [drm:adjust_limits_for_dsc_hblank_expansion_quirk [i915]] [CRTC:387:pipe C][CONNECTOR:570:DP-7] DSC needed by hblank expansion quirk
[   82.914225] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Try DSC (fallback=no, joiner=no, force=no)
[   82.914280] i915 0000:00:02.0: [drm:intel_dp_compute_config_limits [i915]] [ENCODER:544:DDI TC3/PHY TC3][CRTC:387:pipe C] DP link limits: pixel clock 522580 kHz DSC on max lanes 2 max rate 810000 max pipe_bpp 24 min link_bpp 8.0000 max link_bpp 16.0000
[   82.914337] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] Trying to find VCPI slots in DSC mode
[   82.914388] i915 0000:00:02.0: [drm:mst_stream_compute_config [i915]] DSC Sink supported compressed min bpp 8.0000 compressed max bpp 16.0000
[   82.914438] [drm:intel_dp_mtp_tu_compute_config [i915]] 8b/10b encoding format on mst_state 0x000000003db934e3
[   82.914489] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Looking for slots in range min bpp 8.0000 max bpp 16.0000
[   82.914539] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Trying bpp 16.0000
[   82.914587] i915 0000:00:02.0: [drm:intel_dp_mtp_tu_compute_config [i915]] Got 44 slots for pipe bpp 16.0000 dsc 1
[   82.914637] i915 0000:00:02.0: [drm:intel_dp_dsc_compute_config [i915]] DP DSC computed with Input Bpp = 24 Compressed Bpp = 16.0000 Slice Count = 2
[   82.914695] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] hw max bpp: 24, pipe bpp: 24, dithering: 0
[   82.914781] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.enable (expected no, found yes)
[   82.914865] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.active (expected no, found yes)
[   82.914950] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in cpu_transcoder (expected -1, found 1)
[   82.915033] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   82.915117] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in lane_count (expected 0, found 2)
[   82.915198] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 14, data 1779513/8388608 link 96119/524288)
[   82.915287] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.915401] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.915502] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 1920)
[   82.915598] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 2200)
[   82.915692] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 1920)
[   82.915776] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 2200)
[   82.915861] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 2008)
[   82.915946] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 2052)
[   82.916028] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 1080)
[   82.916110] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 1080)
[   82.916191] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 1084)
[   82.916272] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 1089)
[   82.916354] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 1125)
[   82.916436] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 1125)
[   82.916518] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 1920)
[   82.916599] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 2200)
[   82.916681] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 1920)
[   82.916762] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 2200)
[   82.916844] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 2008)
[   82.916926] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 2052)
[   82.917008] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 1080)
[   82.917089] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 1080)
[   82.917173] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 1084)
[   82.917254] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 1089)
[   82.917334] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 1125)
[   82.917415] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 1125)
[   82.917494] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.917575] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.917657] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.flags (4) (expected 0, found 4)
[   82.917738] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in fec_enable (expected no, found yes)
[   82.917821] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in dpll_hw_state  
[   82.917901] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.917982] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.918065] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.918145] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.918226] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in pipe_bpp (expected 0, found 18)
[   82.918308] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 148500)
[   82.918387] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 148500)
[   82.918466] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.918548] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:269:pipe B] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.918631] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:269:pipe B] fastset requirement not met, forcing full modeset
[   82.918713] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.enable (expected no, found yes)
[   82.918793] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.active (expected no, found yes)
[   82.918875] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in cpu_transcoder (expected -1, found 2)
[   82.918956] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in mst_master_transcoder (expected -1, found 1)
[   82.919036] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in lane_count (expected 0, found 2)
[   82.919117] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dp_m_n (expected tu 0 data 0/0 link 0/0, found tu 44, data 5566405/8388608 link 338249/524288)
[   82.919197] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in output_types (expected 0x00000000, found 0x00000800)
[   82.919303] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in framestart_delay (expected 0, found 1)
[   82.919407] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hdisplay (expected 0, found 3840)
[   82.919506] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_htotal (expected 0, found 3920)
[   82.919597] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_start (expected 0, found 3840)
[   82.919692] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hblank_end (expected 0, found 3920)
[   82.919787] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_start (expected 0, found 3864)
[   82.919884] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_hsync_end (expected 0, found 3880)
[   82.919980] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vdisplay (expected 0, found 2160)
[   82.920072] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_start (expected 0, found 2160)
[   82.920166] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_start (expected 0, found 2163)
[   82.920261] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vsync_end (expected 0, found 2168)
[   82.920354] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vtotal (expected 0, found 2222)
[   82.920450] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_vblank_end (expected 0, found 2222)
[   82.920544] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hdisplay (expected 0, found 3840)
[   82.920635] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_htotal (expected 0, found 3920)
[   82.920728] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_start (expected 0, found 3840)
[   82.920819] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hblank_end (expected 0, found 3920)
[   82.920912] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_start (expected 0, found 3864)
[   82.921006] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_hsync_end (expected 0, found 3880)
[   82.921098] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vdisplay (expected 0, found 2160)
[   82.921176] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_start (expected 0, found 2160)
[   82.921256] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_start (expected 0, found 2163)
[   82.921335] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vsync_end (expected 0, found 2168)
[   82.921416] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vtotal (expected 0, found 2222)
[   82.921499] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_vblank_end (expected 0, found 2222)
[   82.921585] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pixel_multiplier (expected 0, found 1)
[   82.921670] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (1) (expected 0, found 1)
[   82.921753] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.flags (8) (expected 0, found 8)
[   82.921833] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in fec_enable (expected no, found yes)
[   82.921923] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dpll_hw_state  
[   82.922019] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] expected:
[   82.922116] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.922216] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] found:
[   82.922299] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.922379] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in pipe_bpp (expected 0, found 24)
[   82.922458] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.pipe_mode.crtc_clock (expected 0, found 522579)
[   82.922553] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in hw.adjusted_mode.crtc_clock (expected 0, found 522579)
[   82.922650] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in port_clock (expected 0, found 810000)
[   82.922745] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in min_voltage_level (expected 0, found 2)
[   82.922838] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.convert_rgb (expected no, found yes)
[   82.922931] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.line_buf_depth (expected 0, found 9)
[   82.923022] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.bits_per_component (expected 0, found 8)
[   82.923116] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_width (expected 0, found 3840)
[   82.923208] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.pic_height (expected 0, found 2160)
[   82.923343] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_width (expected 0, found 1920)
[   82.923450] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_height (expected 0, found 108)
[   82.923553] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_dec_delay (expected 0, found 984)
[   82.923650] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_xmit_delay (expected 0, found 256)
[   82.923747] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_decrement_interval (expected 0, found 320)
[   82.923828] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.scale_increment_interval (expected 0, found 2653)
[   82.923909] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_scale_value (expected 0, found 10)
[   82.923988] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.first_line_bpg_offset (expected 0, found 15)
[   82.924069] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_min_qp (expected 0, found 3)
[   82.924149] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.flatness_max_qp (expected 0, found 12)
[   82.924229] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_bpg_offset (expected 0, found 190)
[   82.924307] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.nfl_bpg_offset (expected 0, found 288)
[   82.924387] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.initial_offset (expected 0, found 2048)
[   82.924469] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.final_offset (expected 0, found 4336)
[   82.924549] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_model_size (expected 0, found 8192)
[   82.924632] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit0 (expected 0, found 11)
[   82.924712] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.rc_quant_incr_limit1 (expected 0, found 11)
[   82.924792] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.config.slice_chunk_size (expected 0, found 3840)
[   82.924874] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compression_enable (expected no, found yes)
[   82.924956] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.slice_config.streams_per_pipe (expected 0, found 2)
[   82.925037] i915 0000:00:02.0: [drm:intel_pipe_config_compare [i915]] [CRTC:387:pipe C] fastset requirement not met in dsc.compressed_bpp_x16 (expected 0, found 256)
[   82.925117] i915 0000:00:02.0: [drm:intel_atomic_check [i915]] [CRTC:387:pipe C] fastset requirement not met, forcing full modeset
[   82.925219] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] Enabled dbuf slices 0xf -> 0xf (total dbuf slices 0xf), mbus joined? yes->no
[   82.925291] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:151:pipe A] dbuf slices 0xf -> 0x3, ddb (0 - 4096) -> (0 - 2048), active pipes 0x1 -> 0x7
[   82.925362] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:269:pipe B] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (0 - 682), active pipes 0x1 -> 0x7
[   82.925432] i915 0000:00:02.0: [drm:skl_compute_wm [i915]] [CRTC:387:pipe C] dbuf slices 0x0 -> 0xc, ddb (0 - 0) -> (682 - 2048), active pipes 0x1 -> 0x7
[   82.925504] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:35:plane 1A]   ddb (   0 - 4054) -> (   0 - 2006), size 4054 -> 2006
[   82.925573] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:145:cursor A]   ddb (4054 - 4096) -> (2006 - 2048), size   42 ->   42
[   82.925640] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:153:plane 1B]   ddb (   0 -    0) -> (   0 -  646), size    0 ->  646
[   82.925709] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:263:cursor B]   ddb (   0 -    0) -> ( 646 -  682), size    0 ->   36
[   82.925776] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.925844] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   4,   6,   7,  10,  10,   0,   0,   0,   4,    0
[   82.925910] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->   62,  62,  93, 108, 154, 154,   0,   0, 137,  62,  137
[   82.925974] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:153:plane 1B]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  123, 123, 184, 184, 245, 245,   0,   0, 138, 123,  138
[   82.926042] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:271:plane 1C]   ddb (   0 -    0) -> ( 682 - 1979), size    0 -> 1297
[   82.926108] i915 0000:00:02.0: [drm:skl_print_plane_ddb_changes [i915]] [PLANE:381:cursor C]   ddb (   0 -    0) -> (1979 - 2048), size    0 ->   69
[   82.926174] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      level  wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5, wm6, wm7,*twm,*swm,*stwm
[   82.926240] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]      lines    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->    4,   8,  12,  14,  20,  20,   0,   0,   0,   6,    0
[   82.926306] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]     blocks    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  122, 243, 364, 425, 606, 606,   0,   0, 257, 183,  257
[   82.926373] i915 0000:00:02.0: [drm:skl_print_plane_wm_changes [i915]] [PLANE:271:plane 1C]    min_ddb    0,   0,   0,   0,   0,   0,   0,   0,   0,   0,    0 ->  243, 364, 485, 606, 727, 727,   0,   0, 258, 364,  364
[   82.926442] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:269:pipe B] data rate 594000 num active planes 1
[   82.926527] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] [CRTC:387:pipe C] data rate 2090316 num active planes 1
[   82.926610] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 0: max bw 9299 required 3499
[   82.926691] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 1: max bw 10925 required 3499
[   82.926772] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 2: max bw 11707 required 3499
[   82.926853] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] QGV point 3: max bw 10508 required 3499
[   82.926933] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 0: max bw 34133 required 3499
[   82.927012] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 1: max bw 51200 required 3499
[   82.927091] i915 0000:00:02.0: [drm:intel_bw_atomic_check [i915]] PSF GV point 2: max bw 51200 required 3499
[   82.927173] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min cdclk: 0 kHz -> 192000 kHz
[   82.927258] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:269:pipe B] min voltage level: 0 -> 2
[   82.927384] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min cdclk: 0 kHz -> 263156 kHz
[   82.927485] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] [CRTC:387:pipe C] min voltage level: 0 -> 2
[   82.927583] i915 0000:00:02.0: [drm:intel_cdclk_update_dbuf_bw_min_cdclk [i915]] dbuf bandwidth min cdclk: 10112 kHz -> 97984 kHz
[   82.927681] i915 0000:00:02.0: [drm:intel_modeset_pipe [i915]] [CRTC:151:pipe A] Full modeset due to CDCLK change
[   82.927778] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] Modeset required for cdclk change
[   82.927871] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New cdclk calculated to be logical 307200 kHz, actual 307200 kHz
[   82.927965] i915 0000:00:02.0: [drm:intel_cdclk_atomic_check [i915]] New voltage level calculated to be logical 2, actual 2
[   82.928059] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TBT PLL
[   82.928153] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TBT PLL
[   82.928244] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:269:pipe B] allocated TC PLL 3
[   82.928325] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:269:pipe B] reserving TC PLL 3
[   82.928405] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] sharing existing TBT PLL (pipe mask 0x2, active 0x0)
[   82.928486] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TBT PLL
[   82.928566] i915 0000:00:02.0: [drm:intel_find_dpll [i915]] [CRTC:387:pipe C] sharing existing TC PLL 3 (pipe mask 0x2, active 0x0)
[   82.928643] i915 0000:00:02.0: [drm:intel_dpll_crtc_get [i915]] [CRTC:387:pipe C] reserving TC PLL 3
[   82.928722] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:151:pipe A] enable: yes [modeset]
[   82.928805] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
[   82.928888] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: A, pipe bpp: 24, dithering: 0
[   82.928969] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: <invalid>
[   82.929049] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.929132] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.929214] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.929294] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 7539960, data_n: 8388608, link_m: 314165, link_n: 524288, tu: 64
[   82.929374] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.929454] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: disabled, enhanced framing: enabled
[   82.929534] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.929616] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.929696] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.929775] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 0, infoframes: 0, infoframes enabled: 0x0
[   82.929857] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.929937] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.930016] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1260, vmax: 1260, flipline: 1260, pipeline full: 0, guardband: 58 vsync start: 57, vsync end: 51
[   82.930098] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1202, vmax vblank: 1202, vmin vtotal: 1260, vmax vtotal: 1260
[   82.930179] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.930261] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.930342] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x48 0x9
[   82.930422] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.930501] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1200": 60 161790 1920 1968 2000 2140 1200 1203 1209 1260 0x40 0x9
[   82.930582] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=161790, hd=1920 hb=1920-2140 hs=1968-2000 ht=2140, vd=1200 vb=1200-1260 vs=1203-1209 vt=1260, flags=0x9
[   82.930662] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 270000, pixel rate 161790, min cdclk 80895, min voltage level 0
[   82.930743] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 106, ips linetime: 0
[   82.930821] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.930900] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1200+0+0
[   82.930979] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.931061] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.931141] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.931220] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
[   82.931309] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.931409] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.931508] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.931602] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.931689] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.931769] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.931849] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.931929] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.932008] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.932089] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.932170] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.932251] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.932330] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:35:plane 1A] fb: [FB:598] 1920x1200 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.932412] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.932493] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1200.000000+0.000000+0.000000 dst: 1920x1200+0+0
[   82.932576] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:65:plane 2A] fb: [NOFB], visible: no
[   82.932658] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:95:plane 3A] fb: [NOFB], visible: no
[   82.932739] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:125:plane 4A] fb: [NOFB], visible: no
[   82.932819] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:135:plane 5A] fb: [NOFB], visible: no
[   82.932899] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:145:cursor A] fb: [FB:597] 64x64 format = AR24 little-endian (0x34325241) modifier = 0x0, visible: yes
[   82.932981] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.933064] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 64.000000x64.000000+0.000000+0.000000 dst: 64x64+677+941
[   82.933147] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:269:pipe B] enable: yes [modeset]
[   82.933230] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.933312] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: B, pipe bpp: 18, dithering: 1
[   82.933393] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   82.933474] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.933556] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.933638] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.933719] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 1779513, data_n: 8388608, link_m: 96119, link_n: 524288, tu: 14
[   82.933799] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.933880] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   82.933958] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.934038] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.934118] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.934198] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.934279] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 06 00 65 14 00 01 00 00 00 00 00 00 00 00
[   82.934361] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 04 72 1a 07 43 42 32 37 32 09 07 07
[   82.934445] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.934526] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.934609] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 1125, vmax: 1125, flipline: 1125, pipeline full: 0, guardband: 42 vsync start: 41, vsync end: 36
[   82.934691] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 1083, vmax vblank: 1083, vmin vtotal: 1125, vmax vtotal: 1125
[   82.934771] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.934853] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.934936] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.935017] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.935097] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x40 0x5
[   82.935181] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=148500, hd=1920 hb=1920-2200 hs=2008-2052 ht=2200, vd=1080 vb=1080-1125 vs=1084-1089 vt=1125, flags=0x5
[   82.935290] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 148500, min cdclk 192000, min voltage level 2
[   82.935399] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 119, ips linetime: 0
[   82.935497] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.935591] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 1920x1080+0+0
[   82.935678] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.935757] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.935840] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.935921] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.936003] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.936085] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.936166] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.936248] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.936330] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.936413] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.936494] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.936574] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.936652] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.936733] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.936813] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.936892] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.936972] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:153:plane 1B] fb: [FB:564] 1920x1080 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.937054] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.937134] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
[   82.937212] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:183:plane 2B] fb: [NOFB], visible: no
[   82.937290] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:213:plane 3B] fb: [NOFB], visible: no
[   82.937367] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:243:plane 4B] fb: [NOFB], visible: no
[   82.937450] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:253:plane 5B] fb: [NOFB], visible: no
[   82.937530] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:263:cursor B] fb: [NOFB], visible: no
[   82.937609] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [CRTC:387:pipe C] enable: yes [modeset]
[   82.937690] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] active: yes, output_types: DP_MST (0x800), output format: RGB, sink format: RGB
[   82.937770] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] cpu_transcoder: C, pipe bpp: 24, dithering: 0
[   82.937852] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] MST master transcoder: B
[   82.937932] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
[   82.938012] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] joiner: no, pipes: 0x0
[   82.938091] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] splitter: disabled, link count 0, overlap 0
[   82.938169] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m_n: lanes: 2; data_m: 5566405, data_n: 8388608, link_m: 338249, link_n: 524288, tu: 44
[   82.938249] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
[   82.938341] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] fec: enabled, enhanced framing: disabled
[   82.938439] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sdp split: disabled
[   82.938530] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] psr: disabled, selective update: disabled, panel replay: disabled, selective fetch: disabled
[   82.938614] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] minimum hblank: 0
[   82.938697] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] audio: 1, infoframes: 0, infoframes enabled: 0x0
[   82.938782] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 10 00 07 00 67 14 00 01 00 00 00 00 00 00 00 00
[   82.938864] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ELD: 4c 2d 35 0f 55 33 32 4a 35 39 78 09 07 07 00 00
[   82.938945] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] scanline offset: 1
[   82.939023] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] framestart delay: 1, MSA timing delay: 0, set context latency: 0
[   82.939104] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: no, fixed rr: yes, vmin: 2222, vmax: 2222, flipline: 2222, pipeline full: 0, guardband: 60 vsync start: 59, vsync end: 54
[   82.939184] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: vmin vblank: 2162, vmax vblank: 2162, vmin vtotal: 2222, vmax vtotal: 2222
[   82.939268] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] vrr: dc balance: no, vmin: 0 vmax: 0 guardband: 0, slope: 0 max increase: 0 max decrease: 0 vblank target: 0
[   82.939380] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] requested mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.939485] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] adjusted mode: "3840x2160": 60 522580 3840 3864 3880 3920 2160 2163 2168 2222 0x48 0x9
[   82.939582] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.939673] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe mode: "3840x2160": 60 522579 3840 3864 3880 3920 2160 2163 2168 2222 0x40 0x9
[   82.939756] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] crtc timings: clock=522579, hd=3840 hb=3840-3920 hs=3864-3880 ht=3920, vd=2160 vb=2160-2222 vs=2163-2168 vt=2222, flags=0x9
[   82.939840] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] port clock: 810000, pixel rate 522579, min cdclk 263156, min voltage level 2
[   82.939922] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] linetime: 61, ips linetime: 0
[   82.940006] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0, sharpness_strength: 0
[   82.940090] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe src: 3840x2160+0+0
[   82.940171] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pch pfit: 0x0+0+0, disabled, force thru: no
[   82.940252] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] sharpness strength: 0, sharpness tap size: 0, sharpness enable: 0
[   82.940333] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] ips: 0, double wide: 0, drrs: 0
[   82.940415] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dpll_hw_state: cfgcr0: 0x0, cfgcr1: 0x0, div0: 0x0, mg_refclkin_ctl: 0x100, hg_clktop2_coreclkctl1: 0x500, mg_clktop2_hsclkctl: 0x100, mg_pll_div0: 0x84269, mg_pll_div2: 0x1c0027, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x40002000, mg_pll_bias: 0x5e000000, mg_pll_tdc_coldst_bias: 0x52
[   82.940497] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
[   82.940578] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pre csc lut: 0 entries, post csc lut: 0 entries
[   82.940662] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: pre offsets: 0x0000 0x0000 0x0000
[   82.940746] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.940826] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.940906] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: coefficients: 0x0000 0x0000 0x0000
[   82.940988] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] output csc: post offsets: 0x0000 0x0000 0x0000
[   82.941069] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: pre offsets: 0x0000 0x0000 0x0000
[   82.941149] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.941228] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.941309] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: coefficients: 0x0000 0x0000 0x0000
[   82.941390] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] pipe csc: post offsets: 0x0000 0x0000 0x0000
[   82.941470] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-dss: compressed-bpp:16.0000, slice-count: 2, num_streams: 2
[   82.941550] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: version: 1.1, picture: w=3840, h=2160, slice: count=0, w=1920, h=108, size=3840
[   82.941630] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: mode: block-pred=no, vbr=no, rgb=yes, simple-422=no, native-422=no, native-420=no
[   82.941710] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: color-depth: uncompressed-bpc=8, compressed-bpp=16.0000 line-buf-bpp=9
[   82.941792] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-model: size=8192, bits=19840, mux-word-size: 48, initial-delays: xmit=256, dec=984
[   82.941872] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: offsets: initial=2048, final=4336, slice-bpg=190
[   82.941953] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: line-bpg-offsets: first=15, non-first=288, second=0, non-second=0, second-adj=0
[   82.942031] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-tgt-offsets: low=0, high=0, rc-edge-factor: 0, rc-quant-incr-limits: [0]=11, [1]=11
[   82.942112] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: initial-scale: 10, scale-intervals: increment=2653, decrement=320
[   82.942190] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: flatness: min-qp=3, max-qp=12
[   82.942270] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-level:         0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14
[   82.942351] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-buf-thresh:   14, 28, 42, 56, 70, 84, 98,105,112,119,121,123,125,126
[   82.942430] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-min-qp:        0,  0,  1,  1,  3,  3,  3,  3,  3,  3,  5,  5,  5,  7, 10
[   82.942512] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-max-qp:        2,  4,  5,  6,  7,  7,  7,  8,  8,  9,  9,  9, 10, 10, 11
[   82.942594] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] dsc-cfg: rc-bpg-offset:   10,  8,  6,  4,  2,  0, 62, 60, 58, 56, 54, 54, 52, 52, 52
[   82.942676] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:271:plane 1C] fb: [FB:575] 3840x2160 format = AR30 little-endian (0x30335241) modifier = 0x100000000000008, visible: yes
[   82.942756] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	rotation: 0x1, scaler: -1, scaling_filter: 0
[   82.942837] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] 	src: 3840.000000x2160.000000+0.000000+0.000000 dst: 3840x2160+0+0
[   82.942918] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:301:plane 2C] fb: [NOFB], visible: no
[   82.942999] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:331:plane 3C] fb: [NOFB], visible: no
[   82.943079] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:361:plane 4C] fb: [NOFB], visible: no
[   82.943158] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:371:plane 5C] fb: [NOFB], visible: no
[   82.943244] i915 0000:00:02.0: [drm:intel_crtc_state_dump [i915]] [PLANE:381:cursor C] fb: [NOFB], visible: no
[   82.944655] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_B
[   82.944800] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling PW_C
[   82.945035] i915 0000:00:02.0: [drm:intel_edp_backlight_off [i915]] 
[   83.151321] i915 0000:00:02.0: [drm:intel_backlight_set_pwm_level [i915]] [CONNECTOR:508:eDP-1] set backlight PWM = 0
[   83.152274] i915 0000:00:02.0: [drm:intel_disable_transcoder [i915]] disabling pipe A
[   83.162453] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00600 AUX <- (ret=  1) 02
[   83.162573] i915 0000:00:02.0: [drm:intel_pps_off_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turn panel power off
[   83.163052] i915 0000:00:02.0: [drm:intel_pps_off_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 wait for panel power off time
[   83.163586] i915 0000:00:02.0: [drm:wait_panel_status [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 mask: 0xb0000000 value: 0x00000000 PP_STATUS: 0xa0000002 PP_CONTROL: 0x00000060
[   83.207591] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port G/TC#4: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[   83.207698] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port E/TC#2: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[   83.207805] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port D/TC#1: TC port mode reset (tbt-alt -> disconnected) pin assignment: - max lanes: 4
[   83.218464] i915 0000:00:02.0: [drm:icp_irq_handler [i915]] hotplug event received, stat 0x00010000, dig 0x0000008a, pins 0x00000010, long 0x00000010
[   83.219045] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:507:DDI A/PHY A] - long
[   83.219510] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] Received HPD interrupt on PIN 4 - cnt: 10
[   83.220080] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] ignoring long hpd on eDP [ENCODER:507:DDI A/PHY A]
[   83.224197] i915 0000:00:02.0: [drm:intel_pps_off_unlocked [i915]] Wait complete
[   83.224521] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling DDI_IO_A
[   83.224890] i915 0000:00:02.0: [drm:intel_dpll_disable [i915]] disable DPLL 0 (active 0x1, on? 1) for [CRTC:151:pipe A]
[   83.225222] i915 0000:00:02.0: [drm:intel_dpll_disable [i915]] disabling DPLL 0
[   83.225534] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling AUX_A
[   83.225871] i915 0000:00:02.0: [drm:intel_set_cdclk [i915]] Pre changing CDCLK to 307200 kHz, VCO 614400 kHz, ref 38400 kHz, bypass 19200 kHz, voltage level 2
[   83.226253] i915 0000:00:02.0: [drm:intel_set_cdclk [i915]] aud_ts_cdclk set to M=60, N=768
[   83.226563] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:507:DDI A/PHY A]
[   83.226853] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:516:DDI B/PHY B]
[   83.227121] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:525:DDI TC1/PHY TC1]
[   83.227405] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:527:DP-MST A]
[   83.227671] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:528:DP-MST B]
[   83.227927] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:529:DP-MST C]
[   83.228176] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:530:DP-MST D]
[   83.228413] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:535:DDI TC2/PHY TC2]
[   83.228662] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:537:DP-MST A]
[   83.228901] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:538:DP-MST B]
[   83.229136] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:539:DP-MST C]
[   83.229361] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:540:DP-MST D]
[   83.229582] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:544:DDI TC3/PHY TC3]
[   83.229801] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:546:DP-MST A]
[   83.229954] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:547:DP-MST B]
[   83.230043] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:548:DP-MST C]
[   83.230135] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:549:DP-MST D]
[   83.230224] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:553:DDI TC4/PHY TC4]
[   83.230313] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:555:DP-MST A]
[   83.230401] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:556:DP-MST B]
[   83.230488] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:557:DP-MST C]
[   83.230576] i915 0000:00:02.0: [drm:intel_modeset_verify_disabled [i915]] [ENCODER:558:DP-MST D]
[   83.230664] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:517:HDMI-A-1]
[   83.230758] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:526:DP-1]
[   83.230847] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:536:DP-2]
[   83.230938] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:545:DP-3]
[   83.231028] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:554:DP-4]
[   83.231120] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:509:DP-5]
[   83.231216] i915 0000:00:02.0: [drm:intel_dbuf_mdclk_cdclk_ratio_update [i915]] Updating dbuf ratio to 2 (mbus joined: no)
[   83.231303] i915 0000:00:02.0: [drm:intel_dbuf_mbus_join_update [i915]] Changing mbus joined: yes -> no (pipe: *)
[   83.231394] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling AUX_A
[   83.231506] i915 0000:00:02.0: [drm:intel_dpll_enable [i915]] enable DPLL 0 (active 0x1, on? 0) for [CRTC:151:pipe A]
[   83.231608] i915 0000:00:02.0: [drm:intel_dpll_enable [i915]] enabling DPLL 0
[   83.231734] i915 0000:00:02.0: [drm:intel_pps_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turn panel power on
[   83.231828] i915 0000:00:02.0: [drm:wait_panel_power_cycle [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 wait for panel power cycle (493 ms remaining)
[   83.751512] i915 0000:00:02.0: [drm:intel_power_well_disable [i915]] disabling AUX_USBC3
[   83.752226] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port F/TC#3: TC port mode reset (dp-alt -> disconnected) pin assignment: D max lanes: 2
[   83.755586] i915 0000:00:02.0: [drm:wait_panel_status [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 mask: 0xb800000f value: 0x00000000 PP_STATUS: 0x08000001 PP_CONTROL: 0x00000060
[   83.826088] i915 0000:00:02.0: [drm:intel_pps_on_unlocked [i915]] Wait complete
[   83.826824] i915 0000:00:02.0: [drm:intel_pps_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 wait for panel power on
[   83.827481] i915 0000:00:02.0: [drm:wait_panel_status [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 mask: 0xb000000f value: 0x80000008 PP_STATUS: 0x9000000a PP_CONTROL: 0x00000063
[   83.958187] i915 0000:00:02.0: [drm:icp_irq_handler [i915]] hotplug event received, stat 0x00010000, dig 0x0000008a, pins 0x00000010, long 0x00000010
[   83.958897] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:507:DDI A/PHY A] - long
[   83.959453] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] Received HPD interrupt on PIN 4 - cnt: 20
[   83.960126] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] ignoring long hpd on eDP [ENCODER:507:DDI A/PHY A]
[   84.043321] i915 0000:00:02.0: [drm:intel_pps_on_unlocked [i915]] Wait complete
[   84.043763] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling DDI_IO_A
[   84.044310] i915 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turning VDD on
[   84.044717] i915 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x0000006b
[   84.045200] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00300 AUX -> (ret=  3) 00 00 00
[   84.045463] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00300 AUX <- (ret=  3) 00 aa 01
[   84.045696] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00600 AUX <- (ret=  1) 01
[   84.046048] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00000 AUX -> (ret= 15) 11 0a 82 41 00 00 01 40 02 02 06 00 00 0b 00
[   84.046077] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX A/DDI A/PHY A: DPCD: 11 0a 82 41 00 00 01 40 02 02 06 00 00 0b 00
[   84.046117] i915 0000:00:02.0: [drm:intel_dp_start_link_train [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] Using LINK_BW_SET value 0a
[   84.046583] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00107 AUX <- (ret=  2) 80 01
[   84.046837] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00100 AUX <- (ret=  2) 0a 82
[   84.046861] i915 0000:00:02.0: [drm:intel_dp_set_signal_levels [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] 8b/10b, lanes: 2, vswing levels: 0/0/0/0, pre-emphasis levels: 0/0/0/0
[   84.047128] i915 0000:00:02.0: [drm:intel_dp_program_link_training_pattern [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] Using DP training pattern TPS1
[   84.047571] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00102 AUX <- (ret=  3) 21 00 00
[   84.047992] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00202 AUX -> (ret=  6) 11 00 80 02 11 00
[   84.048013] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] Clock recovery OK
[   84.048194] i915 0000:00:02.0: [drm:intel_dp_program_link_training_pattern [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] Using DP training pattern TPS2
[   84.048595] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00102 AUX <- (ret=  3) 22 00 00
[   84.049359] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00202 AUX -> (ret=  6) 77 00 81 02 11 00
[   84.049379] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] Channel EQ done. DP Training successful
[   84.049517] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] [CONNECTOR:508:eDP-1][ENCODER:507:DDI A/PHY A][DPRX] Link Training passed at link rate = 270000, lane count = 2
[   84.049840] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX A/DDI A/PHY A: 0x00102 AUX <- (ret=  1) 00
[   84.050028] i915 0000:00:02.0: [drm:intel_enable_transcoder [i915]] enabling pipe A
[   84.050247] i915 0000:00:02.0: [drm:intel_edp_backlight_on [i915]] 
[   84.050373] i915 0000:00:02.0: [drm:intel_backlight_enable [i915]] pipe A
[   84.050560] i915 0000:00:02.0: [drm:intel_backlight_set_pwm_level [i915]] [CONNECTOR:508:eDP-1] set backlight PWM = 13643
[   84.167136] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling AUX_USBC3
[   84.167778] i915 0000:00:02.0: [drm:intel_tc_port_reset_mode [i915]] Port F/TC#3: TC port mode reset (disconnected -> dp-alt) pin assignment: D max lanes: 2
[   84.168249] i915 0000:00:02.0: [drm:intel_dpll_enable [i915]] enable TC PLL 3 (active 0x2, on? 0) for [CRTC:269:pipe B]
[   84.168756] i915 0000:00:02.0: [drm:intel_dpll_enable [i915]] enabling TC PLL 3
[   84.169304] i915 0000:00:02.0: [drm:mst_stream_pre_enable [i915]] active MST streams 0 -> 1
[   84.170034] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00600 AUX <- (ret=  1) 01
[   84.170096] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 00000000b4779840 (2)
[   84.170145] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=2 seqno=0 state=QUEUED path_msg=1 dst=00
[   84.170188] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=POWER_UP_PHY contents:
[   84.170225] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2
[   84.170692] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret=  6) 10 43 c7 24 20 3d
[   84.209679] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   84.210307] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   84.210830] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   84.211586] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   84.211643] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   84.212595] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 43 c7 24 20 3d 00 00 00 00 00 00 00 00 00 00
[   84.212639] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   84.212690] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   84.212712] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000b4779840 (1)
[   84.212841] i915 0000:00:02.0: [drm:intel_power_well_enable [i915]] enabling DDI_IO_TC3
[   84.213534] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   84.213920] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x03050 AUX <- (ret=  1) 00
[   84.214336] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   84.214402] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   84.214677] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x03051 AUX <- (ret=  1) 00
[   84.215054] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x03052 AUX -> (ret=  1) 00
[   84.215433] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x03052 AUX <- (ret=  1) 00
[   84.215813] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00120 AUX <- (ret=  1) 01
[   84.216183] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00280 AUX <- (ret=  1) 03
[   84.216611] i915 0000:00:02.0: [drm:drm_dp_dpcd_probe [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  1) 14
[   84.217445] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   84.218285] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   84.218327] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   84.218376] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   84.218941] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0000 AUX -> (ret=  8) 14 1e 80 aa 02 00 00 00
[   84.218983] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][DPRX] LTTPR common capabilities: 14 1e 80 aa 02 00 00 00
[   84.219767] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) 55
[   84.220286] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0003 AUX <- (ret=  1) aa
[   84.220745] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0020 AUX -> (ret=  3) 03 03 00
[   84.220789] i915 0000:00:02.0: [drm:intel_dp_init_lttpr_and_dprx_caps [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][LTTPR 1] PHY capabilities: 03 03 00
[   84.221763] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf003d AUX -> (ret= 12) 00 00 00 00 00 00 00 00 00 00 00 00
[   84.221787] i915 0000:00:02.0: [drm:drm_dp_dump_desc [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: LTTPR 1: OUI 00-00-00 dev-ID  HW-rev 0.0 SW-rev 0.0 quirks 0x0000
[   84.222590] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00000 AUX -> (ret= 15) 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   84.223425] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02200 AUX -> (ret= 15) 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   84.223472] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: Base DPCD: 12 14 c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   84.223523] i915 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: DPCD: 14 1e c2 81 01 11 01 83 2a 3f 04 00 00 00 84
[   84.223747] i915 0000:00:02.0: [drm:intel_dp_start_link_train [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][DPRX] Using LINK_BW_SET value 1e
[   84.224495] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00107 AUX <- (ret=  2) 00 01
[   84.224980] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00100 AUX <- (ret=  2) 1e 02
[   84.225006] i915 0000:00:02.0: [drm:intel_dp_set_signal_levels [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][LTTPR 1] 8b/10b, lanes: 2, vswing levels: 0/0/0/0, pre-emphasis levels: 0/0/0/0
[   84.225408] i915 0000:00:02.0: [drm:intel_dp_program_link_training_pattern [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][LTTPR 1] Using DP training pattern TPS1
[   84.226194] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0010 AUX <- (ret=  3) 21 00 00
[   84.226818] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0030 AUX -> (ret=  5) 11 00 80 22 22
[   84.226850] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][LTTPR 1] Clock recovery OK
[   84.227529] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0020 AUX -> (ret=  1) 03
[   84.227551] i915 0000:00:02.0: [drm:intel_dp_program_link_training_pattern [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][LTTPR 1] Using DP training pattern TPS4
[   84.228116] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0010 AUX <- (ret=  3) 07 00 00
[   84.243780] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0030 AUX -> (ret=  5) 11 00 81 22 22
[   84.243808] i915 0000:00:02.0: [drm:intel_dp_get_adjust_train [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][LTTPR 1] 8b/10b, lanes: 2, vswing request: 2/2/2/2, pre-emphasis request: 0/0/0/0
[   84.244223] i915 0000:00:02.0: [drm:intel_dp_set_signal_levels [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][LTTPR 1] 8b/10b, lanes: 2, vswing levels: 2/2/2/2, pre-emphasis levels: 0/0/0/0
[   84.244769] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0011 AUX <- (ret=  2) 02 02
[   84.260379] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0030 AUX -> (ret=  5) 77 00 01 22 22
[   84.260414] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][LTTPR 1] Channel EQ done. DP Training successful
[   84.260621] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][LTTPR 1] Link Training passed at link rate = 810000, lane count = 2
[   84.261275] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0xf0010 AUX <- (ret=  1) 00
[   84.261300] i915 0000:00:02.0: [drm:intel_dp_set_signal_levels [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][DPRX] 8b/10b, lanes: 2, vswing levels: 0/0/0/0, pre-emphasis levels: 0/0/0/0
[   84.261569] i915 0000:00:02.0: [drm:intel_dp_program_link_training_pattern [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][DPRX] Using DP training pattern TPS1
[   84.262715] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX <- (ret=  3) 21 00 00
[   84.263287] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00202 AUX -> (ret=  6) 00 00 00 00 22 22
[   84.263317] i915 0000:00:02.0: [drm:intel_dp_get_adjust_train [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][DPRX] 8b/10b, lanes: 2, vswing request: 2/2/2/2, pre-emphasis request: 0/0/0/0
[   84.263485] i915 0000:00:02.0: [drm:intel_dp_set_signal_levels [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][DPRX] 8b/10b, lanes: 2, vswing levels: 2/2/2/2, pre-emphasis levels: 0/0/0/0
[   84.264543] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00103 AUX <- (ret=  2) 02 02
[   84.265143] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00202 AUX -> (ret=  6) 11 00 00 00 22 22
[   84.265179] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][DPRX] Clock recovery OK
[   84.265479] i915 0000:00:02.0: [drm:intel_dp_program_link_training_pattern [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][DPRX] Using DP training pattern TPS4
[   84.266505] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX <- (ret=  3) 07 02 02
[   84.284953] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00202 AUX -> (ret=  6) 77 00 81 00 22 22
[   84.284979] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][DPRX] Channel EQ done. DP Training successful
[   84.285280] i915 0000:00:02.0: [drm:intel_dp_link_train_phy [i915]] [CONNECTOR:545:DP-3][ENCODER:544:DDI TC3/PHY TC3][DPRX] Link Training passed at link rate = 810000, lane count = 2
[   84.285877] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00102 AUX <- (ret=  1) 00
[   84.286557] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 00000000b4779840 (2)
[   84.286939] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x002c0 AUX <- (ret=  1) 01
[   84.287330] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x001c0 AUX <- (ret=  3) 02 01 0e
[   84.287721] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x002c0 AUX -> (ret=  1) 01
[   84.287768] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000b4779840 (1)
[   84.288397] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x002c0 AUX -> (ret=  1) 03
[   84.288746] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00280 AUX -> (ret=  1) 01
[   84.288759] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 00000000b4779840 (2)
[   84.288773] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   84.288788] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=6 seqno=0 state=QUEUED path_msg=1 dst=00
[   84.288803] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=ALLOCATE_PAYLOAD contents:
[   84.288816] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=2 vcpi=2 pbn=420 sdp_streams=1 00
[   84.289331] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret= 10) 10 47 c0 11 21 02 01 a4 00 7a
[   84.327241] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   84.327441] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   84.327597] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   84.328162] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 14 00 00
[   84.328196] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 14 00 00
[   84.328940] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 46 c5 11 20 02 01 a4 b1 00 00 00 00 00 00 00
[   84.328969] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   84.328998] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   84.329008] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   84.329031] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 00000000b4779840 (1)
[   84.329060] i915 0000:00:02.0: [drm:intel_enable_transcoder [i915]] enabling pipe B
[   84.329380] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 14 00 00
[   84.329772] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   84.329799] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   84.345955] i915 0000:00:02.0: [drm:intel_dpll_enable [i915]] enable TC PLL 3 (active 0x6, on? 1) for [CRTC:387:pipe C]
[   84.346118] i915 0000:00:02.0: [drm:mst_stream_pre_enable [i915]] active MST streams 1 -> 2
[   84.346200] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 000000004b112a7e (2)
[   84.346218] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=2 seqno=0 state=QUEUED path_msg=1 dst=00
[   84.346228] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=POWER_UP_PHY contents:
[   84.346237] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3
[   84.346647] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret=  6) 10 43 c7 24 30 6f
[   84.349382] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   84.349530] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   84.349673] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   84.350174] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   84.350199] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   84.350871] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 43 c7 24 30 6f 00 00 00 00 00 00 00 00 00 00
[   84.350889] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   84.350909] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   84.350915] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 000000004b112a7e (1)
[   84.351277] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   84.351597] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00160 AUX -> (ret=  1) 00
[   84.351955] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   84.351970] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   84.352265] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x00160 AUX <- (ret=  1) 01
[   84.352276] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 000000004b112a7e (2)
[   84.352588] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x002c0 AUX <- (ret=  1) 01
[   84.352935] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x001c0 AUX <- (ret=  3) 01 0f 2c
[   84.353242] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x002c0 AUX -> (ret=  1) 01
[   84.353251] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 000000004b112a7e (1)
[   84.353592] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x002c0 AUX -> (ret=  1) 03
[   84.353602] i915 0000:00:02.0: [drm:drm_dp_mst_topology_get_port_validated [drm_display_helper]] port 000000004b112a7e (2)
[   84.353612] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   84.353623] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] txmsg cur_offset=0 cur_len=5 seqno=0 state=QUEUED path_msg=1 dst=00
[   84.353634] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 	type=ALLOCATE_PAYLOAD contents:
[   84.353643] i915 0000:00:02.0: [drm:drm_dp_queue_down_tx [drm_display_helper]] [dp_mst] 		port=3 vcpi=1 pbn=1320 sdp_streams=0 
[   84.354103] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01000 AUX <- (ret=  9) 10 46 c5 11 30 01 05 28 5b
[   84.387764] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   84.387902] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   84.388042] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   84.388508] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 10 00 00
[   84.388530] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 10 00 00
[   84.389193] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x01400 AUX -> (ret= 16) 10 46 c5 11 30 01 05 28 5b 00 00 00 00 00 00 00
[   84.389209] i915 0000:00:02.0: [drm:drm_dp_mst_topology_try_get_mstb [drm_display_helper]] mstb 0000000051429a7b (3)
[   84.389227] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (2)
[   84.389314] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_mstb [drm_display_helper]] mstb 0000000051429a7b (1)
[   84.389329] i915 0000:00:02.0: [drm:drm_dp_mst_topology_put_port [drm_display_helper]] port 000000004b112a7e (1)
[   84.389350] i915 0000:00:02.0: [drm:intel_enable_transcoder [i915]] enabling pipe C
[   84.389583] i915 0000:00:02.0: [drm:drm_dp_dpcd_write [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02003 AUX <- (ret=  3) 10 00 00
[   84.389951] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   84.389964] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   84.410684] i915 0000:00:02.0: [drm:gen11_hpd_irq_handler [i915]] hotplug event received, stat 0x00040000, dig 0x00008988, pins 0x00000800, long 0x00000000
[   84.410886] i915 0000:00:02.0: [drm:intel_hpd_irq_handler [i915]] digital hpd on [ENCODER:544:DDI TC3/PHY TC3] - short
[   84.411103] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] got hpd irq on [ENCODER:544:DDI TC3/PHY TC3] - short
[   84.411573] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x02002 AUX -> (ret=  4) 02 00 00 00
[   84.411596] i915 0000:00:02.0: [drm:intel_dp_hpd_pulse [i915]] DPRX ESI: 02 00 00 00
[   84.423180] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:508:eDP-1]
[   84.423414] i915 0000:00:02.0: [drm:intel_modeset_verify_crtc [i915]] [CRTC:151:pipe A]
[   84.423601] i915 0000:00:02.0: [drm:intel_audio_codec_enable [i915]] [CONNECTOR:567:DP-6][ENCODER:547:DP-MST B] Enable audio codec on [CRTC:269:pipe B], 28 bytes ELD
[   84.429608] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:567:DP-6]
[   84.429855] i915 0000:00:02.0: [drm:intel_modeset_verify_crtc [i915]] [CRTC:269:pipe B]
[   84.430126] i915 0000:00:02.0: [drm:intel_audio_codec_enable [i915]] [CONNECTOR:570:DP-7][ENCODER:548:DP-MST C] Enable audio codec on [CRTC:387:pipe C], 32 bytes ELD
[   84.439618] i915 0000:00:02.0: [drm:verify_connector_state [i915]] [CONNECTOR:570:DP-7]
[   84.439882] i915 0000:00:02.0: [drm:intel_modeset_verify_crtc [i915]] [CRTC:387:pipe C]
[   84.441372] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   84.442032] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:572]
[   84.455975] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   84.456500] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   84.598513] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   84.601793] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   84.612423] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:572]
[   84.619667] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:574]
[   84.627673] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   84.636627] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   84.649671] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   84.650668] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:572]
[   84.676674] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:574]
[   84.677412] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   84.683793] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   84.684621] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:575]
[   84.697391] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:577]
[   84.700731] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   84.713212] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   84.716460] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:572]
[   84.717530] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   84.734426] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   84.746707] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   84.749490] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:574]
[   84.750933] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   84.763192] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:575]
[   84.766788] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   84.768611] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   84.779913] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   84.783958] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:572]
[   84.785403] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   84.796575] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:574]
[   84.800072] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:575]
[   84.801648] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   84.813193] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   84.817394] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   84.817948] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   84.830089] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:572]
[   84.834586] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:574]
[   84.835800] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   84.852650] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   84.854036] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   84.867906] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   84.868461] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   84.884515] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   84.902387] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   84.903321] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:574]
[   84.918303] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   84.919056] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   84.934755] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   84.952122] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   84.970077] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   84.971071] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:574]
[   84.985656] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   84.986803] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   85.021992] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   85.184637] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   85.201097] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   85.217688] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   85.236899] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   85.253056] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   85.267948] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   85.277707] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   85.370954] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   85.419463] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   85.469839] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   85.791935] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   85.856799] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   86.033973] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   86.055660] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX A/DDI A/PHY A: 0x00202 AUX -> (ret=  6) 77 00 01 03 11 00
[   86.103808] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   86.153101] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   86.170478] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   86.233843] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   86.239888] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   86.304581] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   86.311941] i915 0000:00:02.0: [drm:drm_dp_dpcd_read [drm_display_helper]] AUX USBC3/DDI TC3/PHY TC3: 0x0200c AUX -> (ret=  4) 77 00 01 01
[   86.372367] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   86.422687] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   86.445641] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   86.486371] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   86.557837] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   86.621759] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   86.685185] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   86.880337] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   86.924011] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   87.006076] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   87.041811] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   87.121650] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   87.146123] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   87.266353] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   87.425013] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   87.462048] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   87.581671] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   87.646506] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   87.710631] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   87.777472] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   87.854805] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   87.908311] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   87.924289] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   87.964710] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   88.024172] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   88.030761] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   88.088808] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   88.104722] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   88.160075] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   88.230394] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   88.293186] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   88.424867] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   88.489281] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   88.647423] i915 0000:00:02.0: [drm:intel_pps_vdd_off_sync_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 turning VDD off
[   88.648006] i915 0000:00:02.0: [drm:intel_pps_vdd_off_sync_unlocked [i915]] [ENCODER:507:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x00000067
[   88.782195] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   88.864454] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   88.925244] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   89.041750] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   89.055171] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   89.072525] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   89.189044] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   89.248172] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   89.310666] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   89.424830] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   89.435218] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   89.629784] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   89.700839] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   89.758514] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   89.822154] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   89.901700] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   89.925468] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   89.949745] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   90.022389] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   90.039725] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   90.041364] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   90.085114] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   90.150454] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   90.180727] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   90.194367] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   90.222057] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   90.271522] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   90.313025] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   90.342188] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   90.391634] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   90.405731] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   90.423839] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   90.752296] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   90.925095] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   91.041713] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   91.352082] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   91.421362] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   91.921671] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   91.956455] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   92.031052] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   92.421100] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   92.556512] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   92.920048] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   92.955108] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   93.031663] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   93.421725] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   93.490991] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   93.531529] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   93.555437] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   93.921123] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   93.948192] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   94.002187] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   94.015713] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   94.032058] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   94.086152] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   94.097977] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   94.115681] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   94.155797] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   94.192980] input: Logi M650 Mouse as /devices/virtual/misc/uhid/0005:046D:B02A.0007/input/input30
[   94.194032] hid-generic 0005:046D:B02A.0007: input,hidraw6: BLUETOOTH HID v0.13 Mouse [Logi M650] on a0:80:69:c6:8f:f8
[   94.288953] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   94.298014] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   94.314567] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   94.327697] input: Logitech Signature M650 as /devices/virtual/misc/uhid/0005:046D:B02A.0007/input/input32
[   94.328184] logitech-hidpp-device 0005:046D:B02A.0007: input,hidraw6: BLUETOOTH HID v0.13 Mouse [Logitech Signature M650] on a0:80:69:c6:8f:f8
[   94.355641] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   94.356196] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   94.363574] logitech-hidpp-device 0005:046D:B02A.0007: HID++ 4.5 device connected.
[   94.364143] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:574]
[   94.365920] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:575]
[   94.372115] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   94.379834] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   94.381628] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   94.388661] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:572]
[   94.396962] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   94.398251] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:574]
[   94.405578] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   94.413555] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   94.415529] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   94.423365] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:572]
[   94.430241] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   94.431783] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:574]
[   94.440214] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   94.446795] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   94.448864] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   94.456076] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:572]
[   94.462936] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:574]
[   94.464926] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   94.473305] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   94.483016] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   94.483847] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   94.489180] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:572]
[   94.499875] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   94.505590] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   94.516053] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   94.522811] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:572]
[   94.532235] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   94.539876] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   94.548911] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   94.556546] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:572]
[   94.565499] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   94.782102] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   94.800486] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   94.801646] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   94.814990] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:574]
[   94.815771] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:575]
[   94.820149] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:572]
[   94.820483] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:577]
[   94.831829] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   94.836319] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   94.836595] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   94.848415] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   94.851663] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:572]
[   94.853316] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:574]
[   94.865533] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   94.869433] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   94.869762] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   94.882399] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   94.885540] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:572]
[   94.886141] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:574]
[   94.899348] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   94.902907] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   94.903489] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   94.915301] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   94.915903] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:572]
[   94.919697] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:574]
[   94.933178] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   94.937362] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   94.949363] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   94.953491] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   94.966053] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   94.970183] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   94.983643] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   94.987223] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   94.998654] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   95.003399] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   95.015198] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   95.020272] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   95.032145] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   95.417473] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   95.424483] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   95.921695] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   96.017039] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   96.032568] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   96.421460] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   96.617916] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   96.738169] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   96.754115] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   96.770480] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   96.921515] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   97.033832] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   97.354386] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   97.421460] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   97.921613] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   97.955033] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   98.033987] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   98.164904] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   98.175011] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   98.188580] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   98.314510] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   98.324638] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   98.339675] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   98.384063] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   98.394080] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   98.404888] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   98.419472] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   98.549211] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   98.559192] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   98.572444] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   98.651182] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   98.661108] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   98.671581] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   98.713066] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   98.722964] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   98.739286] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   98.806873] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   98.822745] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   98.838902] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   98.920013] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   98.922433] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   98.940482] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   99.033138] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   99.033506] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   99.044122] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   99.056286] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   99.206450] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   99.222398] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   99.325977] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   99.339381] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   99.355750] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   99.420714] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[   99.447791] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   99.457830] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[   99.528022] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   99.539548] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[   99.920974] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[   99.940463] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[  100.035283] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  100.421825] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  100.426985] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  100.439221] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:574]
[  100.506524] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  100.523026] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  100.608804] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  100.623097] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  100.660105] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  100.672161] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[  100.822978] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  100.840705] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  100.921932] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  100.929449] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[  100.939564] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:574]
[  100.955176] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  101.035058] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  101.072708] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  101.088835] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  101.231841] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  101.246267] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[  101.288416] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  101.304950] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  101.377437] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  101.388653] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[  101.419897] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  101.445143] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  101.456369] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  101.642612] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  101.656569] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  101.756460] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  101.772215] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  101.921230] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  101.928663] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[  101.938299] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:574]
[  101.955985] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  102.025369] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  102.058750] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  102.117236] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  102.126528] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[  102.138200] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  102.257159] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  102.273282] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  102.289277] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  102.415138] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  102.423816] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[  102.426726] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:574]
[  102.439019] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  102.646249] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  102.656824] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  102.672504] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  102.822397] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  102.838896] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  102.855486] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  102.884197] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  102.917833] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  102.999294] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  103.024392] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  103.139686] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  103.195874] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  103.261422] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  103.332740] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  103.405385] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  103.421451] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  103.455768] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  103.517956] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  103.598494] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  103.646357] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  103.722402] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  103.773785] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  103.806566] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  103.840566] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  103.906220] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  103.920333] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  103.977855] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  104.023931] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  104.024555] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[  104.155194] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  104.297134] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  104.420542] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  104.476119] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  104.765520] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  104.858405] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  104.921429] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  104.938499] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:573]
[  104.988677] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  105.025613] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  105.058684] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  105.088703] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  105.112495] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  105.179213] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  105.242933] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  105.321495] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  105.383612] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  105.418537] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:562]
[  105.439568] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  105.505490] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  105.526592] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  105.573458] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  105.638866] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  105.671403] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]
[  105.688728] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:564]
[  105.705617] i915 0000:00:02.0: [drm:drm_mode_addfb2 [drm]] [FB:569]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: [PATCH] drm/i915/display: Refcount for fec enable/disable
  2026-06-02 13:38     ` Imre Deak
  2026-06-02 15:33       ` Stephen Fuhry
@ 2026-06-16  5:46       ` Murthy, Arun R
  1 sibling, 0 replies; 10+ messages in thread
From: Murthy, Arun R @ 2026-06-16  5:46 UTC (permalink / raw)
  To: Deak, Imre
  Cc: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org,
	Stephen Fuhry

> -----Original Message-----
> From: Deak, Imre <imre.deak@intel.com>
> Sent: Tuesday, June 2, 2026 7:09 PM
> To: Murthy, Arun R <arun.r.murthy@intel.com>
> Cc: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org; Stephen
> Fuhry <fuhrysteve@gmail.com>
> Subject: Re: [PATCH] drm/i915/display: Refcount for fec enable/disable
> 
> On Tue, Jun 02, 2026 at 04:35:42PM +0300, Murthy, Arun R wrote:
> >
> > > -----Original Message-----
> > > From: Deak, Imre <imre.deak@intel.com>
> > > Sent: Tuesday, June 2, 2026 4:17 PM
> > > To: Murthy, Arun R <arun.r.murthy@intel.com>
> > > Cc: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org;
> > > Stephen Fuhry <fuhrysteve@gmail.com>
> > > Subject: Re: [PATCH] drm/i915/display: Refcount for fec
> > > enable/disable
> > >
> > > On Mon, Jun 01, 2026 at 07:59:43PM +0530, Arun R Murthy wrote:
> > > > The FEC_ENABLE bit is per port basis and is enabled/disabled on
> > > > ddi pre_enable and post_disable. This fec is shared across the mst
> > > > streams and can be enabled per stream basis as well.
> > > > So have a refcount to track the usage of FEC and then
> > > > enable/disable accordingly.
> > > >
> > > > Closes:
> > > > https://gitlab.freedesktop.org/drm/i915/kernel/-/work_items/16073
> > > > Signed-off-by: Arun R Murthy <arun.r.murthy@intel.com>
> > > > Tested-by: Stephen Fuhry <fuhrysteve@gmail.com>
> > > > ---
> > > >  drivers/gpu/drm/i915/display/intel_ddi.c      | 66 +++++++++++++++++++
> > > >  drivers/gpu/drm/i915/display/intel_ddi.h      |  1 +
> > > >  .../drm/i915/display/intel_display_types.h    | 12 ++++
> > > >  .../drm/i915/display/intel_modeset_setup.c    |  6 ++
> > > >  4 files changed, 85 insertions(+)
> > > >
> > > > diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c
> > > > b/drivers/gpu/drm/i915/display/intel_ddi.c
> > > > index 86520848892e..e12a3d6d6a67 100644
> > > > --- a/drivers/gpu/drm/i915/display/intel_ddi.c
> > > > +++ b/drivers/gpu/drm/i915/display/intel_ddi.c
> > > > @@ -2096,6 +2096,47 @@ void intel_ddi_disable_clock(struct
> > > > intel_encoder
> > > *encoder)
> > > >  		encoder->disable_clock(encoder);  }
> > > >
> > > > +/**
> > > > + * intel_ddi_seed_fec_refcounts - Seed per-port FEC refcounts
> > > > +from active CRTCs
> > > > + * @display: display device
> > > > + *
> > > > + * intel_digital_port::fec_active_streams is the per-port
> > > > +refcount that gates
> > > > + * programming of the shared DP_TP_CTL_FEC_ENABLE bit. After
> > > > +initial HW state
> > > > + * readout (driver load, resume, GPU reset takeover), the
> > > > +persistent
> > > > + * crtc_state->fec_enable values reflect what HW currently has;
> > > > +we need to
> > > > + * align the refcount with that so the first paired disable
> > > > +doesn't underflow
> > > > + * and the next enable doesn't incorrectly skip programming the HW bit.
> > > > + *
> > > > + * Must be called once after intel_modeset_readout_hw_state(),
> > > > +before any new
> > > > + * modeset commit can run.
> > > > + */
> > > > +void intel_ddi_seed_fec_refcounts(struct intel_display *display) {
> > > > +	struct intel_crtc *crtc;
> > > > +
> > > > +	for_each_intel_crtc(display->drm, crtc) {
> > > > +		const struct intel_crtc_state *crtc_state =
> > > > +			to_intel_crtc_state(crtc->base.state);
> > > > +		struct intel_encoder *encoder;
> > > > +
> > > > +		if (!crtc_state->hw.active || !crtc_state->fec_enable)
> > > > +			continue;
> > > > +
> > > > +		for_each_intel_encoder(display->drm, encoder) {
> > > > +			struct intel_digital_port *dig_port;
> > > > +
> > > > +			if (encoder->base.crtc != &crtc->base)
> > > > +				continue;
> > > > +			if (!intel_encoder_is_dig_port(encoder))
> > > > +				continue;
> > > > +
> > > > +			dig_port = enc_to_dig_port(encoder);
> > > > +			dig_port->fec_active_streams++;
> > > > +			break;
> > > > +		}
> > > > +	}
> > > > +}
> > > > +
> > > >  void intel_ddi_sanitize_encoder_pll_mapping(struct intel_encoder
> > > > *encoder)  {
> > > >  	struct intel_display *display = to_intel_display(encoder); @@
> > > > -2413,12 +2454,22 @@ static void intel_ddi_enable_fec(struct
> > > > intel_encoder
> > > *encoder,
> > > >  				 const struct intel_crtc_state *crtc_state)  {
> > > >  	struct intel_display *display = to_intel_display(encoder);
> > > > +	struct intel_digital_port *dig_port = enc_to_dig_port(encoder);
> > > >  	int i;
> > > >  	int ret;
> > > >
> > > >  	if (!crtc_state->fec_enable)
> > > >  		return;
> > > >
> > > > +	/*
> > > > +	 * FEC is link-wide: DP_TP_CTL_FEC_ENABLE is per-port while
> > > > +	 * crtc_state->fec_enable is per-stream. For DP MST, several streams
> > > > +	 * on this port share the bit. Only program HW on the first stream
> > > > +	 * needing FEC; subsequent streams just bump the refcount.
> > > > +	 */
> > > > +	if (dig_port->fec_active_streams++ > 0)
> > > > +		return;
> > >
> > > This doesn't make sense to me. FEC is enabled for the MST link and
> > > if it's enabled then fec_enabled is set in the crtc_state for all
> > > the streams in the MST topology. intel_ddi_enable_fec() will be
> > > called only for the first MST stream being enabled and
> > > intel_ddi_disable_fec() will be called only for the last MST stream
> > > being disabled. So I don't see why the above refcounting would be needed.
> >
> > The  logs mentioned in the above listed gitlab issue shows mismatch in
> > fec enable/disable in the MST scenario. Hence added this refcount
> > logic to overcome the mismatch.
> 
> The root cause for the mismatch should be better understood then. I still think
> that it's something else than the lack of refcounting.
> 
FEC is a link-wide property: DP_TP_CTL_FEC_ENABLE is a per-port HW bit
while crtc_state->fec_enable is per-stream. With DP MST several streams
share the same port, so if any sibling stream needs FEC the per-port HW
bit is on for every sibling. If sibling crtc_states disagree the
following two symptoms appear(based on the 2 gitlab issues around the fec):

- intel_pipe_config_compare() rejects fastset on the sibling whose new
  crtc_state->fec_enable disagrees with the old (HW) value
   forcing an unnecessary full modeset.
- verify_crtc_state() after commit reports a fec_enable mismatch
  because the per-port HW bit is read back into every sibling's hw state.

Along with this refcount will have to unify the fec handling across the mst streams.
This unify will be done by pulling the non-active state(mst stream not part of the atomic commit, but is a sibling of the mst stream) and then will be a OR operation across the mst streams.
Will be pushing a patch implementing this as well.

Thanks and Regards,
Arun R Murthy
--------------------
> > Thanks and Regards,
> > Arun R Murthy
> > --------------------
> > > > +
> > > >  	intel_de_rmw(display, dp_tp_ctl_reg(encoder, crtc_state),
> > > >  		     0, DP_TP_CTL_FEC_ENABLE);
> > > >
> > > > @@ -2454,10 +2505,25 @@ static void intel_ddi_disable_fec(struct
> > > intel_encoder *encoder,
> > > >  				  const struct intel_crtc_state *crtc_state)  {
> > > >  	struct intel_display *display = to_intel_display(encoder);
> > > > +	struct intel_digital_port *dig_port = enc_to_dig_port(encoder);
> > > >
> > > >  	if (!crtc_state->fec_enable)
> > > >  		return;
> > > >
> > > > +	/*
> > > > +	 * FEC is a link-wide property and DP_TP_CTL_FEC_ENABLE is a per-port
> > > > +	 * register, but crtc_state->fec_enable is per-stream. For DP MST,
> > > > +	 * multiple streams on the same port share this bit. Refcount the
> > > > +	 * active FEC users on the port and only clear the HW bit when the
> > > > +	 * last user goes away, otherwise tearing down one MST stream would
> > > > +	 * disable FEC for sibling streams still using it.
> > > > +	 */
> > > > +	if (drm_WARN_ON(display->drm, dig_port->fec_active_streams <= 0))
> > > > +		return;
> > > > +
> > > > +	if (--dig_port->fec_active_streams > 0)
> > > > +		return;
> > > > +
> > > >  	intel_de_rmw(display, dp_tp_ctl_reg(encoder, crtc_state),
> > > >  		     DP_TP_CTL_FEC_ENABLE, 0);
> > > >  	intel_de_posting_read(display, dp_tp_ctl_reg(encoder,
> > > > crtc_state)); diff --git
> > > > a/drivers/gpu/drm/i915/display/intel_ddi.h
> > > > b/drivers/gpu/drm/i915/display/intel_ddi.h
> > > > index 580ecb09b8b6..3678c28a0dc9 100644
> > > > --- a/drivers/gpu/drm/i915/display/intel_ddi.h
> > > > +++ b/drivers/gpu/drm/i915/display/intel_ddi.h
> > > > @@ -78,6 +78,7 @@ int intel_ddi_toggle_hdcp_bits(struct
> > > > intel_encoder
> > > *intel_encoder,
> > > >  			       enum transcoder cpu_transcoder,
> > > >  			       bool enable, u32 hdcp_mask);  void
> > > > intel_ddi_sanitize_encoder_pll_mapping(struct intel_encoder
> > > > *encoder);
> > > > +void intel_ddi_seed_fec_refcounts(struct intel_display *display);
> > > >  int intel_ddi_level(struct intel_encoder *encoder,
> > > >  		    const struct intel_crtc_state *crtc_state,
> > > >  		    int lane);
> > > > diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h
> > > > b/drivers/gpu/drm/i915/display/intel_display_types.h
> > > > index f44be5c689ae..84bd0d993197 100644
> > > > --- a/drivers/gpu/drm/i915/display/intel_display_types.h
> > > > +++ b/drivers/gpu/drm/i915/display/intel_display_types.h
> > > > @@ -1987,6 +1987,18 @@ struct intel_digital_port {
> > > >  	struct ref_tracker *ddi_io_wakeref;
> > > >  	struct ref_tracker *aux_wakeref;
> > > >
> > > > +	/*
> > > > +	 * Number of active streams on this port currently using FEC.
> > > > +	 *
> > > > +	 * DP_TP_CTL_FEC_ENABLE is a per-port (link-wide) HW bit, but
> > > > +	 * crtc_state->fec_enable is per-stream. For DP MST several streams
> > > > +	 * share the same port and therefore the same FEC enable bit. Track
> > > > +	 * how many active streams want FEC so that the HW bit is only
> > > > +	 * programmed on the first enable and only cleared on the last
> > > > +	 * disable. Modified under the modeset locks.
> > > > +	 */
> > > > +	int fec_active_streams;
> > > > +
> > > >  	struct intel_tc_port *tc;
> > > >
> > > >  	struct {
> > > > diff --git a/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > > > b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > > > index e88082c8caac..14f038b8ef81 100644
> > > > --- a/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > > > +++ b/drivers/gpu/drm/i915/display/intel_modeset_setup.c
> > > > @@ -950,6 +950,12 @@ void intel_modeset_setup_hw_state(struct
> > > > intel_display *display,
> > > >
> > > >  	intel_modeset_readout_hw_state(display);
> > > >
> > > > +	/*
> > > > +	 * Seed per-port FEC refcounts from the just-populated active
> > > > +	 * crtc_states before anything can issue an enable/disable.
> > > > +	 */
> > > > +	intel_ddi_seed_fec_refcounts(display);
> > > > +
> > > >  	/* HW state is read out, now we need to sanitize this mess. */
> > > >  	get_encoder_power_domains(display);
> > > >
> > > > --
> > > > 2.25.1
> > > >

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2026-06-16  5:46 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-01 14:29 [PATCH] drm/i915/display: Refcount for fec enable/disable Arun R Murthy
2026-06-01 15:16 ` ✓ CI.KUnit: success for " Patchwork
2026-06-02 10:46 ` [PATCH] " Imre Deak
2026-06-02 13:35   ` Murthy, Arun R
2026-06-02 13:38     ` Imre Deak
2026-06-02 15:33       ` Stephen Fuhry
2026-06-02 16:37         ` Imre Deak
2026-06-02 16:41           ` Stephen Fuhry
2026-06-11 16:01           ` [Intel-gfx] " Stephen Fuhry
2026-06-16  5:46       ` Murthy, Arun R

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox