Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] Make casf updates atomic and dsb ready
@ 2025-12-09  6:25 Nemesa Garg
  2025-12-09  6:25 ` [PATCH 1/5] drm/i915/display: Move casf_compute_config Nemesa Garg
                   ` (7 more replies)
  0 siblings, 8 replies; 13+ messages in thread
From: Nemesa Garg @ 2025-12-09  6:25 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: ville.syrjala, uma.shankar, Nemesa Garg

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 1091 bytes --]

 The existing implementation for casf scaler re‑implemented
parts of skl_scaler logic and programmed registers from
pre‑plane update hooks, which caused:
  - updates were not atomic.
  - prevented execution via Display State Buffer.
  - computed state was late.

This series fixes these issues by:
  - consolidating common logic into skl_scaler.c.
  - moving computation into crtc_compute_config().
  - enabling DSB execution. 

Nemesa Garg (5):
  drm/i915/display: Move casf_compute_config
  drm/i915/display: Add intel_dsb param to CASF helpers
  drm/i915/display: Pass dsb_commit to CASF helpers
  drm/i915/display: Add intel_casf_arm() to enable casf
  drm/i915/display: Introduce skl_pipe_scaler_setup()

 drivers/gpu/drm/i915/display/intel_casf.c    | 58 ++++++++++++----
 drivers/gpu/drm/i915/display/intel_casf.h    | 16 ++++-
 drivers/gpu/drm/i915/display/intel_display.c | 34 +++++++--
 drivers/gpu/drm/i915/display/skl_scaler.c    | 72 +++++++++-----------
 drivers/gpu/drm/i915/display/skl_scaler.h    |  2 +
 5 files changed, 118 insertions(+), 64 deletions(-)

-- 
2.25.1


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

* [PATCH 1/5] drm/i915/display: Move casf_compute_config
  2025-12-09  6:25 [PATCH 0/5] Make casf updates atomic and dsb ready Nemesa Garg
@ 2025-12-09  6:25 ` Nemesa Garg
  2025-12-12 15:51   ` Ville Syrjälä
  2025-12-09  6:25 ` [PATCH 2/5] drm/i915/display: Add intel_dsb param to CASF helpers Nemesa Garg
                   ` (6 subsequent siblings)
  7 siblings, 1 reply; 13+ messages in thread
From: Nemesa Garg @ 2025-12-09  6:25 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: ville.syrjala, uma.shankar, Nemesa Garg

Prefill calculations are getting screwed up as casf_compute
is getting called in later stage. So move casf_compute_config
to crtc_compute_config and check if there is a change in the
sharpness strength, if so set the flag uapi.mode_changed
so that everytime when strength changes casf_compute_config
can be called and new strength value gets updated.

Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
---
 drivers/gpu/drm/i915/display/intel_casf.c    | 14 ++++++++++++++
 drivers/gpu/drm/i915/display/intel_casf.h    |  3 +++
 drivers/gpu/drm/i915/display/intel_display.c | 10 ++++++----
 3 files changed, 23 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_casf.c b/drivers/gpu/drm/i915/display/intel_casf.c
index 95339b496f24..6e45ff7d5ff7 100644
--- a/drivers/gpu/drm/i915/display/intel_casf.c
+++ b/drivers/gpu/drm/i915/display/intel_casf.c
@@ -288,3 +288,17 @@ void intel_casf_disable(const struct intel_crtc_state *crtc_state)
 	intel_de_write(display, SHARPNESS_CTL(crtc->pipe), 0);
 	intel_de_write(display, SKL_PS_WIN_SZ(crtc->pipe, 1), 0);
 }
+
+void intel_casf_check(struct intel_atomic_state *state)
+{
+	int i;
+	struct intel_crtc_state *old_crtc_state, *new_crtc_state;
+	struct intel_crtc *crtc;
+
+	for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state,
+					    new_crtc_state, i) {
+		if (new_crtc_state->uapi.sharpness_strength !=
+		    old_crtc_state->uapi.sharpness_strength)
+			new_crtc_state->uapi.mode_changed = true;
+	}
+}
diff --git a/drivers/gpu/drm/i915/display/intel_casf.h b/drivers/gpu/drm/i915/display/intel_casf.h
index b3fb0bcb3f5b..2eec90d9d4c4 100644
--- a/drivers/gpu/drm/i915/display/intel_casf.h
+++ b/drivers/gpu/drm/i915/display/intel_casf.h
@@ -9,6 +9,8 @@
 #include <linux/types.h>
 
 struct intel_crtc_state;
+struct intel_atomic_state;
+struct intel_crtc;
 
 int intel_casf_compute_config(struct intel_crtc_state *crtc_state);
 void intel_casf_update_strength(struct intel_crtc_state *new_crtc_state);
@@ -17,5 +19,6 @@ void intel_casf_enable(struct intel_crtc_state *crtc_state);
 void intel_casf_disable(const struct intel_crtc_state *crtc_state);
 void intel_casf_scaler_compute_config(struct intel_crtc_state *crtc_state);
 bool intel_casf_needs_scaler(const struct intel_crtc_state *crtc_state);
+void intel_casf_check(struct intel_atomic_state *state);
 
 #endif /* __INTEL_CASF_H__ */
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 9c6d3ecdb589..882ea286fc9c 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -2494,6 +2494,10 @@ static int intel_crtc_compute_config(struct intel_atomic_state *state,
 
 	intel_vrr_compute_guardband(crtc_state);
 
+	ret = intel_casf_compute_config(crtc_state);
+	if (ret)
+		return ret;
+
 	return 0;
 }
 
@@ -4286,10 +4290,6 @@ static int intel_crtc_atomic_check(struct intel_atomic_state *state,
 		return ret;
 	}
 
-	ret = intel_casf_compute_config(crtc_state);
-	if (ret)
-		return ret;
-
 	if (DISPLAY_VER(display) >= 9) {
 		if (intel_crtc_needs_modeset(crtc_state) ||
 		    intel_crtc_needs_fastset(crtc_state) ||
@@ -6435,6 +6435,8 @@ int intel_atomic_check(struct drm_device *dev,
 
 	intel_vrr_check_modeset(state);
 
+	intel_casf_check(state);
+
 	ret = drm_atomic_helper_check_modeset(dev, &state->base);
 	if (ret)
 		goto fail;
-- 
2.25.1


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

* [PATCH 2/5] drm/i915/display: Add intel_dsb param to CASF helpers
  2025-12-09  6:25 [PATCH 0/5] Make casf updates atomic and dsb ready Nemesa Garg
  2025-12-09  6:25 ` [PATCH 1/5] drm/i915/display: Move casf_compute_config Nemesa Garg
@ 2025-12-09  6:25 ` Nemesa Garg
  2025-12-09  6:25 ` [PATCH 3/5] drm/i915/display: Pass dsb_commit " Nemesa Garg
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 13+ messages in thread
From: Nemesa Garg @ 2025-12-09  6:25 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: ville.syrjala, uma.shankar, Nemesa Garg

Update CASF helpers to take intel_dsb pointers.
Replace register writes with write_dsb.
When CASF is enabled through a modeset operation, pass
NULL for the dsb parameter to indicate direct register
programming otherwise provide a valid DSB instance to
submit through the buffered sequence.

Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
---
 drivers/gpu/drm/i915/display/intel_casf.c    | 19 +++++++++++--------
 drivers/gpu/drm/i915/display/intel_casf.h    | 10 +++++++---
 drivers/gpu/drm/i915/display/intel_display.c |  6 +++---
 3 files changed, 21 insertions(+), 14 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_casf.c b/drivers/gpu/drm/i915/display/intel_casf.c
index 6e45ff7d5ff7..e9ffbd42a030 100644
--- a/drivers/gpu/drm/i915/display/intel_casf.c
+++ b/drivers/gpu/drm/i915/display/intel_casf.c
@@ -76,7 +76,8 @@ static void intel_casf_filter_lut_load(struct intel_crtc *crtc,
 			       sharpness_lut[i]);
 }
 
-void intel_casf_update_strength(struct intel_crtc_state *crtc_state)
+void intel_casf_update_strength(struct intel_dsb *dsb,
+				struct intel_crtc_state *crtc_state)
 {
 	struct intel_display *display = to_intel_display(crtc_state);
 	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
@@ -259,7 +260,8 @@ void intel_casf_scaler_compute_config(struct intel_crtc_state *crtc_state)
 	}
 }
 
-void intel_casf_enable(struct intel_crtc_state *crtc_state)
+void intel_casf_enable(struct intel_dsb *dsb,
+		       struct intel_crtc_state *crtc_state)
 {
 	struct intel_display *display = to_intel_display(crtc_state);
 	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
@@ -273,20 +275,21 @@ void intel_casf_enable(struct intel_crtc_state *crtc_state)
 
 	sharpness_ctl |= crtc_state->hw.casf_params.win_size;
 
-	intel_de_write(display, SHARPNESS_CTL(crtc->pipe), sharpness_ctl);
+	intel_de_write_dsb(display, dsb, SHARPNESS_CTL(crtc->pipe), sharpness_ctl);
 
 	skl_scaler_setup_casf(crtc_state);
 }
 
-void intel_casf_disable(const struct intel_crtc_state *crtc_state)
+void intel_casf_disable(struct intel_dsb *dsb,
+			const struct intel_crtc_state *crtc_state)
 {
 	struct intel_display *display = to_intel_display(crtc_state);
 	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
 
-	intel_de_write(display, SKL_PS_CTRL(crtc->pipe, 1), 0);
-	intel_de_write(display, SKL_PS_WIN_POS(crtc->pipe, 1), 0);
-	intel_de_write(display, SHARPNESS_CTL(crtc->pipe), 0);
-	intel_de_write(display, SKL_PS_WIN_SZ(crtc->pipe, 1), 0);
+	intel_de_write_dsb(display, dsb, SKL_PS_CTRL(crtc->pipe, 1), 0);
+	intel_de_write_dsb(display, dsb, SKL_PS_WIN_POS(crtc->pipe, 1), 0);
+	intel_de_write_dsb(display, dsb, SHARPNESS_CTL(crtc->pipe), 0);
+	intel_de_write_dsb(display, dsb, SKL_PS_WIN_SZ(crtc->pipe, 1), 0);
 }
 
 void intel_casf_check(struct intel_atomic_state *state)
diff --git a/drivers/gpu/drm/i915/display/intel_casf.h b/drivers/gpu/drm/i915/display/intel_casf.h
index 2eec90d9d4c4..16a938e19c71 100644
--- a/drivers/gpu/drm/i915/display/intel_casf.h
+++ b/drivers/gpu/drm/i915/display/intel_casf.h
@@ -11,12 +11,16 @@
 struct intel_crtc_state;
 struct intel_atomic_state;
 struct intel_crtc;
+struct intel_dsb;
 
 int intel_casf_compute_config(struct intel_crtc_state *crtc_state);
-void intel_casf_update_strength(struct intel_crtc_state *new_crtc_state);
+void intel_casf_update_strength(struct intel_dsb *dsb,
+				struct intel_crtc_state *new_crtc_state);
 void intel_casf_sharpness_get_config(struct intel_crtc_state *crtc_state);
-void intel_casf_enable(struct intel_crtc_state *crtc_state);
-void intel_casf_disable(const struct intel_crtc_state *crtc_state);
+void intel_casf_enable(struct intel_dsb *dsb,
+		       struct intel_crtc_state *crtc_state);
+void intel_casf_disable(struct intel_dsb *dsb,
+			const struct intel_crtc_state *crtc_state);
 void intel_casf_scaler_compute_config(struct intel_crtc_state *crtc_state);
 bool intel_casf_needs_scaler(const struct intel_crtc_state *crtc_state);
 void intel_casf_check(struct intel_atomic_state *state);
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 882ea286fc9c..256103d55409 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -1165,7 +1165,7 @@ static void intel_pre_plane_update(struct intel_atomic_state *state,
 		intel_encoders_audio_disable(state, crtc);
 
 	if (intel_casf_disabling(old_crtc_state, new_crtc_state))
-		intel_casf_disable(new_crtc_state);
+		intel_casf_disable(NULL, new_crtc_state);
 
 	intel_drrs_deactivate(old_crtc_state);
 
@@ -6804,9 +6804,9 @@ static void intel_pre_update_crtc(struct intel_atomic_state *state,
 	}
 
 	if (intel_casf_enabling(new_crtc_state, old_crtc_state))
-		intel_casf_enable(new_crtc_state);
+		intel_casf_enable(NULL, new_crtc_state);
 	else if (new_crtc_state->hw.casf_params.strength != old_crtc_state->hw.casf_params.strength)
-		intel_casf_update_strength(new_crtc_state);
+		intel_casf_update_strength(NULL, new_crtc_state);
 
 	intel_fbc_update(state, crtc);
 
-- 
2.25.1


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

* [PATCH 3/5] drm/i915/display: Pass dsb_commit to CASF helpers
  2025-12-09  6:25 [PATCH 0/5] Make casf updates atomic and dsb ready Nemesa Garg
  2025-12-09  6:25 ` [PATCH 1/5] drm/i915/display: Move casf_compute_config Nemesa Garg
  2025-12-09  6:25 ` [PATCH 2/5] drm/i915/display: Add intel_dsb param to CASF helpers Nemesa Garg
@ 2025-12-09  6:25 ` Nemesa Garg
  2025-12-12 16:34   ` Ville Syrjälä
  2025-12-09  6:25 ` [PATCH 4/5] drm/i915/display: Add intel_casf_arm() to enable casf Nemesa Garg
                   ` (4 subsequent siblings)
  7 siblings, 1 reply; 13+ messages in thread
From: Nemesa Garg @ 2025-12-09  6:25 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: ville.syrjala, uma.shankar, Nemesa Garg

Incase of non-modeset enable the casf, update the
strength or disable the casf through dsb.

Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
---
 drivers/gpu/drm/i915/display/intel_display.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 256103d55409..7edfc8c2ae21 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -7300,6 +7300,8 @@ static void intel_atomic_dsb_finish(struct intel_atomic_state *state,
 	struct intel_display *display = to_intel_display(state);
 	struct intel_crtc_state *new_crtc_state =
 		intel_atomic_get_new_crtc_state(state, crtc);
+	struct intel_crtc_state *old_crtc_state =
+		intel_atomic_get_old_crtc_state(state, crtc);
 	unsigned int size = new_crtc_state->plane_color_changed ? 8192 : 1024;
 
 	if (!new_crtc_state->use_flipq &&
@@ -7332,6 +7334,16 @@ static void intel_atomic_dsb_finish(struct intel_atomic_state *state,
 		if (intel_crtc_needs_color_update(new_crtc_state))
 			intel_color_commit_noarm(new_crtc_state->dsb_commit,
 						 new_crtc_state);
+		if (intel_casf_enabling(new_crtc_state, old_crtc_state))
+			intel_casf_enable(new_crtc_state->dsb_commit,
+					  new_crtc_state);
+		else if (new_crtc_state->hw.casf_params.strength !=
+				old_crtc_state->hw.casf_params.strength)
+			intel_casf_update_strength(new_crtc_state->dsb_commit,
+						   new_crtc_state);
+		if (intel_casf_disabling(old_crtc_state, new_crtc_state))
+			intel_casf_disable(new_crtc_state->dsb_commit,
+					   new_crtc_state);
 		intel_crtc_planes_update_noarm(new_crtc_state->dsb_commit,
 					       state, crtc);
 
-- 
2.25.1


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

* [PATCH 4/5] drm/i915/display: Add intel_casf_arm() to enable casf
  2025-12-09  6:25 [PATCH 0/5] Make casf updates atomic and dsb ready Nemesa Garg
                   ` (2 preceding siblings ...)
  2025-12-09  6:25 ` [PATCH 3/5] drm/i915/display: Pass dsb_commit " Nemesa Garg
@ 2025-12-09  6:25 ` Nemesa Garg
  2025-12-09  6:25 ` [PATCH 5/5] drm/i915/display: Introduce skl_pipe_scaler_setup() Nemesa Garg
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 13+ messages in thread
From: Nemesa Garg @ 2025-12-09  6:25 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: ville.syrjala, uma.shankar, Nemesa Garg

Enable casf by writing the register SKL_PS_WIN_SZ as
it is an arming register. It has to be invoked from
both dsb and non-dsb path.

Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
---
 drivers/gpu/drm/i915/display/intel_casf.c    | 27 +++++++++++++++-----
 drivers/gpu/drm/i915/display/intel_casf.h    |  3 +++
 drivers/gpu/drm/i915/display/intel_display.c |  6 +++++
 3 files changed, 30 insertions(+), 6 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_casf.c b/drivers/gpu/drm/i915/display/intel_casf.c
index e9ffbd42a030..6b99eca6f031 100644
--- a/drivers/gpu/drm/i915/display/intel_casf.c
+++ b/drivers/gpu/drm/i915/display/intel_casf.c
@@ -81,14 +81,9 @@ void intel_casf_update_strength(struct intel_dsb *dsb,
 {
 	struct intel_display *display = to_intel_display(crtc_state);
 	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
-	int win_size;
 
 	intel_de_rmw(display, SHARPNESS_CTL(crtc->pipe), FILTER_STRENGTH_MASK,
 		     FILTER_STRENGTH(crtc_state->hw.casf_params.strength));
-
-	win_size = intel_de_read(display, SKL_PS_WIN_SZ(crtc->pipe, 1));
-
-	intel_de_write_fw(display, SKL_PS_WIN_SZ(crtc->pipe, 1), win_size);
 }
 
 static void intel_casf_compute_win_size(struct intel_crtc_state *crtc_state)
@@ -280,6 +275,27 @@ void intel_casf_enable(struct intel_dsb *dsb,
 	skl_scaler_setup_casf(crtc_state);
 }
 
+void intel_casf_arm(struct intel_dsb *dsb,
+		    const struct intel_crtc_state *crtc_state)
+{
+	struct intel_display *display = to_intel_display(crtc_state);
+	const struct drm_display_mode *adjusted_mode =
+		&crtc_state->hw.adjusted_mode;
+	const struct intel_crtc_scaler_state *scaler_state =
+		&crtc_state->scaler_state;
+	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
+	enum pipe pipe = crtc->pipe;
+
+	int id, width, height;
+
+	width = adjusted_mode->crtc_hdisplay;
+	height = adjusted_mode->crtc_vdisplay;
+	id = scaler_state->scaler_id;
+
+	intel_de_write_fw(display, SKL_PS_WIN_SZ(pipe, id),
+			  PS_WIN_XSIZE(width) | PS_WIN_YSIZE(height));
+}
+
 void intel_casf_disable(struct intel_dsb *dsb,
 			const struct intel_crtc_state *crtc_state)
 {
@@ -289,7 +305,6 @@ void intel_casf_disable(struct intel_dsb *dsb,
 	intel_de_write_dsb(display, dsb, SKL_PS_CTRL(crtc->pipe, 1), 0);
 	intel_de_write_dsb(display, dsb, SKL_PS_WIN_POS(crtc->pipe, 1), 0);
 	intel_de_write_dsb(display, dsb, SHARPNESS_CTL(crtc->pipe), 0);
-	intel_de_write_dsb(display, dsb, SKL_PS_WIN_SZ(crtc->pipe, 1), 0);
 }
 
 void intel_casf_check(struct intel_atomic_state *state)
diff --git a/drivers/gpu/drm/i915/display/intel_casf.h b/drivers/gpu/drm/i915/display/intel_casf.h
index 16a938e19c71..816fc285a921 100644
--- a/drivers/gpu/drm/i915/display/intel_casf.h
+++ b/drivers/gpu/drm/i915/display/intel_casf.h
@@ -24,5 +24,8 @@ void intel_casf_disable(struct intel_dsb *dsb,
 void intel_casf_scaler_compute_config(struct intel_crtc_state *crtc_state);
 bool intel_casf_needs_scaler(const struct intel_crtc_state *crtc_state);
 void intel_casf_check(struct intel_atomic_state *state);
+void intel_casf_arm(struct intel_dsb *dsb,
+		    const struct intel_crtc_state *crtc_state);
+
 
 #endif /* __INTEL_CASF_H__ */
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 7edfc8c2ae21..52d1eff4de2e 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -6722,6 +6722,9 @@ static void commit_pipe_post_planes(struct intel_atomic_state *state,
 
 	drm_WARN_ON(display->drm, new_crtc_state->use_dsb || new_crtc_state->use_flipq);
 
+	if (new_crtc_state->hw.casf_params.casf_enable)
+		intel_casf_arm(new_crtc_state->dsb_commit,
+			       new_crtc_state);
 	/*
 	 * Disable the scaler(s) after the plane(s) so that we don't
 	 * get a catastrophic underrun even if the two operations
@@ -7364,6 +7367,9 @@ static void intel_atomic_dsb_finish(struct intel_atomic_state *state,
 		if (intel_crtc_needs_color_update(new_crtc_state))
 			intel_color_commit_arm(new_crtc_state->dsb_commit,
 					       new_crtc_state);
+		if (new_crtc_state->hw.casf_params.casf_enable)
+			intel_casf_arm(new_crtc_state->dsb_commit,
+				       new_crtc_state);
 		bdw_set_pipe_misc(new_crtc_state->dsb_commit,
 				  new_crtc_state);
 		intel_psr2_program_trans_man_trk_ctl(new_crtc_state->dsb_commit,
-- 
2.25.1


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

* [PATCH 5/5] drm/i915/display: Introduce skl_pipe_scaler_setup()
  2025-12-09  6:25 [PATCH 0/5] Make casf updates atomic and dsb ready Nemesa Garg
                   ` (3 preceding siblings ...)
  2025-12-09  6:25 ` [PATCH 4/5] drm/i915/display: Add intel_casf_arm() to enable casf Nemesa Garg
@ 2025-12-09  6:25 ` Nemesa Garg
  2025-12-09  6:36 ` ✓ CI.KUnit: success for Make casf updates atomic and dsb ready Patchwork
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 13+ messages in thread
From: Nemesa Garg @ 2025-12-09  6:25 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: ville.syrjala, uma.shankar, Nemesa Garg

As skl_pfit_enable and skl_scaler_setup_casf
have similar logic for pipe scaler registers
so to avoid duplicacy introduce new helper
skl_pipe_scaler_setup. This helper consolidates
common scaler setup steps and is now called
from both skl_pfit_enable() and skl_scaler_setup_casf().

Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
---
 drivers/gpu/drm/i915/display/skl_scaler.c | 72 ++++++++++-------------
 drivers/gpu/drm/i915/display/skl_scaler.h |  2 +
 2 files changed, 33 insertions(+), 41 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/skl_scaler.c b/drivers/gpu/drm/i915/display/skl_scaler.c
index 4c4deac7f9c8..703d13e6f1c7 100644
--- a/drivers/gpu/drm/i915/display/skl_scaler.c
+++ b/drivers/gpu/drm/i915/display/skl_scaler.c
@@ -761,41 +761,14 @@ static void skl_scaler_setup_filter(struct intel_display *display,
 
 void skl_scaler_setup_casf(struct intel_crtc_state *crtc_state)
 {
-	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
-	struct intel_display *display = to_intel_display(crtc);
 	struct drm_display_mode *adjusted_mode =
-	&crtc_state->hw.adjusted_mode;
-	struct intel_crtc_scaler_state *scaler_state =
-		&crtc_state->scaler_state;
-	struct drm_rect src, dest;
-	int id, width, height;
-	int x = 0, y = 0;
-	enum pipe pipe = crtc->pipe;
-	u32 ps_ctrl;
+		&crtc_state->hw.adjusted_mode;
+	int width, height, x = 0, y = 0;
 
 	width = adjusted_mode->crtc_hdisplay;
 	height = adjusted_mode->crtc_vdisplay;
 
-	drm_rect_init(&dest, x, y, width, height);
-
-	width = drm_rect_width(&dest);
-	height = drm_rect_height(&dest);
-	id = scaler_state->scaler_id;
-
-	drm_rect_init(&src, 0, 0,
-		      drm_rect_width(&crtc_state->pipe_src) << 16,
-		      drm_rect_height(&crtc_state->pipe_src) << 16);
-
-	trace_intel_pipe_scaler_update_arm(crtc, id, x, y, width, height);
-
-	ps_ctrl = PS_SCALER_EN | PS_BINDING_PIPE | scaler_state->scalers[id].mode |
-		  CASF_SCALER_FILTER_SELECT;
-
-	intel_de_write_fw(display, SKL_PS_CTRL(pipe, id), ps_ctrl);
-	intel_de_write_fw(display, SKL_PS_WIN_POS(pipe, id),
-			  PS_WIN_XPOS(x) | PS_WIN_YPOS(y));
-	intel_de_write_fw(display, SKL_PS_WIN_SZ(pipe, id),
-			  PS_WIN_XSIZE(width) | PS_WIN_YSIZE(height));
+	skl_pipe_scaler_setup(crtc_state, width, height, x, y);
 }
 
 void skl_pfit_enable(const struct intel_crtc_state *crtc_state)
@@ -805,16 +778,15 @@ void skl_pfit_enable(const struct intel_crtc_state *crtc_state)
 	const struct intel_crtc_scaler_state *scaler_state =
 		&crtc_state->scaler_state;
 	const struct drm_rect *dst = &crtc_state->pch_pfit.dst;
+	struct drm_rect src;
 	u16 uv_rgb_hphase, uv_rgb_vphase;
-	enum pipe pipe = crtc->pipe;
+	int hscale, vscale;
 	int width = drm_rect_width(dst);
 	int height = drm_rect_height(dst);
 	int x = dst->x1;
 	int y = dst->y1;
-	int hscale, vscale;
-	struct drm_rect src;
 	int id;
-	u32 ps_ctrl;
+	enum pipe pipe = crtc->pipe;
 
 	if (!crtc_state->pch_pfit.enabled)
 		return;
@@ -836,10 +808,34 @@ void skl_pfit_enable(const struct intel_crtc_state *crtc_state)
 	uv_rgb_hphase = skl_scaler_calc_phase(1, hscale, false);
 	uv_rgb_vphase = skl_scaler_calc_phase(1, vscale, false);
 
+	skl_pipe_scaler_setup(crtc_state, width, height, x, y);
+
+	id = scaler_state->scaler_id;
+
+	intel_de_write_fw(display, SKL_PS_VPHASE(pipe, id),
+			  PS_Y_PHASE(0) | PS_UV_RGB_PHASE(uv_rgb_vphase));
+	intel_de_write_fw(display, SKL_PS_HPHASE(pipe, id),
+			  PS_Y_PHASE(0) | PS_UV_RGB_PHASE(uv_rgb_hphase));
+	intel_de_write_fw(display, SKL_PS_WIN_SZ(pipe, id),
+			  PS_WIN_XSIZE(width) | PS_WIN_YSIZE(height));
+}
+
+void skl_pipe_scaler_setup(const struct intel_crtc_state *crtc_state,
+			   int width, int height, int x, int y)
+{
+	struct intel_display *display = to_intel_display(crtc_state);
+	struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
+	const struct intel_crtc_scaler_state *scaler_state =
+		&crtc_state->scaler_state;
+	enum pipe pipe = crtc->pipe;
+	int id;
+	u32 ps_ctrl;
+
 	id = scaler_state->scaler_id;
 
 	ps_ctrl = PS_SCALER_EN | PS_BINDING_PIPE | scaler_state->scalers[id].mode |
-		skl_scaler_get_filter_select(crtc_state->hw.scaling_filter);
+		  skl_scaler_get_filter_select(crtc_state->hw.scaling_filter) |
+		  CASF_SCALER_FILTER_SELECT;
 
 	trace_intel_pipe_scaler_update_arm(crtc, id, x, y, width, height);
 
@@ -848,14 +844,8 @@ void skl_pfit_enable(const struct intel_crtc_state *crtc_state)
 
 	intel_de_write_fw(display, SKL_PS_CTRL(pipe, id), ps_ctrl);
 
-	intel_de_write_fw(display, SKL_PS_VPHASE(pipe, id),
-			  PS_Y_PHASE(0) | PS_UV_RGB_PHASE(uv_rgb_vphase));
-	intel_de_write_fw(display, SKL_PS_HPHASE(pipe, id),
-			  PS_Y_PHASE(0) | PS_UV_RGB_PHASE(uv_rgb_hphase));
 	intel_de_write_fw(display, SKL_PS_WIN_POS(pipe, id),
 			  PS_WIN_XPOS(x) | PS_WIN_YPOS(y));
-	intel_de_write_fw(display, SKL_PS_WIN_SZ(pipe, id),
-			  PS_WIN_XSIZE(width) | PS_WIN_YSIZE(height));
 }
 
 void
diff --git a/drivers/gpu/drm/i915/display/skl_scaler.h b/drivers/gpu/drm/i915/display/skl_scaler.h
index 7e8d819c019d..94bde5d1c06a 100644
--- a/drivers/gpu/drm/i915/display/skl_scaler.h
+++ b/drivers/gpu/drm/i915/display/skl_scaler.h
@@ -30,6 +30,8 @@ void skl_program_plane_scaler(struct intel_dsb *dsb,
 			      struct intel_plane *plane,
 			      const struct intel_crtc_state *crtc_state,
 			      const struct intel_plane_state *plane_state);
+void skl_pipe_scaler_setup(const struct intel_crtc_state *crtc_state,
+			   int width, int height, int x, int y);
 void skl_detach_scalers(struct intel_dsb *dsb,
 			const struct intel_crtc_state *crtc_state);
 void skl_scaler_disable(const struct intel_crtc_state *old_crtc_state);
-- 
2.25.1


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

* ✓ CI.KUnit: success for Make casf updates atomic and dsb ready
  2025-12-09  6:25 [PATCH 0/5] Make casf updates atomic and dsb ready Nemesa Garg
                   ` (4 preceding siblings ...)
  2025-12-09  6:25 ` [PATCH 5/5] drm/i915/display: Introduce skl_pipe_scaler_setup() Nemesa Garg
@ 2025-12-09  6:36 ` Patchwork
  2025-12-09  7:10 ` ✓ Xe.CI.BAT: " Patchwork
  2025-12-09 13:31 ` ✗ Xe.CI.Full: failure " Patchwork
  7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-12-09  6:36 UTC (permalink / raw)
  To: Nemesa Garg; +Cc: intel-xe

== Series Details ==

Series: Make casf updates atomic and dsb ready
URL   : https://patchwork.freedesktop.org/series/158668/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for Make casf updates atomic and dsb ready
  2025-12-09  6:25 [PATCH 0/5] Make casf updates atomic and dsb ready Nemesa Garg
                   ` (5 preceding siblings ...)
  2025-12-09  6:36 ` ✓ CI.KUnit: success for Make casf updates atomic and dsb ready Patchwork
@ 2025-12-09  7:10 ` Patchwork
  2025-12-09 13:31 ` ✗ Xe.CI.Full: failure " Patchwork
  7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-12-09  7:10 UTC (permalink / raw)
  To: Nemesa Garg; +Cc: intel-xe

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

== Series Details ==

Series: Make casf updates atomic and dsb ready
URL   : https://patchwork.freedesktop.org/series/158668/
State : success

== Summary ==

CI Bug Log - changes from xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f_BAT -> xe-pw-158668v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (12 -> 12)
------------------------------

  No changes in participating hosts

Known issues
------------

  Here are the changes found in xe-pw-158668v1_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@xe_waitfence@reltime:
    - bat-dg2-oem2:       [PASS][1] -> [FAIL][2] ([Intel XE#6520])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/bat-dg2-oem2/igt@xe_waitfence@reltime.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/bat-dg2-oem2/igt@xe_waitfence@reltime.html

  
#### Possible fixes ####

  * igt@xe_waitfence@abstime:
    - bat-dg2-oem2:       [TIMEOUT][3] ([Intel XE#6506]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/bat-dg2-oem2/igt@xe_waitfence@abstime.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/bat-dg2-oem2/igt@xe_waitfence@abstime.html

  
  [Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
  [Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520


Build changes
-------------

  * Linux: xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f -> xe-pw-158668v1

  IGT_8659: 8659
  xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f: 48deab361d3b570e2210875fdc8ffb29627d054f
  xe-pw-158668v1: 158668v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/index.html

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

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

* ✗ Xe.CI.Full: failure for Make casf updates atomic and dsb ready
  2025-12-09  6:25 [PATCH 0/5] Make casf updates atomic and dsb ready Nemesa Garg
                   ` (6 preceding siblings ...)
  2025-12-09  7:10 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-12-09 13:31 ` Patchwork
  7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-12-09 13:31 UTC (permalink / raw)
  To: Nemesa Garg; +Cc: intel-xe

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

== Series Details ==

Series: Make casf updates atomic and dsb ready
URL   : https://patchwork.freedesktop.org/series/158668/
State : failure

== Summary ==

CI Bug Log - changes from xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f_FULL -> xe-pw-158668v1_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-158668v1_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-158668v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in xe-pw-158668v1_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_exec_system_allocator@many-stride-new-prefetch:
    - shard-bmg:          [PASS][1] -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-1/igt@xe_exec_system_allocator@many-stride-new-prefetch.html

  
Known issues
------------

  Here are the changes found in xe-pw-158668v1_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
    - shard-lnl:          [PASS][3] -> [FAIL][4] ([Intel XE#6054])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html

  * igt@kms_atomic_transition@modeset-transition-fencing:
    - shard-adlp:         [PASS][5] -> [DMESG-WARN][6] ([Intel XE#2953] / [Intel XE#4173]) +5 other tests dmesg-warn
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-adlp-6/igt@kms_atomic_transition@modeset-transition-fencing.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-adlp-2/igt@kms_atomic_transition@modeset-transition-fencing.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-adlp:         [PASS][7] -> [FAIL][8] ([Intel XE#1231])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#1124]) +1 other test skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#2887]) +2 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [PASS][11] -> [INCOMPLETE][12] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     [PASS][13] -> [INCOMPLETE][14] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][15] ([Intel XE#6168] / [i915#14968])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [DMESG-WARN][16] ([Intel XE#1727] / [Intel XE#3113])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6.html

  * igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2252]) +2 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html

  * igt@kms_colorop@plane-xr24-xr24-ctm_3x4_50_desat:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#6704])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-4/igt@kms_colorop@plane-xr24-xr24-ctm_3x4_50_desat.html

  * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][19] -> [DMESG-WARN][20] ([Intel XE#5354])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-4/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-5/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#1508])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_flip@wf_vblank-ts-check@a-edp1:
    - shard-lnl:          [PASS][22] -> [FAIL][23] ([Intel XE#5408] / [Intel XE#6266]) +1 other test fail
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@a-edp1.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#2311]) +4 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-linear:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#4141]) +2 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#2313]) +3 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-bmg:          [PASS][27] -> [ABORT][28] ([Intel XE#6740]) +1 other test abort
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-4/igt@kms_hdr@bpc-switch-dpms.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-5/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_plane_multiple@2x-tiling-none@pipe-b-hdmi-a-3-pipe-a-dp-2:
    - shard-bmg:          [PASS][29] -> [DMESG-FAIL][30] ([Intel XE#5545]) +1 other test dmesg-fail
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-none@pipe-b-hdmi-a-3-pipe-a-dp-2.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-none@pipe-b-hdmi-a-3-pipe-a-dp-2.html

  * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#1406] / [Intel XE#1489])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html

  * igt@kms_psr@fbc-psr2-sprite-plane-move:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-4/igt@kms_psr@fbc-psr2-sprite-plane-move.html

  * igt@kms_sharpness_filter@invalid-filter-with-scaler:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#6503])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-4/igt@kms_sharpness_filter@invalid-filter-with-scaler.html

  * igt@xe_configfs@ctx-restore-mid-bb:
    - shard-bmg:          [PASS][34] -> [SKIP][35] ([Intel XE#6557] / [Intel XE#6703]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@xe_configfs@ctx-restore-mid-bb.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@xe_configfs@ctx-restore-mid-bb.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          [PASS][36] -> [INCOMPLETE][37] ([Intel XE#6321])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_exec_reset@cm-close-fd:
    - shard-adlp:         [PASS][38] -> [DMESG-WARN][39] ([Intel XE#3868])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-adlp-9/igt@xe_exec_reset@cm-close-fd.html
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-adlp-3/igt@xe_exec_reset@cm-close-fd.html

  * igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#5007]) +1 other test skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset.html

  * igt@xe_exec_system_allocator@partial-atomic-middle-remap-no-cpu-fault:
    - shard-bmg:          [PASS][41] -> [FAIL][42] ([Intel XE#5625])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-3/igt@xe_exec_system_allocator@partial-atomic-middle-remap-no-cpu-fault.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-8/igt@xe_exec_system_allocator@partial-atomic-middle-remap-no-cpu-fault.html

  * igt@xe_exec_system_allocator@twice-mmap-huge:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#4943]) +6 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@xe_exec_system_allocator@twice-mmap-huge.html

  * igt@xe_live_ktest@xe_dma_buf:
    - shard-bmg:          [PASS][44] -> [FAIL][45] ([Intel XE#6558]) +1 other test fail
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@xe_live_ktest@xe_dma_buf.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@xe_live_ktest@xe_dma_buf.html

  * igt@xe_pmu@gt-frequency:
    - shard-dg2-set2:     [PASS][46] -> [FAIL][47] ([Intel XE#4819]) +1 other test fail
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-dg2-434/igt@xe_pmu@gt-frequency.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-dg2-432/igt@xe_pmu@gt-frequency.html

  * igt@xe_spin_batch@spin-all:
    - shard-bmg:          [PASS][48] -> [SKIP][49] ([Intel XE#6703]) +42 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@xe_spin_batch@spin-all.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@xe_spin_batch@spin-all.html

  * igt@xe_sriov_flr@flr-vfs-parallel:
    - shard-bmg:          [PASS][50] -> [FAIL][51] ([Intel XE#6569])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@xe_sriov_flr@flr-vfs-parallel.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@xe_sriov_flr@flr-vfs-parallel.html

  
#### Possible fixes ####

  * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
    - shard-adlp:         [FAIL][52] ([Intel XE#3908]) -> [PASS][53] +1 other test pass
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-adlp-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-adlp-2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         [FAIL][54] ([Intel XE#1231]) -> [PASS][55]
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-adlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
    - shard-bmg:          [SKIP][56] ([Intel XE#367]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-6/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-1/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     [INCOMPLETE][58] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html

  * igt@kms_color@invalid-gamma-lut-sizes:
    - shard-adlp:         [DMESG-WARN][60] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][61] +1 other test pass
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-adlp-6/igt@kms_color@invalid-gamma-lut-sizes.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-adlp-6/igt@kms_color@invalid-gamma-lut-sizes.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [FAIL][62] ([Intel XE#4633]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [FAIL][64] ([Intel XE#301]) -> [PASS][65] +1 other test pass
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-adlp:         [DMESG-WARN][66] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#6766]) -> [PASS][67] +1 other test pass
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-adlp-6/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][68] ([Intel XE#6766]) -> [PASS][69]
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-adlp-6/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html

  * igt@kms_flip_tiling@flip-change-tiling:
    - shard-adlp:         [FAIL][70] ([Intel XE#1874]) -> [PASS][71] +2 other tests pass
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling.html

  * igt@kms_hdr@invalid-hdr:
    - shard-dg2-set2:     [SKIP][72] ([Intel XE#455]) -> [PASS][73]
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-dg2-432/igt@kms_hdr@invalid-hdr.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-dg2-463/igt@kms_hdr@invalid-hdr.html

  * igt@kms_pm_rpm@basic-pci-d3-state:
    - shard-dg2-set2:     [FAIL][74] ([Intel XE#4741]) -> [PASS][75]
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-dg2-435/igt@kms_pm_rpm@basic-pci-d3-state.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-dg2-436/igt@kms_pm_rpm@basic-pci-d3-state.html

  * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
    - shard-lnl:          [FAIL][76] ([Intel XE#2142]) -> [PASS][77] +1 other test pass
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
    - shard-lnl:          [FAIL][78] ([Intel XE#5625]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html

  * igt@xe_pmu@engine-activity-accuracy-90:
    - shard-lnl:          [FAIL][80] ([Intel XE#6251]) -> [PASS][81] +4 other tests pass
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-90.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-90.html

  * igt@xe_pmu@engine-activity-single-load-idle:
    - shard-dg2-set2:     [FAIL][82] ([Intel XE#6812]) -> [PASS][83] +1 other test pass
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-dg2-433/igt@xe_pmu@engine-activity-single-load-idle.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-dg2-435/igt@xe_pmu@engine-activity-single-load-idle.html

  * igt@xe_vm@bind-array-enobufs:
    - shard-dg2-set2:     [FAIL][84] ([Intel XE#6774]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-dg2-434/igt@xe_vm@bind-array-enobufs.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-dg2-432/igt@xe_vm@bind-array-enobufs.html

  
#### Warnings ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic:
    - shard-lnl:          [FAIL][86] ([Intel XE#6676]) -> [FAIL][87] ([Intel XE#6054] / [Intel XE#6676])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-bmg:          [DMESG-FAIL][88] ([Intel XE#5545]) -> [INCOMPLETE][89] ([Intel XE#1727] / [Intel XE#6819])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3:
    - shard-bmg:          [DMESG-FAIL][90] ([Intel XE#5545]) -> [DMESG-FAIL][91] ([Intel XE#1727] / [Intel XE#6819])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-90:
    - shard-bmg:          [SKIP][92] ([Intel XE#2327]) -> [SKIP][93] ([Intel XE#6703])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-bmg:          [SKIP][94] ([Intel XE#1124]) -> [SKIP][95] ([Intel XE#6703]) +2 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
    - shard-bmg:          [SKIP][96] ([Intel XE#2887]) -> [SKIP][97] ([Intel XE#6703]) +1 other test skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          [SKIP][98] ([Intel XE#3432]) -> [SKIP][99] ([Intel XE#6703])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
    - shard-bmg:          [SKIP][100] ([Intel XE#2252]) -> [SKIP][101] ([Intel XE#6703])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html

  * igt@kms_colorop@plane-xr24-xr24-pq_125_eotf-pq_125_inv_eotf-pq_125_eotf:
    - shard-bmg:          [SKIP][102] ([Intel XE#6704]) -> [SKIP][103] ([Intel XE#6703])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_colorop@plane-xr24-xr24-pq_125_eotf-pq_125_inv_eotf-pq_125_eotf.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@kms_colorop@plane-xr24-xr24-pq_125_eotf-pq_125_inv_eotf-pq_125_eotf.html

  * igt@kms_content_protection@srm:
    - shard-bmg:          [FAIL][104] ([Intel XE#1178]) -> [SKIP][105] ([Intel XE#6703])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_content_protection@srm.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@kms_content_protection@srm.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-bmg:          [FAIL][106] ([Intel XE#6793]) -> [SKIP][107] ([Intel XE#4354])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-6/igt@kms_dp_link_training@uhbr-sst.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-1/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
    - shard-bmg:          [SKIP][108] ([Intel XE#2311]) -> [SKIP][109] ([Intel XE#6703]) +2 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][110] ([Intel XE#4141]) -> [SKIP][111] ([Intel XE#6703]) +1 other test skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][112] ([Intel XE#2313]) -> [SKIP][113] ([Intel XE#6703])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][114] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][115] ([Intel XE#3544])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [ABORT][116] ([Intel XE#6740]) -> [SKIP][117] ([Intel XE#1503])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-4/igt@kms_hdr@invalid-hdr.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-bmg:          [SKIP][118] ([Intel XE#4329]) -> [SKIP][119] ([Intel XE#6703])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-bmg:          [SKIP][120] ([Intel XE#870]) -> [SKIP][121] ([Intel XE#6703])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_pm_backlight@fade-with-suspend.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
    - shard-bmg:          [SKIP][122] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][123] ([Intel XE#1406] / [Intel XE#6703]) +1 other test skip
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html

  * igt@kms_psr@fbc-psr2-primary-blt:
    - shard-bmg:          [SKIP][124] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) -> [SKIP][125] ([Intel XE#1406] / [Intel XE#6703])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_psr@fbc-psr2-primary-blt.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@kms_psr@fbc-psr2-primary-blt.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][126] ([Intel XE#2426]) -> [SKIP][127] ([Intel XE#2509])
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-bmg:          [SKIP][128] ([Intel XE#1499]) -> [SKIP][129] ([Intel XE#6703])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-drrs.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-drrs.html

  * igt@xe_eudebug@basic-vm-bind-discovery:
    - shard-bmg:          [SKIP][130] ([Intel XE#4837]) -> [SKIP][131] ([Intel XE#6703]) +1 other test skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-discovery.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-discovery.html

  * igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
    - shard-bmg:          [SKIP][132] ([Intel XE#4837] / [Intel XE#6665]) -> [SKIP][133] ([Intel XE#6703])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html

  * igt@xe_exec_system_allocator@many-large-mmap-huge:
    - shard-bmg:          [SKIP][134] ([Intel XE#4943]) -> [SKIP][135] ([Intel XE#6703])
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f/shard-bmg-1/igt@xe_exec_system_allocator@many-large-mmap-huge.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/shard-bmg-2/igt@xe_exec_system_allocator@many-large-mmap-huge.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
  [Intel XE#4741]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4741
  [Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
  [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
  [Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
  [Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
  [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
  [Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
  [Intel XE#6558]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6558
  [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6676
  [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
  [Intel XE#6704]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6704
  [Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
  [Intel XE#6766]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6766
  [Intel XE#6774]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6774
  [Intel XE#6793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6793
  [Intel XE#6812]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6812
  [Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [i915#14968]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14968


Build changes
-------------

  * Linux: xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f -> xe-pw-158668v1

  IGT_8659: 8659
  xe-4208-48deab361d3b570e2210875fdc8ffb29627d054f: 48deab361d3b570e2210875fdc8ffb29627d054f
  xe-pw-158668v1: 158668v1

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-158668v1/index.html

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

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

* Re: [PATCH 1/5] drm/i915/display: Move casf_compute_config
  2025-12-09  6:25 ` [PATCH 1/5] drm/i915/display: Move casf_compute_config Nemesa Garg
@ 2025-12-12 15:51   ` Ville Syrjälä
  0 siblings, 0 replies; 13+ messages in thread
From: Ville Syrjälä @ 2025-12-12 15:51 UTC (permalink / raw)
  To: Nemesa Garg; +Cc: intel-gfx, intel-xe, ville.syrjala, uma.shankar

On Tue, Dec 09, 2025 at 11:55:23AM +0530, Nemesa Garg wrote:
> Prefill calculations are getting screwed up as casf_compute
> is getting called in later stage. So move casf_compute_config
> to crtc_compute_config and check if there is a change in the
> sharpness strength, if so set the flag uapi.mode_changed
> so that everytime when strength changes casf_compute_config
> can be called and new strength value gets updated.
> 
> Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_casf.c    | 14 ++++++++++++++
>  drivers/gpu/drm/i915/display/intel_casf.h    |  3 +++
>  drivers/gpu/drm/i915/display/intel_display.c | 10 ++++++----
>  3 files changed, 23 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_casf.c b/drivers/gpu/drm/i915/display/intel_casf.c
> index 95339b496f24..6e45ff7d5ff7 100644
> --- a/drivers/gpu/drm/i915/display/intel_casf.c
> +++ b/drivers/gpu/drm/i915/display/intel_casf.c
> @@ -288,3 +288,17 @@ void intel_casf_disable(const struct intel_crtc_state *crtc_state)
>  	intel_de_write(display, SHARPNESS_CTL(crtc->pipe), 0);
>  	intel_de_write(display, SKL_PS_WIN_SZ(crtc->pipe, 1), 0);
>  }
> +
> +void intel_casf_check(struct intel_atomic_state *state)
> +{
> +	int i;
> +	struct intel_crtc_state *old_crtc_state, *new_crtc_state;
> +	struct intel_crtc *crtc;
> +
> +	for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state,
> +					    new_crtc_state, i) {
> +		if (new_crtc_state->uapi.sharpness_strength !=
> +		    old_crtc_state->uapi.sharpness_strength)
> +			new_crtc_state->uapi.mode_changed = true;

We alread have the exact same thing for the nearest neigbour sampling
stuff. Both should be handled in the same place.

> +	}
> +}
> diff --git a/drivers/gpu/drm/i915/display/intel_casf.h b/drivers/gpu/drm/i915/display/intel_casf.h
> index b3fb0bcb3f5b..2eec90d9d4c4 100644
> --- a/drivers/gpu/drm/i915/display/intel_casf.h
> +++ b/drivers/gpu/drm/i915/display/intel_casf.h
> @@ -9,6 +9,8 @@
>  #include <linux/types.h>
>  
>  struct intel_crtc_state;
> +struct intel_atomic_state;
> +struct intel_crtc;
>  
>  int intel_casf_compute_config(struct intel_crtc_state *crtc_state);
>  void intel_casf_update_strength(struct intel_crtc_state *new_crtc_state);
> @@ -17,5 +19,6 @@ void intel_casf_enable(struct intel_crtc_state *crtc_state);
>  void intel_casf_disable(const struct intel_crtc_state *crtc_state);
>  void intel_casf_scaler_compute_config(struct intel_crtc_state *crtc_state);
>  bool intel_casf_needs_scaler(const struct intel_crtc_state *crtc_state);
> +void intel_casf_check(struct intel_atomic_state *state);
>  
>  #endif /* __INTEL_CASF_H__ */
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
> index 9c6d3ecdb589..882ea286fc9c 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -2494,6 +2494,10 @@ static int intel_crtc_compute_config(struct intel_atomic_state *state,
>  
>  	intel_vrr_compute_guardband(crtc_state);
>  
> +	ret = intel_casf_compute_config(crtc_state);
> +	if (ret)
> +		return ret;
> +
>  	return 0;
>  }
>  
> @@ -4286,10 +4290,6 @@ static int intel_crtc_atomic_check(struct intel_atomic_state *state,
>  		return ret;
>  	}
>  
> -	ret = intel_casf_compute_config(crtc_state);
> -	if (ret)
> -		return ret;
> -
>  	if (DISPLAY_VER(display) >= 9) {
>  		if (intel_crtc_needs_modeset(crtc_state) ||
>  		    intel_crtc_needs_fastset(crtc_state) ||
> @@ -6435,6 +6435,8 @@ int intel_atomic_check(struct drm_device *dev,
>  
>  	intel_vrr_check_modeset(state);
>  
> +	intel_casf_check(state);
> +
>  	ret = drm_atomic_helper_check_modeset(dev, &state->base);
>  	if (ret)
>  		goto fail;
> -- 
> 2.25.1

-- 
Ville Syrjälä
Intel

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

* Re: [PATCH 3/5] drm/i915/display: Pass dsb_commit to CASF helpers
  2025-12-09  6:25 ` [PATCH 3/5] drm/i915/display: Pass dsb_commit " Nemesa Garg
@ 2025-12-12 16:34   ` Ville Syrjälä
  2025-12-16 14:59     ` Garg, Nemesa
  0 siblings, 1 reply; 13+ messages in thread
From: Ville Syrjälä @ 2025-12-12 16:34 UTC (permalink / raw)
  To: Nemesa Garg; +Cc: intel-gfx, intel-xe, ville.syrjala, uma.shankar

On Tue, Dec 09, 2025 at 11:55:25AM +0530, Nemesa Garg wrote:
> Incase of non-modeset enable the casf, update the
> strength or disable the casf through dsb.
> 
> Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_display.c | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
> index 256103d55409..7edfc8c2ae21 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -7300,6 +7300,8 @@ static void intel_atomic_dsb_finish(struct intel_atomic_state *state,
>  	struct intel_display *display = to_intel_display(state);
>  	struct intel_crtc_state *new_crtc_state =
>  		intel_atomic_get_new_crtc_state(state, crtc);
> +	struct intel_crtc_state *old_crtc_state =
> +		intel_atomic_get_old_crtc_state(state, crtc);
>  	unsigned int size = new_crtc_state->plane_color_changed ? 8192 : 1024;
>  
>  	if (!new_crtc_state->use_flipq &&
> @@ -7332,6 +7334,16 @@ static void intel_atomic_dsb_finish(struct intel_atomic_state *state,
>  		if (intel_crtc_needs_color_update(new_crtc_state))
>  			intel_color_commit_noarm(new_crtc_state->dsb_commit,
>  						 new_crtc_state);
> +		if (intel_casf_enabling(new_crtc_state, old_crtc_state))
> +			intel_casf_enable(new_crtc_state->dsb_commit,
> +					  new_crtc_state);
> +		else if (new_crtc_state->hw.casf_params.strength !=
> +				old_crtc_state->hw.casf_params.strength)
> +			intel_casf_update_strength(new_crtc_state->dsb_commit,
> +						   new_crtc_state);
> +		if (intel_casf_disabling(old_crtc_state, new_crtc_state))
> +			intel_casf_disable(new_crtc_state->dsb_commit,
> +					   new_crtc_state);

I don't want to see this casf stuff becoming even more special. It
needs to be made less special. So I think it should get completely
buried inside the existing pipe scaler/pfit codepaths.

>  		intel_crtc_planes_update_noarm(new_crtc_state->dsb_commit,
>  					       state, crtc);
>  
> -- 
> 2.25.1

-- 
Ville Syrjälä
Intel

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

* RE: [PATCH 3/5] drm/i915/display: Pass dsb_commit to CASF helpers
  2025-12-12 16:34   ` Ville Syrjälä
@ 2025-12-16 14:59     ` Garg, Nemesa
  2025-12-17  3:10       ` Garg, Nemesa
  0 siblings, 1 reply; 13+ messages in thread
From: Garg, Nemesa @ 2025-12-16 14:59 UTC (permalink / raw)
  To: Ville Syrjälä
  Cc: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org,
	Syrjala, Ville, Shankar, Uma



> -----Original Message-----
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Sent: Friday, December 12, 2025 10:05 PM
> To: Garg, Nemesa <nemesa.garg@intel.com>
> Cc: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org; Syrjala,
> Ville <ville.syrjala@intel.com>; Shankar, Uma <uma.shankar@intel.com>
> Subject: Re: [PATCH 3/5] drm/i915/display: Pass dsb_commit to CASF helpers
> 
> On Tue, Dec 09, 2025 at 11:55:25AM +0530, Nemesa Garg wrote:
> > Incase of non-modeset enable the casf, update the strength or disable
> > the casf through dsb.
> >
> > Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
> > ---
> >  drivers/gpu/drm/i915/display/intel_display.c | 12 ++++++++++++
> >  1 file changed, 12 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_display.c
> > b/drivers/gpu/drm/i915/display/intel_display.c
> > index 256103d55409..7edfc8c2ae21 100644
> > --- a/drivers/gpu/drm/i915/display/intel_display.c
> > +++ b/drivers/gpu/drm/i915/display/intel_display.c
> > @@ -7300,6 +7300,8 @@ static void intel_atomic_dsb_finish(struct
> intel_atomic_state *state,
> >  	struct intel_display *display = to_intel_display(state);
> >  	struct intel_crtc_state *new_crtc_state =
> >  		intel_atomic_get_new_crtc_state(state, crtc);
> > +	struct intel_crtc_state *old_crtc_state =
> > +		intel_atomic_get_old_crtc_state(state, crtc);
> >  	unsigned int size = new_crtc_state->plane_color_changed ? 8192 :
> > 1024;
> >
> >  	if (!new_crtc_state->use_flipq &&
> > @@ -7332,6 +7334,16 @@ static void intel_atomic_dsb_finish(struct
> intel_atomic_state *state,
> >  		if (intel_crtc_needs_color_update(new_crtc_state))
> >  			intel_color_commit_noarm(new_crtc_state-
> >dsb_commit,
> >  						 new_crtc_state);
> > +		if (intel_casf_enabling(new_crtc_state, old_crtc_state))
> > +			intel_casf_enable(new_crtc_state->dsb_commit,
> > +					  new_crtc_state);
> > +		else if (new_crtc_state->hw.casf_params.strength !=
> > +				old_crtc_state->hw.casf_params.strength)
> > +			intel_casf_update_strength(new_crtc_state-
> >dsb_commit,
> > +						   new_crtc_state);
> > +		if (intel_casf_disabling(old_crtc_state, new_crtc_state))
> > +			intel_casf_disable(new_crtc_state->dsb_commit,
> > +					   new_crtc_state);
> 
> I don't want to see this casf stuff becoming even more special. It needs to be
> made less special. So I think it should get completely buried inside the
> existing pipe scaler/pfit codepaths.
> 
Hi Ville,

For sharpness we need to call casf_enable during modeset as it will enable all registers related to scaler and sharpness and then we need to call casf_update_strength during fastest
as only sharpness_strength needs to be updated.

Do I need to add something like this :
               if (new_crtc_state->pch_pfit.enabled || crtc_state->hw.casf_params.casf_enable )
                        skl_pfit_enable(new_crtc_state);
and then call intel_casf_enable() and casf_update_strength() from skl_pfit_enable();

> >  		intel_crtc_planes_update_noarm(new_crtc_state-
> >dsb_commit,
> >  					       state, crtc);
> >
> > --
> > 2.25.1
> 
> --
> Ville Syrjälä
> Intel

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

* RE: [PATCH 3/5] drm/i915/display: Pass dsb_commit to CASF helpers
  2025-12-16 14:59     ` Garg, Nemesa
@ 2025-12-17  3:10       ` Garg, Nemesa
  0 siblings, 0 replies; 13+ messages in thread
From: Garg, Nemesa @ 2025-12-17  3:10 UTC (permalink / raw)
  To: Ville Syrjälä
  Cc: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org,
	Syrjala, Ville, Shankar, Uma



> -----Original Message-----
> From: Garg, Nemesa
> Sent: Tuesday, December 16, 2025 8:29 PM
> To: 'Ville Syrjälä' <ville.syrjala@linux.intel.com>
> Cc: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org; Syrjala,
> Ville <ville.syrjala@intel.com>; Shankar, Uma <uma.shankar@intel.com>
> Subject: RE: [PATCH 3/5] drm/i915/display: Pass dsb_commit to CASF helpers
> 
> 
> 
> > -----Original Message-----
> > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > Sent: Friday, December 12, 2025 10:05 PM
> > To: Garg, Nemesa <nemesa.garg@intel.com>
> > Cc: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org;
> > Syrjala, Ville <ville.syrjala@intel.com>; Shankar, Uma
> > <uma.shankar@intel.com>
> > Subject: Re: [PATCH 3/5] drm/i915/display: Pass dsb_commit to CASF
> > helpers
> >
> > On Tue, Dec 09, 2025 at 11:55:25AM +0530, Nemesa Garg wrote:
> > > Incase of non-modeset enable the casf, update the strength or
> > > disable the casf through dsb.
> > >
> > > Signed-off-by: Nemesa Garg <nemesa.garg@intel.com>
> > > ---
> > >  drivers/gpu/drm/i915/display/intel_display.c | 12 ++++++++++++
> > >  1 file changed, 12 insertions(+)
> > >
> > > diff --git a/drivers/gpu/drm/i915/display/intel_display.c
> > > b/drivers/gpu/drm/i915/display/intel_display.c
> > > index 256103d55409..7edfc8c2ae21 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_display.c
> > > +++ b/drivers/gpu/drm/i915/display/intel_display.c
> > > @@ -7300,6 +7300,8 @@ static void intel_atomic_dsb_finish(struct
> > intel_atomic_state *state,
> > >  	struct intel_display *display = to_intel_display(state);
> > >  	struct intel_crtc_state *new_crtc_state =
> > >  		intel_atomic_get_new_crtc_state(state, crtc);
> > > +	struct intel_crtc_state *old_crtc_state =
> > > +		intel_atomic_get_old_crtc_state(state, crtc);
> > >  	unsigned int size = new_crtc_state->plane_color_changed ? 8192 :
> > > 1024;
> > >
> > >  	if (!new_crtc_state->use_flipq &&
> > > @@ -7332,6 +7334,16 @@ static void intel_atomic_dsb_finish(struct
> > intel_atomic_state *state,
> > >  		if (intel_crtc_needs_color_update(new_crtc_state))
> > >  			intel_color_commit_noarm(new_crtc_state-
> > >dsb_commit,
> > >  						 new_crtc_state);
> > > +		if (intel_casf_enabling(new_crtc_state, old_crtc_state))
> > > +			intel_casf_enable(new_crtc_state->dsb_commit,
> > > +					  new_crtc_state);
> > > +		else if (new_crtc_state->hw.casf_params.strength !=
> > > +				old_crtc_state->hw.casf_params.strength)
> > > +			intel_casf_update_strength(new_crtc_state-
> > >dsb_commit,
> > > +						   new_crtc_state);
> > > +		if (intel_casf_disabling(old_crtc_state, new_crtc_state))
> > > +			intel_casf_disable(new_crtc_state->dsb_commit,
> > > +					   new_crtc_state);
> >
> > I don't want to see this casf stuff becoming even more special. It
> > needs to be made less special. So I think it should get completely
> > buried inside the existing pipe scaler/pfit codepaths.
> >
> Hi Ville,
> 
> For sharpness we need to call casf_enable during modeset as it will enable all
> registers related to scaler and sharpness and then we need to call
> casf_update_strength during fastest as only sharpness_strength needs to be
> updated.
> 
> Do I need to add something like this :
>                if (new_crtc_state->pch_pfit.enabled || crtc_state-
> >hw.casf_params.casf_enable )
>                         skl_pfit_enable(new_crtc_state); and then call
> intel_casf_enable() and casf_update_strength() from skl_pfit_enable();
> 
I meant either we can have this check if (new_crtc_state->pch_pfit.enabled || crtc_state-
> >hw.casf_params.casf_enable )
And then call skl_pfit_enable(new_crtc_state); or > intel_casf_enable();

Or inside skl_pfit_enable(new_crtc_state); we can have a check 
crtc_state->hw.casf_params.casf_enable ) and then call > intel_casf_enable();

> > >  		intel_crtc_planes_update_noarm(new_crtc_state-
> > >dsb_commit,
> > >  					       state, crtc);
> > >
> > > --
> > > 2.25.1
> >
> > --
> > Ville Syrjälä
> > Intel

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

end of thread, other threads:[~2025-12-17  3:10 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-09  6:25 [PATCH 0/5] Make casf updates atomic and dsb ready Nemesa Garg
2025-12-09  6:25 ` [PATCH 1/5] drm/i915/display: Move casf_compute_config Nemesa Garg
2025-12-12 15:51   ` Ville Syrjälä
2025-12-09  6:25 ` [PATCH 2/5] drm/i915/display: Add intel_dsb param to CASF helpers Nemesa Garg
2025-12-09  6:25 ` [PATCH 3/5] drm/i915/display: Pass dsb_commit " Nemesa Garg
2025-12-12 16:34   ` Ville Syrjälä
2025-12-16 14:59     ` Garg, Nemesa
2025-12-17  3:10       ` Garg, Nemesa
2025-12-09  6:25 ` [PATCH 4/5] drm/i915/display: Add intel_casf_arm() to enable casf Nemesa Garg
2025-12-09  6:25 ` [PATCH 5/5] drm/i915/display: Introduce skl_pipe_scaler_setup() Nemesa Garg
2025-12-09  6:36 ` ✓ CI.KUnit: success for Make casf updates atomic and dsb ready Patchwork
2025-12-09  7:10 ` ✓ Xe.CI.BAT: " Patchwork
2025-12-09 13:31 ` ✗ Xe.CI.Full: failure " Patchwork

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