Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/xe3lpd: Prune modes for YUV420
@ 2025-06-09 16:45 Suraj Kandpal
  2025-06-09 17:20 ` Cavitt, Jonathan
  2025-06-09 17:59 ` Ville Syrjälä
  0 siblings, 2 replies; 13+ messages in thread
From: Suraj Kandpal @ 2025-06-09 16:45 UTC (permalink / raw)
  To: intel-xe, intel-gfx; +Cc: ankit.k.nautiyal, Suraj Kandpal

We only support resolution up to 4k for single pipe when using
YUV420 format so we prune these modes and restrict the plane size
at src. This is because pipe scaling will not support YUV420 scaling
for hwidth > 4096.

--v2
-Use output format to check [Ville]
-Add Bspec references
-Modify commit messge to point to why this is needed

Bspec: 49247, 50441
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
---
 drivers/gpu/drm/i915/display/intel_dp.c | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index d04609460e8c..2691eeb50a26 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -1419,6 +1419,7 @@ intel_dp_mode_valid(struct drm_connector *_connector,
 	struct intel_display *display = to_intel_display(_connector->dev);
 	struct intel_connector *connector = to_intel_connector(_connector);
 	struct intel_dp *intel_dp = intel_attached_dp(connector);
+	enum intel_output_format sink_format, output_format;
 	const struct drm_display_mode *fixed_mode;
 	int target_clock = mode->clock;
 	int max_rate, mode_rate, max_lanes, max_link_clock;
@@ -1452,6 +1453,14 @@ intel_dp_mode_valid(struct drm_connector *_connector,
 						     mode->hdisplay, target_clock);
 	max_dotclk *= num_joined_pipes;
 
+	sink_format = intel_dp_sink_format(connector, mode);
+	output_format = intel_dp_output_format(connector, sink_format);
+	if (num_joined_pipes == 1) {
+		if (output_format == INTEL_OUTPUT_FORMAT_YCBCR420 &&
+		    mode->hdisplay > 4096)
+			return MODE_NO_420;
+	}
+
 	if (target_clock > max_dotclk)
 		return MODE_CLOCK_HIGH;
 
@@ -1467,11 +1476,8 @@ intel_dp_mode_valid(struct drm_connector *_connector,
 					   intel_dp_mode_min_output_bpp(connector, mode));
 
 	if (intel_dp_has_dsc(connector)) {
-		enum intel_output_format sink_format, output_format;
 		int pipe_bpp;
 
-		sink_format = intel_dp_sink_format(connector, mode);
-		output_format = intel_dp_output_format(connector, sink_format);
 		/*
 		 * TBD pass the connector BPC,
 		 * for now U8_MAX so that max BPC on that platform would be picked
-- 
2.34.1


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

* RE: [PATCH] drm/i915/xe3lpd: Prune modes for YUV420
  2025-06-09 16:45 Suraj Kandpal
@ 2025-06-09 17:20 ` Cavitt, Jonathan
  2025-06-09 17:59 ` Ville Syrjälä
  1 sibling, 0 replies; 13+ messages in thread
From: Cavitt, Jonathan @ 2025-06-09 17:20 UTC (permalink / raw)
  To: Kandpal, Suraj, intel-xe@lists.freedesktop.org,
	intel-gfx@lists.freedesktop.org
  Cc: Nautiyal, Ankit K, Kandpal, Suraj, Cavitt, Jonathan

-----Original Message-----
From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of Suraj Kandpal
Sent: Monday, June 9, 2025 9:46 AM
To: intel-xe@lists.freedesktop.org; intel-gfx@lists.freedesktop.org
Cc: Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>; Kandpal, Suraj <suraj.kandpal@intel.com>
Subject: [PATCH] drm/i915/xe3lpd: Prune modes for YUV420
> 
> We only support resolution up to 4k for single pipe when using
> YUV420 format so we prune these modes and restrict the plane size
> at src. This is because pipe scaling will not support YUV420 scaling
> for hwidth > 4096.
> 
> --v2
> -Use output format to check [Ville]
> -Add Bspec references
> -Modify commit messge to point to why this is needed
> 
> Bspec: 49247, 50441
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_dp.c | 12 +++++++++---
>  1 file changed, 9 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> index d04609460e8c..2691eeb50a26 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -1419,6 +1419,7 @@ intel_dp_mode_valid(struct drm_connector *_connector,
>  	struct intel_display *display = to_intel_display(_connector->dev);
>  	struct intel_connector *connector = to_intel_connector(_connector);
>  	struct intel_dp *intel_dp = intel_attached_dp(connector);
> +	enum intel_output_format sink_format, output_format;
>  	const struct drm_display_mode *fixed_mode;
>  	int target_clock = mode->clock;
>  	int max_rate, mode_rate, max_lanes, max_link_clock;
> @@ -1452,6 +1453,14 @@ intel_dp_mode_valid(struct drm_connector *_connector,
>  						     mode->hdisplay, target_clock);
>  	max_dotclk *= num_joined_pipes;
>  
> +	sink_format = intel_dp_sink_format(connector, mode);
> +	output_format = intel_dp_output_format(connector, sink_format);
> +	if (num_joined_pipes == 1) {
> +		if (output_format == INTEL_OUTPUT_FORMAT_YCBCR420 &&
> +		    mode->hdisplay > 4096)
> +			return MODE_NO_420;
> +	}

These nested if statements can probably be combined:

"""
	if (num_joined_pipes == 1 &&
	    output_format == INTEL_OUTPUT_FORMAT_YCBCR420 &&
	    mode->hdisplay > 4096)
		return MODE_NO_420;
"""

However, I think this is a matter of style preference, so I won't block on it.
And if there's a practical reason the if statements are broken up like this, then
that's also good enough reason to leave it as is.

Otherwise:
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
-Jonathan Cavitt

> +
>  	if (target_clock > max_dotclk)
>  		return MODE_CLOCK_HIGH;
>  
> @@ -1467,11 +1476,8 @@ intel_dp_mode_valid(struct drm_connector *_connector,
>  					   intel_dp_mode_min_output_bpp(connector, mode));
>  
>  	if (intel_dp_has_dsc(connector)) {
> -		enum intel_output_format sink_format, output_format;
>  		int pipe_bpp;
>  
> -		sink_format = intel_dp_sink_format(connector, mode);
> -		output_format = intel_dp_output_format(connector, sink_format);
>  		/*
>  		 * TBD pass the connector BPC,
>  		 * for now U8_MAX so that max BPC on that platform would be picked
> -- 
> 2.34.1
> 
> 

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

* Re: [PATCH] drm/i915/xe3lpd: Prune modes for YUV420
  2025-06-09 16:45 Suraj Kandpal
  2025-06-09 17:20 ` Cavitt, Jonathan
@ 2025-06-09 17:59 ` Ville Syrjälä
  2025-06-11  1:10   ` Kandpal, Suraj
  1 sibling, 1 reply; 13+ messages in thread
From: Ville Syrjälä @ 2025-06-09 17:59 UTC (permalink / raw)
  To: Suraj Kandpal; +Cc: intel-xe, intel-gfx, ankit.k.nautiyal

On Mon, Jun 09, 2025 at 10:15:48PM +0530, Suraj Kandpal wrote:
> We only support resolution up to 4k for single pipe when using
> YUV420 format so we prune these modes and restrict the plane size
> at src. This is because pipe scaling will not support YUV420 scaling
> for hwidth > 4096.
> 
> --v2
> -Use output format to check [Ville]
> -Add Bspec references
> -Modify commit messge to point to why this is needed
> 
> Bspec: 49247, 50441
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_dp.c | 12 +++++++++---
>  1 file changed, 9 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> index d04609460e8c..2691eeb50a26 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -1419,6 +1419,7 @@ intel_dp_mode_valid(struct drm_connector *_connector,
>  	struct intel_display *display = to_intel_display(_connector->dev);
>  	struct intel_connector *connector = to_intel_connector(_connector);
>  	struct intel_dp *intel_dp = intel_attached_dp(connector);
> +	enum intel_output_format sink_format, output_format;
>  	const struct drm_display_mode *fixed_mode;
>  	int target_clock = mode->clock;
>  	int max_rate, mode_rate, max_lanes, max_link_clock;
> @@ -1452,6 +1453,14 @@ intel_dp_mode_valid(struct drm_connector *_connector,
>  						     mode->hdisplay, target_clock);
>  	max_dotclk *= num_joined_pipes;
>  
> +	sink_format = intel_dp_sink_format(connector, mode);
> +	output_format = intel_dp_output_format(connector, sink_format);
> +	if (num_joined_pipes == 1) {
> +		if (output_format == INTEL_OUTPUT_FORMAT_YCBCR420 &&
> +		    mode->hdisplay > 4096)

Sprinkling random hw limits all over the codebase isn't a very good
approach. I think we want some kind of skl_scaler_mode_valid() for this.
And that should probably be routed via a intel_pfit_mode_valid() to keep
the level of abstraction similar to intel_pfit_compute_config().

> +			return MODE_NO_420;
> +	}
> +
>  	if (target_clock > max_dotclk)
>  		return MODE_CLOCK_HIGH;
>  
> @@ -1467,11 +1476,8 @@ intel_dp_mode_valid(struct drm_connector *_connector,
>  					   intel_dp_mode_min_output_bpp(connector, mode));
>  
>  	if (intel_dp_has_dsc(connector)) {
> -		enum intel_output_format sink_format, output_format;
>  		int pipe_bpp;
>  
> -		sink_format = intel_dp_sink_format(connector, mode);
> -		output_format = intel_dp_output_format(connector, sink_format);
>  		/*
>  		 * TBD pass the connector BPC,
>  		 * for now U8_MAX so that max BPC on that platform would be picked
> -- 
> 2.34.1

-- 
Ville Syrjälä
Intel

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

* RE: [PATCH] drm/i915/xe3lpd: Prune modes for YUV420
  2025-06-09 17:59 ` Ville Syrjälä
@ 2025-06-11  1:10   ` Kandpal, Suraj
  0 siblings, 0 replies; 13+ messages in thread
From: Kandpal, Suraj @ 2025-06-11  1:10 UTC (permalink / raw)
  To: Ville Syrjälä
  Cc: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org,
	Nautiyal, Ankit K



> -----Original Message-----
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Sent: Monday, June 9, 2025 11:30 PM
> To: Kandpal, Suraj <suraj.kandpal@intel.com>
> Cc: intel-xe@lists.freedesktop.org; intel-gfx@lists.freedesktop.org; Nautiyal,
> Ankit K <ankit.k.nautiyal@intel.com>
> Subject: Re: [PATCH] drm/i915/xe3lpd: Prune modes for YUV420
> 
> On Mon, Jun 09, 2025 at 10:15:48PM +0530, Suraj Kandpal wrote:
> > We only support resolution up to 4k for single pipe when using
> > YUV420 format so we prune these modes and restrict the plane size at
> > src. This is because pipe scaling will not support YUV420 scaling for
> > hwidth > 4096.
> >
> > --v2
> > -Use output format to check [Ville]
> > -Add Bspec references
> > -Modify commit messge to point to why this is needed
> >
> > Bspec: 49247, 50441
> > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> > ---
> >  drivers/gpu/drm/i915/display/intel_dp.c | 12 +++++++++---
> >  1 file changed, 9 insertions(+), 3 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c
> > b/drivers/gpu/drm/i915/display/intel_dp.c
> > index d04609460e8c..2691eeb50a26 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dp.c
> > +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> > @@ -1419,6 +1419,7 @@ intel_dp_mode_valid(struct drm_connector
> *_connector,
> >  	struct intel_display *display = to_intel_display(_connector->dev);
> >  	struct intel_connector *connector = to_intel_connector(_connector);
> >  	struct intel_dp *intel_dp = intel_attached_dp(connector);
> > +	enum intel_output_format sink_format, output_format;
> >  	const struct drm_display_mode *fixed_mode;
> >  	int target_clock = mode->clock;
> >  	int max_rate, mode_rate, max_lanes, max_link_clock; @@ -1452,6
> > +1453,14 @@ intel_dp_mode_valid(struct drm_connector *_connector,
> >  						     mode->hdisplay,
> target_clock);
> >  	max_dotclk *= num_joined_pipes;
> >
> > +	sink_format = intel_dp_sink_format(connector, mode);
> > +	output_format = intel_dp_output_format(connector, sink_format);
> > +	if (num_joined_pipes == 1) {
> > +		if (output_format == INTEL_OUTPUT_FORMAT_YCBCR420 &&
> > +		    mode->hdisplay > 4096)
> 
> Sprinkling random hw limits all over the codebase isn't a very good approach.
> I think we want some kind of skl_scaler_mode_valid() for this.
> And that should probably be routed via a intel_pfit_mode_valid() to keep the
> level of abstraction similar to intel_pfit_compute_config().

Sure will fix this.

Regards,
Suraj Kandpal

> 
> > +			return MODE_NO_420;
> > +	}
> > +
> >  	if (target_clock > max_dotclk)
> >  		return MODE_CLOCK_HIGH;
> >
> > @@ -1467,11 +1476,8 @@ intel_dp_mode_valid(struct drm_connector
> *_connector,
> >
> intel_dp_mode_min_output_bpp(connector, mode));
> >
> >  	if (intel_dp_has_dsc(connector)) {
> > -		enum intel_output_format sink_format, output_format;
> >  		int pipe_bpp;
> >
> > -		sink_format = intel_dp_sink_format(connector, mode);
> > -		output_format = intel_dp_output_format(connector,
> sink_format);
> >  		/*
> >  		 * TBD pass the connector BPC,
> >  		 * for now U8_MAX so that max BPC on that platform would
> be picked
> > --
> > 2.34.1
> 
> --
> Ville Syrjälä
> Intel

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

* [PATCH] drm/i915/xe3lpd: Prune modes for YUV420
@ 2025-06-17  4:43 Suraj Kandpal
  2025-06-17  4:50 ` ✓ CI.KUnit: success for " Patchwork
                   ` (3 more replies)
  0 siblings, 4 replies; 13+ messages in thread
From: Suraj Kandpal @ 2025-06-17  4:43 UTC (permalink / raw)
  To: intel-xe, intel-gfx; +Cc: ankit.k.nautiyal, Suraj Kandpal, Jonathan Cavitt

We only support resolution up to 4k for single pipe when using
YUV420 format so we prune these modes and restrict the plane size
at src. This is because pipe scaling will not support YUV420 scaling
for hwidth > 4096.

--v2
-Use output format to check [Ville]
-Add Bspec references
-Modify commit messge to point to why this is needed

--v3
-Use a function skl_scaler_mode_valid which is routed throug
intel_pfit_mode_valid [Ville]
-Combine the check conditons [Jonathan]

Bspec: 49247, 50441
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com> #v2
---
 drivers/gpu/drm/i915/display/intel_dp.c   | 10 +++++++---
 drivers/gpu/drm/i915/display/intel_hdmi.c |  3 +++
 drivers/gpu/drm/i915/display/intel_pfit.c | 12 ++++++++++++
 drivers/gpu/drm/i915/display/intel_pfit.h | 12 +++++++++++-
 drivers/gpu/drm/i915/display/skl_scaler.c | 18 ++++++++++++++++++
 drivers/gpu/drm/i915/display/skl_scaler.h | 12 ++++++++++++
 6 files changed, 63 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index 277b40b13948..7af936e6ea46 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -1418,6 +1418,7 @@ intel_dp_mode_valid(struct drm_connector *_connector,
 	struct intel_display *display = to_intel_display(_connector->dev);
 	struct intel_connector *connector = to_intel_connector(_connector);
 	struct intel_dp *intel_dp = intel_attached_dp(connector);
+	enum intel_output_format sink_format, output_format;
 	const struct drm_display_mode *fixed_mode;
 	int target_clock = mode->clock;
 	int max_rate, mode_rate, max_lanes, max_link_clock;
@@ -1451,6 +1452,12 @@ intel_dp_mode_valid(struct drm_connector *_connector,
 						     mode->hdisplay, target_clock);
 	max_dotclk *= num_joined_pipes;
 
+	sink_format = intel_dp_sink_format(connector, mode);
+	output_format = intel_dp_output_format(connector, sink_format);
+
+	if (!intel_pfit_mode_valid(display, mode, output_format, num_joined_pipes, &status))
+		return status;
+
 	if (target_clock > max_dotclk)
 		return MODE_CLOCK_HIGH;
 
@@ -1466,11 +1473,8 @@ intel_dp_mode_valid(struct drm_connector *_connector,
 					   intel_dp_mode_min_output_bpp(connector, mode));
 
 	if (intel_dp_has_dsc(connector)) {
-		enum intel_output_format sink_format, output_format;
 		int pipe_bpp;
 
-		sink_format = intel_dp_sink_format(connector, mode);
-		output_format = intel_dp_output_format(connector, sink_format);
 		/*
 		 * TBD pass the connector BPC,
 		 * for now U8_MAX so that max BPC on that platform would be picked
diff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c b/drivers/gpu/drm/i915/display/intel_hdmi.c
index 9961ff259298..53ba1e16100d 100644
--- a/drivers/gpu/drm/i915/display/intel_hdmi.c
+++ b/drivers/gpu/drm/i915/display/intel_hdmi.c
@@ -2053,6 +2053,9 @@ intel_hdmi_mode_valid(struct drm_connector *_connector,
 	else
 		sink_format = INTEL_OUTPUT_FORMAT_RGB;
 
+	if (!intel_pfit_mode_valid(display, mode, sink_format, 0, &status))
+		return status;
+
 	status = intel_hdmi_mode_clock_valid(&connector->base, clock, has_hdmi_sink, sink_format);
 	if (status != MODE_OK) {
 		if (ycbcr_420_only ||
diff --git a/drivers/gpu/drm/i915/display/intel_pfit.c b/drivers/gpu/drm/i915/display/intel_pfit.c
index 13541be4d6df..a8fb92c3417a 100644
--- a/drivers/gpu/drm/i915/display/intel_pfit.c
+++ b/drivers/gpu/drm/i915/display/intel_pfit.c
@@ -14,6 +14,7 @@
 #include "intel_lvds_regs.h"
 #include "intel_pfit.h"
 #include "intel_pfit_regs.h"
+#include "skl_scaler.h"
 
 static int intel_pch_pfit_check_dst_window(const struct intel_crtc_state *crtc_state)
 {
@@ -546,6 +547,17 @@ static int gmch_panel_fitting(struct intel_crtc_state *crtc_state,
 	return intel_gmch_pfit_check_timings(crtc_state);
 }
 
+bool
+intel_pfit_mode_valid(struct intel_display *display,
+		      const struct drm_display_mode *mode,
+		      enum intel_output_format output_format,
+		      int num_joined_pipes,
+		      enum drm_mode_status *status)
+{
+	return skl_scaler_mode_valid(display, mode, output_format,
+				     num_joined_pipes, status);
+}
+
 int intel_pfit_compute_config(struct intel_crtc_state *crtc_state,
 			      const struct drm_connector_state *conn_state)
 {
diff --git a/drivers/gpu/drm/i915/display/intel_pfit.h b/drivers/gpu/drm/i915/display/intel_pfit.h
index ef34f9b49d09..ce68ceebc700 100644
--- a/drivers/gpu/drm/i915/display/intel_pfit.h
+++ b/drivers/gpu/drm/i915/display/intel_pfit.h
@@ -6,8 +6,14 @@
 #ifndef __INTEL_PFIT_H__
 #define __INTEL_PFIT_H__
 
+#include <linux/types.h>
+
+enum drm_mode_status;
+struct drm_display_mode;
 struct drm_connector_state;
 struct intel_crtc_state;
+struct intel_display;
+enum intel_output_format;
 
 int intel_pfit_compute_config(struct intel_crtc_state *crtc_state,
 			      const struct drm_connector_state *conn_state);
@@ -17,5 +23,9 @@ void ilk_pfit_get_config(struct intel_crtc_state *crtc_state);
 void i9xx_pfit_enable(const struct intel_crtc_state *crtc_state);
 void i9xx_pfit_disable(const struct intel_crtc_state *old_crtc_state);
 void i9xx_pfit_get_config(struct intel_crtc_state *crtc_state);
-
+bool intel_pfit_mode_valid(struct intel_display *display,
+			   const struct drm_display_mode *mode,
+			   enum intel_output_format output_format,
+			   int num_joined_pipes,
+			   enum drm_mode_status *status);
 #endif /* __INTEL_PFIT_H__ */
diff --git a/drivers/gpu/drm/i915/display/skl_scaler.c b/drivers/gpu/drm/i915/display/skl_scaler.c
index d77798499c57..27001b52daf8 100644
--- a/drivers/gpu/drm/i915/display/skl_scaler.c
+++ b/drivers/gpu/drm/i915/display/skl_scaler.c
@@ -134,6 +134,24 @@ static void skl_scaler_max_dst_size(struct intel_crtc *crtc,
 	}
 }
 
+bool
+skl_scaler_mode_valid(struct intel_display *display,
+		      const struct drm_display_mode *mode,
+		      enum intel_output_format output_format,
+		      int num_joined_pipes,
+		      enum drm_mode_status *status)
+{
+	if (num_joined_pipes < 2 && output_format == INTEL_OUTPUT_FORMAT_YCBCR420) {
+		if (DISPLAY_VER(display) >= 14 &&
+		    mode->hdisplay > 4096) {
+			*status = MODE_NO_420;
+			return false;
+		}
+	}
+
+	return true;
+}
+
 static int
 skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
 		  unsigned int scaler_user, int *scaler_id,
diff --git a/drivers/gpu/drm/i915/display/skl_scaler.h b/drivers/gpu/drm/i915/display/skl_scaler.h
index 355ea15260ca..37c6543b4731 100644
--- a/drivers/gpu/drm/i915/display/skl_scaler.h
+++ b/drivers/gpu/drm/i915/display/skl_scaler.h
@@ -5,10 +5,16 @@
 #ifndef INTEL_SCALER_H
 #define INTEL_SCALER_H
 
+#include <linux/types.h>
+
+enum drm_mode_status;
+struct drm_display_mode;
 struct intel_atomic_state;
 struct intel_crtc;
 struct intel_crtc_state;
+struct intel_display;
 struct intel_dsb;
+enum intel_output_format;
 struct intel_plane;
 struct intel_plane_state;
 
@@ -32,4 +38,10 @@ void skl_scaler_disable(const struct intel_crtc_state *old_crtc_state);
 
 void skl_scaler_get_config(struct intel_crtc_state *crtc_state);
 
+bool skl_scaler_mode_valid(struct intel_display *display,
+			   const struct drm_display_mode *mode,
+			   enum intel_output_format output_format,
+			   int num_joined_pipes,
+			   enum drm_mode_status *status);
+
 #endif
-- 
2.34.1


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

* ✓ CI.KUnit: success for drm/i915/xe3lpd: Prune modes for YUV420
  2025-06-17  4:43 [PATCH] drm/i915/xe3lpd: Prune modes for YUV420 Suraj Kandpal
@ 2025-06-17  4:50 ` Patchwork
  2025-06-17  5:32 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-17  4:50 UTC (permalink / raw)
  To: Suraj Kandpal; +Cc: intel-xe

== Series Details ==

Series: drm/i915/xe3lpd: Prune modes for YUV420
URL   : https://patchwork.freedesktop.org/series/150361/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[04:49:05] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:49:09] 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
[04:49:36] Starting KUnit Kernel (1/1)...
[04:49:36] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:49:36] ================== guc_buf (11 subtests) ===================
[04:49:36] [PASSED] test_smallest
[04:49:36] [PASSED] test_largest
[04:49:36] [PASSED] test_granular
[04:49:36] [PASSED] test_unique
[04:49:36] [PASSED] test_overlap
[04:49:36] [PASSED] test_reusable
[04:49:36] [PASSED] test_too_big
[04:49:36] [PASSED] test_flush
[04:49:36] [PASSED] test_lookup
[04:49:36] [PASSED] test_data
[04:49:36] [PASSED] test_class
[04:49:36] ===================== [PASSED] guc_buf =====================
[04:49:36] =================== guc_dbm (7 subtests) ===================
[04:49:36] [PASSED] test_empty
[04:49:36] [PASSED] test_default
[04:49:36] ======================== test_size  ========================
[04:49:36] [PASSED] 4
[04:49:36] [PASSED] 8
[04:49:36] [PASSED] 32
[04:49:36] [PASSED] 256
[04:49:36] ==================== [PASSED] test_size ====================
[04:49:36] ======================= test_reuse  ========================
[04:49:36] [PASSED] 4
[04:49:36] [PASSED] 8
[04:49:36] [PASSED] 32
[04:49:36] [PASSED] 256
[04:49:36] =================== [PASSED] test_reuse ====================
[04:49:36] =================== test_range_overlap  ====================
[04:49:36] [PASSED] 4
[04:49:36] [PASSED] 8
[04:49:36] [PASSED] 32
[04:49:36] [PASSED] 256
[04:49:36] =============== [PASSED] test_range_overlap ================
[04:49:36] =================== test_range_compact  ====================
[04:49:36] [PASSED] 4
[04:49:36] [PASSED] 8
[04:49:36] [PASSED] 32
[04:49:36] [PASSED] 256
[04:49:36] =============== [PASSED] test_range_compact ================
[04:49:36] ==================== test_range_spare  =====================
[04:49:36] [PASSED] 4
[04:49:36] [PASSED] 8
[04:49:36] [PASSED] 32
[04:49:36] [PASSED] 256
[04:49:36] ================ [PASSED] test_range_spare =================
[04:49:36] ===================== [PASSED] guc_dbm =====================
[04:49:36] =================== guc_idm (6 subtests) ===================
[04:49:36] [PASSED] bad_init
[04:49:36] [PASSED] no_init
[04:49:36] [PASSED] init_fini
[04:49:36] [PASSED] check_used
[04:49:36] [PASSED] check_quota
[04:49:36] [PASSED] check_all
[04:49:36] ===================== [PASSED] guc_idm =====================
[04:49:36] ================== no_relay (3 subtests) ===================
[04:49:36] [PASSED] xe_drops_guc2pf_if_not_ready
[04:49:36] [PASSED] xe_drops_guc2vf_if_not_ready
[04:49:36] [PASSED] xe_rejects_send_if_not_ready
[04:49:36] ==================== [PASSED] no_relay =====================
[04:49:36] ================== pf_relay (14 subtests) ==================
[04:49:36] [PASSED] pf_rejects_guc2pf_too_short
[04:49:36] [PASSED] pf_rejects_guc2pf_too_long
[04:49:36] [PASSED] pf_rejects_guc2pf_no_payload
[04:49:36] [PASSED] pf_fails_no_payload
[04:49:36] [PASSED] pf_fails_bad_origin
[04:49:36] [PASSED] pf_fails_bad_type
[04:49:36] [PASSED] pf_txn_reports_error
[04:49:36] [PASSED] pf_txn_sends_pf2guc
[04:49:36] [PASSED] pf_sends_pf2guc
[04:49:36] [SKIPPED] pf_loopback_nop
[04:49:36] [SKIPPED] pf_loopback_echo
[04:49:36] [SKIPPED] pf_loopback_fail
[04:49:36] [SKIPPED] pf_loopback_busy
[04:49:36] [SKIPPED] pf_loopback_retry
[04:49:36] ==================== [PASSED] pf_relay =====================
[04:49:36] ================== vf_relay (3 subtests) ===================
[04:49:36] [PASSED] vf_rejects_guc2vf_too_short
[04:49:36] [PASSED] vf_rejects_guc2vf_too_long
[04:49:36] [PASSED] vf_rejects_guc2vf_no_payload
[04:49:36] ==================== [PASSED] vf_relay =====================
[04:49:36] ================= pf_service (11 subtests) =================
[04:49:36] [PASSED] pf_negotiate_any
[04:49:36] [PASSED] pf_negotiate_base_match
[04:49:36] [PASSED] pf_negotiate_base_newer
[04:49:36] [PASSED] pf_negotiate_base_next
[04:49:36] [SKIPPED] pf_negotiate_base_older
[04:49:36] [PASSED] pf_negotiate_base_prev
[04:49:36] [PASSED] pf_negotiate_latest_match
[04:49:36] [PASSED] pf_negotiate_latest_newer
[04:49:36] [PASSED] pf_negotiate_latest_next
[04:49:36] [SKIPPED] pf_negotiate_latest_older
[04:49:36] [SKIPPED] pf_negotiate_latest_prev
[04:49:36] =================== [PASSED] pf_service ====================
[04:49:36] ===================== lmtt (1 subtest) =====================
[04:49:36] ======================== test_ops  =========================
[04:49:36] [PASSED] 2-level
[04:49:36] [PASSED] multi-level
[04:49:36] ==================== [PASSED] test_ops =====================
[04:49:36] ====================== [PASSED] lmtt =======================
[04:49:36] =================== xe_mocs (2 subtests) ===================
[04:49:36] ================ xe_live_mocs_kernel_kunit  ================
[04:49:36] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[04:49:36] ================ xe_live_mocs_reset_kunit  =================
[04:49:36] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[04:49:36] ==================== [SKIPPED] xe_mocs =====================
[04:49:36] ================= xe_migrate (2 subtests) ==================
[04:49:36] ================= xe_migrate_sanity_kunit  =================
[04:49:36] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[04:49:36] ================== xe_validate_ccs_kunit  ==================
[04:49:36] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[04:49:36] =================== [SKIPPED] xe_migrate ===================
[04:49:36] ================== xe_dma_buf (1 subtest) ==================
[04:49:36] ==================== xe_dma_buf_kunit  =====================
[04:49:36] ================ [SKIPPED] xe_dma_buf_kunit ================
[04:49:36] =================== [SKIPPED] xe_dma_buf ===================
[04:49:36] ================= xe_bo_shrink (1 subtest) =================
[04:49:36] =================== xe_bo_shrink_kunit  ====================
[04:49:36] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[04:49:36] ================== [SKIPPED] xe_bo_shrink ==================
[04:49:36] ==================== xe_bo (2 subtests) ====================
[04:49:36] ================== xe_ccs_migrate_kunit  ===================
[04:49:36] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[04:49:36] ==================== xe_bo_evict_kunit  ====================
[04:49:36] =============== [SKIPPED] xe_bo_evict_kunit ================
[04:49:36] ===================== [SKIPPED] xe_bo ======================
[04:49:36] ==================== args (11 subtests) ====================
[04:49:36] [PASSED] count_args_test
[04:49:36] [PASSED] call_args_example
[04:49:36] [PASSED] call_args_test
[04:49:36] [PASSED] drop_first_arg_example
[04:49:36] [PASSED] drop_first_arg_test
[04:49:36] [PASSED] first_arg_example
[04:49:36] [PASSED] first_arg_test
[04:49:36] [PASSED] last_arg_example
[04:49:36] [PASSED] last_arg_test
[04:49:36] [PASSED] pick_arg_example
[04:49:36] [PASSED] sep_comma_example
[04:49:36] ====================== [PASSED] args =======================
[04:49:36] =================== xe_pci (2 subtests) ====================
[04:49:36] ==================== check_graphics_ip  ====================
[04:49:36] [PASSED] 12.70 Xe_LPG
[04:49:36] [PASSED] 12.71 Xe_LPG
[04:49:36] [PASSED] 12.74 Xe_LPG+
[04:49:36] [PASSED] 20.01 Xe2_HPG
[04:49:36] [PASSED] 20.02 Xe2_HPG
[04:49:36] [PASSED] 20.04 Xe2_LPG
[04:49:36] [PASSED] 30.00 Xe3_LPG
[04:49:36] [PASSED] 30.01 Xe3_LPG
[04:49:36] ================ [PASSED] check_graphics_ip ================
[04:49:36] ===================== check_media_ip  ======================
[04:49:36] [PASSED] 13.00 Xe_LPM+
[04:49:36] [PASSED] 13.01 Xe2_HPM
[04:49:36] [PASSED] 20.00 Xe2_LPM
[04:49:36] [PASSED] 30.00 Xe3_LPM
[04:49:36] ================= [PASSED] check_media_ip ==================
stty: 'standard input': Inappropriate ioctl for device
[04:49:36] ===================== [PASSED] xe_pci ======================
[04:49:36] =================== xe_rtp (2 subtests) ====================
[04:49:36] =============== xe_rtp_process_to_sr_tests  ================
[04:49:36] [PASSED] coalesce-same-reg
[04:49:36] [PASSED] no-match-no-add
[04:49:36] [PASSED] match-or
[04:49:36] [PASSED] match-or-xfail
[04:49:36] [PASSED] no-match-no-add-multiple-rules
[04:49:36] [PASSED] two-regs-two-entries
[04:49:36] [PASSED] clr-one-set-other
[04:49:36] [PASSED] set-field
[04:49:36] [PASSED] conflict-duplicate
[04:49:36] [PASSED] conflict-not-disjoint
[04:49:36] [PASSED] conflict-reg-type
[04:49:36] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[04:49:36] ================== xe_rtp_process_tests  ===================
[04:49:36] [PASSED] active1
[04:49:36] [PASSED] active2
[04:49:36] [PASSED] active-inactive
[04:49:36] [PASSED] inactive-active
[04:49:36] [PASSED] inactive-1st_or_active-inactive
[04:49:36] [PASSED] inactive-2nd_or_active-inactive
[04:49:36] [PASSED] inactive-last_or_active-inactive
[04:49:36] [PASSED] inactive-no_or_active-inactive
[04:49:36] ============== [PASSED] xe_rtp_process_tests ===============
[04:49:36] ===================== [PASSED] xe_rtp ======================
[04:49:36] ==================== xe_wa (1 subtest) =====================
[04:49:36] ======================== xe_wa_gt  =========================
[04:49:36] [PASSED] TIGERLAKE (B0)
[04:49:36] [PASSED] DG1 (A0)
[04:49:36] [PASSED] DG1 (B0)
[04:49:36] [PASSED] ALDERLAKE_S (A0)
[04:49:36] [PASSED] ALDERLAKE_S (B0)
[04:49:36] [PASSED] ALDERLAKE_S (C0)
[04:49:36] [PASSED] ALDERLAKE_S (D0)
[04:49:36] [PASSED] ALDERLAKE_P (A0)
[04:49:36] [PASSED] ALDERLAKE_P (B0)
[04:49:36] [PASSED] ALDERLAKE_P (C0)
[04:49:36] [PASSED] ALDERLAKE_S_RPLS (D0)
[04:49:36] [PASSED] ALDERLAKE_P_RPLU (E0)
[04:49:36] [PASSED] DG2_G10 (C0)
[04:49:36] [PASSED] DG2_G11 (B1)
[04:49:36] [PASSED] DG2_G12 (A1)
[04:49:36] [PASSED] METEORLAKE (g:A0, m:A0)
[04:49:36] [PASSED] METEORLAKE (g:A0, m:A0)
[04:49:36] [PASSED] METEORLAKE (g:A0, m:A0)
[04:49:36] [PASSED] LUNARLAKE (g:A0, m:A0)
[04:49:36] [PASSED] LUNARLAKE (g:B0, m:A0)
[04:49:36] [PASSED] BATTLEMAGE (g:A0, m:A1)
[04:49:36] ==================== [PASSED] xe_wa_gt =====================
[04:49:36] ====================== [PASSED] xe_wa ======================
[04:49:36] ============================================================
[04:49:36] Testing complete. Ran 143 tests: passed: 127, skipped: 16
[04:49:36] Elapsed time: 31.167s total, 4.186s configuring, 26.665s building, 0.298s running

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

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[04:50:00] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:50:01] 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
[04:50:09] Starting KUnit Kernel (1/1)...
[04:50:09] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:50:09] ================= ttm_device (5 subtests) ==================
[04:50:09] [PASSED] ttm_device_init_basic
[04:50:09] [PASSED] ttm_device_init_multiple
[04:50:09] [PASSED] ttm_device_fini_basic
[04:50:09] [PASSED] ttm_device_init_no_vma_man
[04:50:09] ================== ttm_device_init_pools  ==================
[04:50:09] [PASSED] No DMA allocations, no DMA32 required
[04:50:09] [PASSED] DMA allocations, DMA32 required
[04:50:09] [PASSED] No DMA allocations, DMA32 required
[04:50:09] [PASSED] DMA allocations, no DMA32 required
[04:50:09] ============== [PASSED] ttm_device_init_pools ==============
[04:50:09] =================== [PASSED] ttm_device ====================
[04:50:09] ================== ttm_pool (8 subtests) ===================
[04:50:09] ================== ttm_pool_alloc_basic  ===================
[04:50:09] [PASSED] One page
[04:50:09] [PASSED] More than one page
[04:50:09] [PASSED] Above the allocation limit
[04:50:09] [PASSED] One page, with coherent DMA mappings enabled
[04:50:09] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[04:50:09] ============== [PASSED] ttm_pool_alloc_basic ===============
[04:50:09] ============== ttm_pool_alloc_basic_dma_addr  ==============
[04:50:09] [PASSED] One page
[04:50:09] [PASSED] More than one page
[04:50:09] [PASSED] Above the allocation limit
[04:50:09] [PASSED] One page, with coherent DMA mappings enabled
[04:50:09] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[04:50:09] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[04:50:09] [PASSED] ttm_pool_alloc_order_caching_match
[04:50:09] [PASSED] ttm_pool_alloc_caching_mismatch
[04:50:09] [PASSED] ttm_pool_alloc_order_mismatch
[04:50:09] [PASSED] ttm_pool_free_dma_alloc
[04:50:09] [PASSED] ttm_pool_free_no_dma_alloc
[04:50:09] [PASSED] ttm_pool_fini_basic
[04:50:09] ==================== [PASSED] ttm_pool =====================
[04:50:09] ================ ttm_resource (8 subtests) =================
[04:50:09] ================= ttm_resource_init_basic  =================
[04:50:09] [PASSED] Init resource in TTM_PL_SYSTEM
[04:50:09] [PASSED] Init resource in TTM_PL_VRAM
[04:50:09] [PASSED] Init resource in a private placement
[04:50:09] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[04:50:09] ============= [PASSED] ttm_resource_init_basic =============
[04:50:09] [PASSED] ttm_resource_init_pinned
[04:50:09] [PASSED] ttm_resource_fini_basic
[04:50:09] [PASSED] ttm_resource_manager_init_basic
[04:50:09] [PASSED] ttm_resource_manager_usage_basic
[04:50:09] [PASSED] ttm_resource_manager_set_used_basic
[04:50:09] [PASSED] ttm_sys_man_alloc_basic
[04:50:09] [PASSED] ttm_sys_man_free_basic
[04:50:09] ================== [PASSED] ttm_resource ===================
[04:50:09] =================== ttm_tt (15 subtests) ===================
[04:50:09] ==================== ttm_tt_init_basic  ====================
[04:50:09] [PASSED] Page-aligned size
[04:50:09] [PASSED] Extra pages requested
[04:50:09] ================ [PASSED] ttm_tt_init_basic ================
[04:50:09] [PASSED] ttm_tt_init_misaligned
[04:50:09] [PASSED] ttm_tt_fini_basic
[04:50:09] [PASSED] ttm_tt_fini_sg
[04:50:09] [PASSED] ttm_tt_fini_shmem
[04:50:09] [PASSED] ttm_tt_create_basic
[04:50:09] [PASSED] ttm_tt_create_invalid_bo_type
[04:50:09] [PASSED] ttm_tt_create_ttm_exists
[04:50:09] [PASSED] ttm_tt_create_failed
[04:50:09] [PASSED] ttm_tt_destroy_basic
[04:50:09] [PASSED] ttm_tt_populate_null_ttm
[04:50:09] [PASSED] ttm_tt_populate_populated_ttm
[04:50:09] [PASSED] ttm_tt_unpopulate_basic
[04:50:09] [PASSED] ttm_tt_unpopulate_empty_ttm
[04:50:09] [PASSED] ttm_tt_swapin_basic
[04:50:09] ===================== [PASSED] ttm_tt ======================
[04:50:09] =================== ttm_bo (14 subtests) ===================
[04:50:09] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[04:50:09] [PASSED] Cannot be interrupted and sleeps
[04:50:09] [PASSED] Cannot be interrupted, locks straight away
[04:50:09] [PASSED] Can be interrupted, sleeps
[04:50:09] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[04:50:09] [PASSED] ttm_bo_reserve_locked_no_sleep
[04:50:09] [PASSED] ttm_bo_reserve_no_wait_ticket
[04:50:09] [PASSED] ttm_bo_reserve_double_resv
[04:50:09] [PASSED] ttm_bo_reserve_interrupted
[04:50:09] [PASSED] ttm_bo_reserve_deadlock
[04:50:09] [PASSED] ttm_bo_unreserve_basic
[04:50:09] [PASSED] ttm_bo_unreserve_pinned
[04:50:09] [PASSED] ttm_bo_unreserve_bulk
[04:50:09] [PASSED] ttm_bo_put_basic
[04:50:09] [PASSED] ttm_bo_put_shared_resv
[04:50:09] [PASSED] ttm_bo_pin_basic
[04:50:09] [PASSED] ttm_bo_pin_unpin_resource
[04:50:09] [PASSED] ttm_bo_multiple_pin_one_unpin
[04:50:09] ===================== [PASSED] ttm_bo ======================
[04:50:09] ============== ttm_bo_validate (22 subtests) ===============
[04:50:09] ============== ttm_bo_init_reserved_sys_man  ===============
[04:50:09] [PASSED] Buffer object for userspace
[04:50:09] [PASSED] Kernel buffer object
[04:50:09] [PASSED] Shared buffer object
[04:50:09] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[04:50:09] ============== ttm_bo_init_reserved_mock_man  ==============
[04:50:09] [PASSED] Buffer object for userspace
[04:50:09] [PASSED] Kernel buffer object
[04:50:09] [PASSED] Shared buffer object
[04:50:09] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[04:50:09] [PASSED] ttm_bo_init_reserved_resv
[04:50:09] ================== ttm_bo_validate_basic  ==================
[04:50:09] [PASSED] Buffer object for userspace
[04:50:09] [PASSED] Kernel buffer object
[04:50:09] [PASSED] Shared buffer object
[04:50:09] ============== [PASSED] ttm_bo_validate_basic ==============
[04:50:09] [PASSED] ttm_bo_validate_invalid_placement
[04:50:09] ============= ttm_bo_validate_same_placement  ==============
[04:50:09] [PASSED] System manager
[04:50:09] [PASSED] VRAM manager
[04:50:09] ========= [PASSED] ttm_bo_validate_same_placement ==========
[04:50:09] [PASSED] ttm_bo_validate_failed_alloc
[04:50:09] [PASSED] ttm_bo_validate_pinned
[04:50:09] [PASSED] ttm_bo_validate_busy_placement
[04:50:09] ================ ttm_bo_validate_multihop  =================
[04:50:09] [PASSED] Buffer object for userspace
[04:50:09] [PASSED] Kernel buffer object
[04:50:09] [PASSED] Shared buffer object
[04:50:09] ============ [PASSED] ttm_bo_validate_multihop =============
[04:50:09] ========== ttm_bo_validate_no_placement_signaled  ==========
[04:50:09] [PASSED] Buffer object in system domain, no page vector
[04:50:09] [PASSED] Buffer object in system domain with an existing page vector
[04:50:09] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[04:50:09] ======== ttm_bo_validate_no_placement_not_signaled  ========
[04:50:09] [PASSED] Buffer object for userspace
[04:50:09] [PASSED] Kernel buffer object
[04:50:09] [PASSED] Shared buffer object
[04:50:09] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[04:50:09] [PASSED] ttm_bo_validate_move_fence_signaled
[04:50:09] ========= ttm_bo_validate_move_fence_not_signaled  =========
[04:50:09] [PASSED] Waits for GPU
[04:50:09] [PASSED] Tries to lock straight away
[04:50:10] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[04:50:10] [PASSED] ttm_bo_validate_swapout
[04:50:10] [PASSED] ttm_bo_validate_happy_evict
[04:50:10] [PASSED] ttm_bo_validate_all_pinned_evict
[04:50:10] [PASSED] ttm_bo_validate_allowed_only_evict
[04:50:10] [PASSED] ttm_bo_validate_deleted_evict
[04:50:10] [PASSED] ttm_bo_validate_busy_domain_evict
[04:50:10] [PASSED] ttm_bo_validate_evict_gutting
[04:50:10] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[04:50:10] ================= [PASSED] ttm_bo_validate =================
[04:50:10] ============================================================
[04:50:10] Testing complete. Ran 102 tests: passed: 102
[04:50:10] Elapsed time: 9.967s total, 1.619s configuring, 7.731s building, 0.526s 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 drm/i915/xe3lpd: Prune modes for YUV420
  2025-06-17  4:43 [PATCH] drm/i915/xe3lpd: Prune modes for YUV420 Suraj Kandpal
  2025-06-17  4:50 ` ✓ CI.KUnit: success for " Patchwork
@ 2025-06-17  5:32 ` Patchwork
  2025-06-17  9:00 ` [PATCH] " Jani Nikula
  2025-06-17 13:31 ` ✗ Xe.CI.Full: failure for " Patchwork
  3 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-17  5:32 UTC (permalink / raw)
  To: Kandpal, Suraj; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915/xe3lpd: Prune modes for YUV420
URL   : https://patchwork.freedesktop.org/series/150361/
State : success

== Summary ==

CI Bug Log - changes from xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52_BAT -> xe-pw-150361v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (8 -> 8)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


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

  * Linux: xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52 -> xe-pw-150361v1

  IGT_8412: 8412
  xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52: 6f72990d9e0fe084afe257621edd730444a8bc52
  xe-pw-150361v1: 150361v1

== Logs ==

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

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

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

* Re: [PATCH] drm/i915/xe3lpd: Prune modes for YUV420
  2025-06-17  4:43 [PATCH] drm/i915/xe3lpd: Prune modes for YUV420 Suraj Kandpal
  2025-06-17  4:50 ` ✓ CI.KUnit: success for " Patchwork
  2025-06-17  5:32 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-06-17  9:00 ` Jani Nikula
  2025-06-17  9:32   ` Kandpal, Suraj
  2025-06-20  6:46   ` Kandpal, Suraj
  2025-06-17 13:31 ` ✗ Xe.CI.Full: failure for " Patchwork
  3 siblings, 2 replies; 13+ messages in thread
From: Jani Nikula @ 2025-06-17  9:00 UTC (permalink / raw)
  To: Suraj Kandpal, intel-xe, intel-gfx
  Cc: ankit.k.nautiyal, Suraj Kandpal, Jonathan Cavitt

On Tue, 17 Jun 2025, Suraj Kandpal <suraj.kandpal@intel.com> wrote:
> We only support resolution up to 4k for single pipe when using
> YUV420 format so we prune these modes and restrict the plane size
> at src. This is because pipe scaling will not support YUV420 scaling
> for hwidth > 4096.
>
> --v2
> -Use output format to check [Ville]
> -Add Bspec references
> -Modify commit messge to point to why this is needed
>
> --v3
> -Use a function skl_scaler_mode_valid which is routed throug
> intel_pfit_mode_valid [Ville]
> -Combine the check conditons [Jonathan]
>
> Bspec: 49247, 50441
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com> #v2
> ---
>  drivers/gpu/drm/i915/display/intel_dp.c   | 10 +++++++---
>  drivers/gpu/drm/i915/display/intel_hdmi.c |  3 +++
>  drivers/gpu/drm/i915/display/intel_pfit.c | 12 ++++++++++++
>  drivers/gpu/drm/i915/display/intel_pfit.h | 12 +++++++++++-
>  drivers/gpu/drm/i915/display/skl_scaler.c | 18 ++++++++++++++++++
>  drivers/gpu/drm/i915/display/skl_scaler.h | 12 ++++++++++++
>  6 files changed, 63 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> index 277b40b13948..7af936e6ea46 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -1418,6 +1418,7 @@ intel_dp_mode_valid(struct drm_connector *_connector,
>  	struct intel_display *display = to_intel_display(_connector->dev);
>  	struct intel_connector *connector = to_intel_connector(_connector);
>  	struct intel_dp *intel_dp = intel_attached_dp(connector);
> +	enum intel_output_format sink_format, output_format;
>  	const struct drm_display_mode *fixed_mode;
>  	int target_clock = mode->clock;
>  	int max_rate, mode_rate, max_lanes, max_link_clock;
> @@ -1451,6 +1452,12 @@ intel_dp_mode_valid(struct drm_connector *_connector,
>  						     mode->hdisplay, target_clock);
>  	max_dotclk *= num_joined_pipes;
>  
> +	sink_format = intel_dp_sink_format(connector, mode);
> +	output_format = intel_dp_output_format(connector, sink_format);
> +
> +	if (!intel_pfit_mode_valid(display, mode, output_format, num_joined_pipes, &status))
> +		return status;

I think all _mode_valid() functions should return enum drm_mode_status.

This now returns pretty much the same thing in two different ways, and
leaves status unset if it returns true. That's not a great interface.

> +
>  	if (target_clock > max_dotclk)
>  		return MODE_CLOCK_HIGH;
>  
> @@ -1466,11 +1473,8 @@ intel_dp_mode_valid(struct drm_connector *_connector,
>  					   intel_dp_mode_min_output_bpp(connector, mode));
>  
>  	if (intel_dp_has_dsc(connector)) {
> -		enum intel_output_format sink_format, output_format;
>  		int pipe_bpp;
>  
> -		sink_format = intel_dp_sink_format(connector, mode);
> -		output_format = intel_dp_output_format(connector, sink_format);
>  		/*
>  		 * TBD pass the connector BPC,
>  		 * for now U8_MAX so that max BPC on that platform would be picked
> diff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c b/drivers/gpu/drm/i915/display/intel_hdmi.c
> index 9961ff259298..53ba1e16100d 100644
> --- a/drivers/gpu/drm/i915/display/intel_hdmi.c
> +++ b/drivers/gpu/drm/i915/display/intel_hdmi.c
> @@ -2053,6 +2053,9 @@ intel_hdmi_mode_valid(struct drm_connector *_connector,
>  	else
>  		sink_format = INTEL_OUTPUT_FORMAT_RGB;
>  
> +	if (!intel_pfit_mode_valid(display, mode, sink_format, 0, &status))
> +		return status;
> +
>  	status = intel_hdmi_mode_clock_valid(&connector->base, clock, has_hdmi_sink, sink_format);
>  	if (status != MODE_OK) {
>  		if (ycbcr_420_only ||
> diff --git a/drivers/gpu/drm/i915/display/intel_pfit.c b/drivers/gpu/drm/i915/display/intel_pfit.c
> index 13541be4d6df..a8fb92c3417a 100644
> --- a/drivers/gpu/drm/i915/display/intel_pfit.c
> +++ b/drivers/gpu/drm/i915/display/intel_pfit.c
> @@ -14,6 +14,7 @@
>  #include "intel_lvds_regs.h"
>  #include "intel_pfit.h"
>  #include "intel_pfit_regs.h"
> +#include "skl_scaler.h"
>  
>  static int intel_pch_pfit_check_dst_window(const struct intel_crtc_state *crtc_state)
>  {
> @@ -546,6 +547,17 @@ static int gmch_panel_fitting(struct intel_crtc_state *crtc_state,
>  	return intel_gmch_pfit_check_timings(crtc_state);
>  }
>  
> +bool
> +intel_pfit_mode_valid(struct intel_display *display,
> +		      const struct drm_display_mode *mode,
> +		      enum intel_output_format output_format,
> +		      int num_joined_pipes,
> +		      enum drm_mode_status *status)
> +{
> +	return skl_scaler_mode_valid(display, mode, output_format,
> +				     num_joined_pipes, status);
> +}
> +

Please explain why we're adding the extra dummy layer. Do we expect more
to be added here?

BR,
Jani.


>  int intel_pfit_compute_config(struct intel_crtc_state *crtc_state,
>  			      const struct drm_connector_state *conn_state)
>  {
> diff --git a/drivers/gpu/drm/i915/display/intel_pfit.h b/drivers/gpu/drm/i915/display/intel_pfit.h
> index ef34f9b49d09..ce68ceebc700 100644
> --- a/drivers/gpu/drm/i915/display/intel_pfit.h
> +++ b/drivers/gpu/drm/i915/display/intel_pfit.h
> @@ -6,8 +6,14 @@
>  #ifndef __INTEL_PFIT_H__
>  #define __INTEL_PFIT_H__
>  
> +#include <linux/types.h>
> +
> +enum drm_mode_status;
> +struct drm_display_mode;
>  struct drm_connector_state;
>  struct intel_crtc_state;
> +struct intel_display;
> +enum intel_output_format;
>  
>  int intel_pfit_compute_config(struct intel_crtc_state *crtc_state,
>  			      const struct drm_connector_state *conn_state);
> @@ -17,5 +23,9 @@ void ilk_pfit_get_config(struct intel_crtc_state *crtc_state);
>  void i9xx_pfit_enable(const struct intel_crtc_state *crtc_state);
>  void i9xx_pfit_disable(const struct intel_crtc_state *old_crtc_state);
>  void i9xx_pfit_get_config(struct intel_crtc_state *crtc_state);
> -
> +bool intel_pfit_mode_valid(struct intel_display *display,
> +			   const struct drm_display_mode *mode,
> +			   enum intel_output_format output_format,
> +			   int num_joined_pipes,
> +			   enum drm_mode_status *status);
>  #endif /* __INTEL_PFIT_H__ */
> diff --git a/drivers/gpu/drm/i915/display/skl_scaler.c b/drivers/gpu/drm/i915/display/skl_scaler.c
> index d77798499c57..27001b52daf8 100644
> --- a/drivers/gpu/drm/i915/display/skl_scaler.c
> +++ b/drivers/gpu/drm/i915/display/skl_scaler.c
> @@ -134,6 +134,24 @@ static void skl_scaler_max_dst_size(struct intel_crtc *crtc,
>  	}
>  }
>  
> +bool
> +skl_scaler_mode_valid(struct intel_display *display,
> +		      const struct drm_display_mode *mode,
> +		      enum intel_output_format output_format,
> +		      int num_joined_pipes,
> +		      enum drm_mode_status *status)
> +{
> +	if (num_joined_pipes < 2 && output_format == INTEL_OUTPUT_FORMAT_YCBCR420) {
> +		if (DISPLAY_VER(display) >= 14 &&
> +		    mode->hdisplay > 4096) {
> +			*status = MODE_NO_420;
> +			return false;
> +		}
> +	}
> +
> +	return true;
> +}
> +
>  static int
>  skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
>  		  unsigned int scaler_user, int *scaler_id,
> diff --git a/drivers/gpu/drm/i915/display/skl_scaler.h b/drivers/gpu/drm/i915/display/skl_scaler.h
> index 355ea15260ca..37c6543b4731 100644
> --- a/drivers/gpu/drm/i915/display/skl_scaler.h
> +++ b/drivers/gpu/drm/i915/display/skl_scaler.h
> @@ -5,10 +5,16 @@
>  #ifndef INTEL_SCALER_H
>  #define INTEL_SCALER_H
>  
> +#include <linux/types.h>
> +
> +enum drm_mode_status;
> +struct drm_display_mode;
>  struct intel_atomic_state;
>  struct intel_crtc;
>  struct intel_crtc_state;
> +struct intel_display;
>  struct intel_dsb;
> +enum intel_output_format;
>  struct intel_plane;
>  struct intel_plane_state;
>  
> @@ -32,4 +38,10 @@ void skl_scaler_disable(const struct intel_crtc_state *old_crtc_state);
>  
>  void skl_scaler_get_config(struct intel_crtc_state *crtc_state);
>  
> +bool skl_scaler_mode_valid(struct intel_display *display,
> +			   const struct drm_display_mode *mode,
> +			   enum intel_output_format output_format,
> +			   int num_joined_pipes,
> +			   enum drm_mode_status *status);
> +
>  #endif

-- 
Jani Nikula, Intel

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

* RE: [PATCH] drm/i915/xe3lpd: Prune modes for YUV420
  2025-06-17  9:00 ` [PATCH] " Jani Nikula
@ 2025-06-17  9:32   ` Kandpal, Suraj
  2025-06-20  6:46   ` Kandpal, Suraj
  1 sibling, 0 replies; 13+ messages in thread
From: Kandpal, Suraj @ 2025-06-17  9:32 UTC (permalink / raw)
  To: Jani Nikula, intel-xe@lists.freedesktop.org,
	intel-gfx@lists.freedesktop.org
  Cc: Nautiyal, Ankit K, Cavitt, Jonathan



> -----Original Message-----
> From: Jani Nikula <jani.nikula@linux.intel.com>
> Sent: Tuesday, June 17, 2025 2:30 PM
> To: Kandpal, Suraj <suraj.kandpal@intel.com>; intel-xe@lists.freedesktop.org;
> intel-gfx@lists.freedesktop.org
> Cc: Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>; Kandpal, Suraj
> <suraj.kandpal@intel.com>; Cavitt, Jonathan <jonathan.cavitt@intel.com>
> Subject: Re: [PATCH] drm/i915/xe3lpd: Prune modes for YUV420
> 
> On Tue, 17 Jun 2025, Suraj Kandpal <suraj.kandpal@intel.com> wrote:
> > We only support resolution up to 4k for single pipe when using
> > YUV420 format so we prune these modes and restrict the plane size at
> > src. This is because pipe scaling will not support YUV420 scaling for
> > hwidth > 4096.
> >
> > --v2
> > -Use output format to check [Ville]
> > -Add Bspec references
> > -Modify commit messge to point to why this is needed
> >
> > --v3
> > -Use a function skl_scaler_mode_valid which is routed throug
> > intel_pfit_mode_valid [Ville] -Combine the check conditons [Jonathan]
> >
> > Bspec: 49247, 50441
> > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> > Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com> #v2
> > ---
> >  drivers/gpu/drm/i915/display/intel_dp.c   | 10 +++++++---
> >  drivers/gpu/drm/i915/display/intel_hdmi.c |  3 +++
> > drivers/gpu/drm/i915/display/intel_pfit.c | 12 ++++++++++++
> > drivers/gpu/drm/i915/display/intel_pfit.h | 12 +++++++++++-
> > drivers/gpu/drm/i915/display/skl_scaler.c | 18 ++++++++++++++++++
> > drivers/gpu/drm/i915/display/skl_scaler.h | 12 ++++++++++++
> >  6 files changed, 63 insertions(+), 4 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c
> > b/drivers/gpu/drm/i915/display/intel_dp.c
> > index 277b40b13948..7af936e6ea46 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dp.c
> > +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> > @@ -1418,6 +1418,7 @@ intel_dp_mode_valid(struct drm_connector
> *_connector,
> >  	struct intel_display *display = to_intel_display(_connector->dev);
> >  	struct intel_connector *connector = to_intel_connector(_connector);
> >  	struct intel_dp *intel_dp = intel_attached_dp(connector);
> > +	enum intel_output_format sink_format, output_format;
> >  	const struct drm_display_mode *fixed_mode;
> >  	int target_clock = mode->clock;
> >  	int max_rate, mode_rate, max_lanes, max_link_clock; @@ -1451,6
> > +1452,12 @@ intel_dp_mode_valid(struct drm_connector *_connector,
> >  						     mode->hdisplay,
> target_clock);
> >  	max_dotclk *= num_joined_pipes;
> >
> > +	sink_format = intel_dp_sink_format(connector, mode);
> > +	output_format = intel_dp_output_format(connector, sink_format);
> > +
> > +	if (!intel_pfit_mode_valid(display, mode, output_format,
> num_joined_pipes, &status))
> > +		return status;
> 
> I think all _mode_valid() functions should return enum drm_mode_status.
> 
> This now returns pretty much the same thing in two different ways, and
> leaves status unset if it returns true. That's not a great interface.

Sure will fix this

Regards,
Suraj Kandpal

> 
> > +
> >  	if (target_clock > max_dotclk)
> >  		return MODE_CLOCK_HIGH;
> >
> > @@ -1466,11 +1473,8 @@ intel_dp_mode_valid(struct drm_connector
> *_connector,
> >
> intel_dp_mode_min_output_bpp(connector, mode));
> >
> >  	if (intel_dp_has_dsc(connector)) {
> > -		enum intel_output_format sink_format, output_format;
> >  		int pipe_bpp;
> >
> > -		sink_format = intel_dp_sink_format(connector, mode);
> > -		output_format = intel_dp_output_format(connector,
> sink_format);
> >  		/*
> >  		 * TBD pass the connector BPC,
> >  		 * for now U8_MAX so that max BPC on that platform would
> be picked
> > diff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c
> > b/drivers/gpu/drm/i915/display/intel_hdmi.c
> > index 9961ff259298..53ba1e16100d 100644
> > --- a/drivers/gpu/drm/i915/display/intel_hdmi.c
> > +++ b/drivers/gpu/drm/i915/display/intel_hdmi.c
> > @@ -2053,6 +2053,9 @@ intel_hdmi_mode_valid(struct drm_connector
> *_connector,
> >  	else
> >  		sink_format = INTEL_OUTPUT_FORMAT_RGB;
> >
> > +	if (!intel_pfit_mode_valid(display, mode, sink_format, 0, &status))
> > +		return status;
> > +
> >  	status = intel_hdmi_mode_clock_valid(&connector->base, clock,
> has_hdmi_sink, sink_format);
> >  	if (status != MODE_OK) {
> >  		if (ycbcr_420_only ||
> > diff --git a/drivers/gpu/drm/i915/display/intel_pfit.c
> > b/drivers/gpu/drm/i915/display/intel_pfit.c
> > index 13541be4d6df..a8fb92c3417a 100644
> > --- a/drivers/gpu/drm/i915/display/intel_pfit.c
> > +++ b/drivers/gpu/drm/i915/display/intel_pfit.c
> > @@ -14,6 +14,7 @@
> >  #include "intel_lvds_regs.h"
> >  #include "intel_pfit.h"
> >  #include "intel_pfit_regs.h"
> > +#include "skl_scaler.h"
> >
> >  static int intel_pch_pfit_check_dst_window(const struct
> > intel_crtc_state *crtc_state)  { @@ -546,6 +547,17 @@ static int
> > gmch_panel_fitting(struct intel_crtc_state *crtc_state,
> >  	return intel_gmch_pfit_check_timings(crtc_state);
> >  }
> >
> > +bool
> > +intel_pfit_mode_valid(struct intel_display *display,
> > +		      const struct drm_display_mode *mode,
> > +		      enum intel_output_format output_format,
> > +		      int num_joined_pipes,
> > +		      enum drm_mode_status *status) {
> > +	return skl_scaler_mode_valid(display, mode, output_format,
> > +				     num_joined_pipes, status);
> > +}
> > +
> 
> Please explain why we're adding the extra dummy layer. Do we expect more
> to be added here?
> 
> BR,
> Jani.
> 
> 
> >  int intel_pfit_compute_config(struct intel_crtc_state *crtc_state,
> >  			      const struct drm_connector_state *conn_state)  {
> diff --git
> > a/drivers/gpu/drm/i915/display/intel_pfit.h
> > b/drivers/gpu/drm/i915/display/intel_pfit.h
> > index ef34f9b49d09..ce68ceebc700 100644
> > --- a/drivers/gpu/drm/i915/display/intel_pfit.h
> > +++ b/drivers/gpu/drm/i915/display/intel_pfit.h
> > @@ -6,8 +6,14 @@
> >  #ifndef __INTEL_PFIT_H__
> >  #define __INTEL_PFIT_H__
> >
> > +#include <linux/types.h>
> > +
> > +enum drm_mode_status;
> > +struct drm_display_mode;
> >  struct drm_connector_state;
> >  struct intel_crtc_state;
> > +struct intel_display;
> > +enum intel_output_format;
> >
> >  int intel_pfit_compute_config(struct intel_crtc_state *crtc_state,
> >  			      const struct drm_connector_state *conn_state);
> @@ -17,5
> > +23,9 @@ void ilk_pfit_get_config(struct intel_crtc_state
> > *crtc_state);  void i9xx_pfit_enable(const struct intel_crtc_state
> > *crtc_state);  void i9xx_pfit_disable(const struct intel_crtc_state
> > *old_crtc_state);  void i9xx_pfit_get_config(struct intel_crtc_state
> > *crtc_state);
> > -
> > +bool intel_pfit_mode_valid(struct intel_display *display,
> > +			   const struct drm_display_mode *mode,
> > +			   enum intel_output_format output_format,
> > +			   int num_joined_pipes,
> > +			   enum drm_mode_status *status);
> >  #endif /* __INTEL_PFIT_H__ */
> > diff --git a/drivers/gpu/drm/i915/display/skl_scaler.c
> > b/drivers/gpu/drm/i915/display/skl_scaler.c
> > index d77798499c57..27001b52daf8 100644
> > --- a/drivers/gpu/drm/i915/display/skl_scaler.c
> > +++ b/drivers/gpu/drm/i915/display/skl_scaler.c
> > @@ -134,6 +134,24 @@ static void skl_scaler_max_dst_size(struct intel_crtc
> *crtc,
> >  	}
> >  }
> >
> > +bool
> > +skl_scaler_mode_valid(struct intel_display *display,
> > +		      const struct drm_display_mode *mode,
> > +		      enum intel_output_format output_format,
> > +		      int num_joined_pipes,
> > +		      enum drm_mode_status *status) {
> > +	if (num_joined_pipes < 2 && output_format ==
> INTEL_OUTPUT_FORMAT_YCBCR420) {
> > +		if (DISPLAY_VER(display) >= 14 &&
> > +		    mode->hdisplay > 4096) {
> > +			*status = MODE_NO_420;
> > +			return false;
> > +		}
> > +	}
> > +
> > +	return true;
> > +}
> > +
> >  static int
> >  skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
> >  		  unsigned int scaler_user, int *scaler_id, diff --git
> > a/drivers/gpu/drm/i915/display/skl_scaler.h
> > b/drivers/gpu/drm/i915/display/skl_scaler.h
> > index 355ea15260ca..37c6543b4731 100644
> > --- a/drivers/gpu/drm/i915/display/skl_scaler.h
> > +++ b/drivers/gpu/drm/i915/display/skl_scaler.h
> > @@ -5,10 +5,16 @@
> >  #ifndef INTEL_SCALER_H
> >  #define INTEL_SCALER_H
> >
> > +#include <linux/types.h>
> > +
> > +enum drm_mode_status;
> > +struct drm_display_mode;
> >  struct intel_atomic_state;
> >  struct intel_crtc;
> >  struct intel_crtc_state;
> > +struct intel_display;
> >  struct intel_dsb;
> > +enum intel_output_format;
> >  struct intel_plane;
> >  struct intel_plane_state;
> >
> > @@ -32,4 +38,10 @@ void skl_scaler_disable(const struct
> > intel_crtc_state *old_crtc_state);
> >
> >  void skl_scaler_get_config(struct intel_crtc_state *crtc_state);
> >
> > +bool skl_scaler_mode_valid(struct intel_display *display,
> > +			   const struct drm_display_mode *mode,
> > +			   enum intel_output_format output_format,
> > +			   int num_joined_pipes,
> > +			   enum drm_mode_status *status);
> > +
> >  #endif
> 
> --
> Jani Nikula, Intel

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

* ✗ Xe.CI.Full: failure for drm/i915/xe3lpd: Prune modes for YUV420
  2025-06-17  4:43 [PATCH] drm/i915/xe3lpd: Prune modes for YUV420 Suraj Kandpal
                   ` (2 preceding siblings ...)
  2025-06-17  9:00 ` [PATCH] " Jani Nikula
@ 2025-06-17 13:31 ` Patchwork
  3 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-17 13:31 UTC (permalink / raw)
  To: Kandpal, Suraj; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915/xe3lpd: Prune modes for YUV420
URL   : https://patchwork.freedesktop.org/series/150361/
State : failure

== Summary ==

CI Bug Log - changes from xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52_FULL -> xe-pw-150361v1_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-150361v1_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-150361v1_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-150361v1_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_frontbuffer_tracking@psr-slowdraw:
    - shard-lnl:          NOTRUN -> [INCOMPLETE][1]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-slowdraw.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
    - shard-adlp:         NOTRUN -> [SKIP][2] ([Intel XE#3157])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][3] ([Intel XE#1407]) +1 other test skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-adlp:         NOTRUN -> [SKIP][4] ([Intel XE#1124]) +3 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-adlp:         NOTRUN -> [SKIP][5] ([Intel XE#316]) +2 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-1/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@linear-8bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#2327])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@kms_big_fb@linear-8bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][7] ([Intel XE#4543])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#1124]) +2 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-8/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#607])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-lnl:          NOTRUN -> [SKIP][10] ([Intel XE#1477])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][11] ([Intel XE#1124]) +1 other test skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          [PASS][12] -> [SKIP][13] ([Intel XE#2314] / [Intel XE#2894])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
    - shard-adlp:         NOTRUN -> [SKIP][14] ([Intel XE#2191])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-3-displays-1920x1080p:
    - shard-lnl:          NOTRUN -> [SKIP][15] ([Intel XE#367])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#367]) +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][18] ([Intel XE#2887]) +3 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2887]) +4 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-8/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][20] ([Intel XE#3442])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#3432])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][22] ([Intel XE#787]) +17 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-d-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][23] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-dg2-set2:     [PASS][24] -> [INCOMPLETE][25] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
    - shard-dg2-set2:     [PASS][26] -> [INCOMPLETE][27] ([Intel XE#3124])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [PASS][28] -> [DMESG-WARN][29] ([Intel XE#1727] / [Intel XE#3113])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-adlp:         NOTRUN -> [SKIP][30] ([Intel XE#306])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-1/igt@kms_chamelium_color@ctm-0-50.html

  * igt@kms_chamelium_color@ctm-limited-range:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#2325])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@kms_chamelium_color@ctm-limited-range.html

  * igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
    - shard-lnl:          NOTRUN -> [SKIP][32] ([Intel XE#373]) +1 other test skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html

  * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#2252]) +2 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html

  * igt@kms_chamelium_frames@hdmi-crc-fast:
    - shard-adlp:         NOTRUN -> [SKIP][34] ([Intel XE#373]) +2 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@kms_chamelium_frames@hdmi-crc-fast.html

  * igt@kms_content_protection@uevent:
    - shard-lnl:          NOTRUN -> [SKIP][35] ([Intel XE#5176])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@kms_content_protection@uevent.html

  * igt@kms_content_protection@uevent@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][36] ([Intel XE#1188])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-7/igt@kms_content_protection@uevent@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-onscreen-32x32:
    - shard-lnl:          NOTRUN -> [SKIP][37] ([Intel XE#1424])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#2321]) +1 other test skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-bmg:          [PASS][39] -> [SKIP][40] ([Intel XE#2291]) +3 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
    - shard-adlp:         NOTRUN -> [SKIP][41] ([Intel XE#309]) +2 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-3/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [PASS][42] -> [FAIL][43] ([Intel XE#4633])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#2286])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-bmg:          [PASS][45] -> [SKIP][46] ([Intel XE#1340])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_dp_aux_dev:
    - shard-bmg:          [PASS][47] -> [SKIP][48] ([Intel XE#3009])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-1/igt@kms_dp_aux_dev.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-6/igt@kms_dp_aux_dev.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#4354])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_dsc@dsc-with-formats:
    - shard-lnl:          NOTRUN -> [SKIP][50] ([Intel XE#2244])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-7/igt@kms_dsc@dsc-with-formats.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
    - shard-adlp:         NOTRUN -> [SKIP][51] ([Intel XE#4422]) +1 other test skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html

  * igt@kms_feature_discovery@chamelium:
    - shard-adlp:         NOTRUN -> [SKIP][52] ([Intel XE#701])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@kms_feature_discovery@chamelium.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
    - shard-bmg:          [PASS][53] -> [SKIP][54] ([Intel XE#2316]) +8 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4:
    - shard-dg2-set2:     [PASS][55] -> [FAIL][56] ([Intel XE#301]) +5 other tests fail
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible:
    - shard-adlp:         NOTRUN -> [SKIP][57] ([Intel XE#310]) +1 other test skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
    - shard-lnl:          NOTRUN -> [SKIP][58] ([Intel XE#1421]) +1 other test skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-7/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a6:
    - shard-dg2-set2:     [PASS][59] -> [INCOMPLETE][60] ([Intel XE#2049]) +1 other test incomplete
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-dg2-434/igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a6.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-dg2-466/igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a6.html

  * igt@kms_flip@flip-vs-expired-vblank@c-dp4:
    - shard-dg2-set2:     [PASS][61] -> [FAIL][62] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html

  * igt@kms_flip@flip-vs-suspend@d-hdmi-a3:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][63] ([Intel XE#2049] / [Intel XE#2597])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-7/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][64] ([Intel XE#1401] / [Intel XE#1745])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][65] ([Intel XE#1401])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#2293]) +1 other test skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
    - shard-adlp:         NOTRUN -> [SKIP][68] ([Intel XE#455]) +10 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#2311]) +9 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#4141]) +4 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][71] ([Intel XE#651]) +2 other tests skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][72] ([Intel XE#656]) +11 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
    - shard-adlp:         NOTRUN -> [SKIP][73] ([Intel XE#651]) +5 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][74] ([Intel XE#2313]) +9 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
    - shard-adlp:         NOTRUN -> [SKIP][75] ([Intel XE#653]) +7 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt:
    - shard-adlp:         NOTRUN -> [SKIP][76] ([Intel XE#656]) +15 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html

  * igt@kms_hdr@static-toggle:
    - shard-bmg:          [PASS][77] -> [SKIP][78] ([Intel XE#1503])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-1/igt@kms_hdr@static-toggle.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-6/igt@kms_hdr@static-toggle.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][79] ([Intel XE#4090])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

  * igt@kms_plane_cursor@viewport:
    - shard-dg2-set2:     [PASS][80] -> [FAIL][81] ([Intel XE#616]) +1 other test fail
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-dg2-464/igt@kms_plane_cursor@viewport.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-dg2-435/igt@kms_plane_cursor@viewport.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [PASS][82] -> [SKIP][83] ([Intel XE#4596])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-4.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-adlp:         NOTRUN -> [SKIP][84] ([Intel XE#4596])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_multiple@tiling-x@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [FAIL][85] ([Intel XE#4658]) +3 other tests fail
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@kms_plane_multiple@tiling-x@pipe-b-edp-1.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
    - shard-bmg:          NOTRUN -> [SKIP][86] ([Intel XE#2763]) +4 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-bmg:          NOTRUN -> [SKIP][87] ([Intel XE#2392])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-adlp:         NOTRUN -> [SKIP][88] ([Intel XE#2007])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_pm_rpm@dpms-non-lpsp:
    - shard-adlp:         NOTRUN -> [SKIP][89] ([Intel XE#836])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@kms_pm_rpm@dpms-non-lpsp.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
    - shard-lnl:          NOTRUN -> [SKIP][90] ([Intel XE#2893]) +1 other test skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-lnl:          NOTRUN -> [SKIP][91] ([Intel XE#2893] / [Intel XE#4608])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][92] ([Intel XE#4608]) +1 other test skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          NOTRUN -> [SKIP][93] ([Intel XE#1489]) +1 other test skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
    - shard-adlp:         NOTRUN -> [SKIP][94] ([Intel XE#1489]) +2 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html

  * igt@kms_psr@fbc-pr-primary-blt:
    - shard-bmg:          NOTRUN -> [SKIP][95] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@kms_psr@fbc-pr-primary-blt.html

  * igt@kms_psr@fbc-pr-sprite-render:
    - shard-adlp:         NOTRUN -> [SKIP][96] ([Intel XE#2850] / [Intel XE#929]) +7 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@kms_psr@fbc-pr-sprite-render.html

  * igt@kms_psr@fbc-psr2-basic:
    - shard-lnl:          NOTRUN -> [SKIP][97] ([Intel XE#1406]) +3 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@kms_psr@fbc-psr2-basic.html

  * igt@kms_psr@fbc-psr2-basic@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][98] ([Intel XE#4609]) +1 other test skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@kms_psr@fbc-psr2-basic@edp-1.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
    - shard-bmg:          NOTRUN -> [SKIP][99] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html

  * igt@kms_vrr@cmrr:
    - shard-adlp:         NOTRUN -> [SKIP][100] ([Intel XE#2168])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@kms_vrr@cmrr.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [PASS][101] -> [FAIL][102] ([Intel XE#4459]) +1 other test fail
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@kms_vrr@negative-basic:
    - shard-bmg:          [PASS][103] -> [SKIP][104] ([Intel XE#1499])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-1/igt@kms_vrr@negative-basic.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-6/igt@kms_vrr@negative-basic.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
    - shard-bmg:          NOTRUN -> [SKIP][105] ([Intel XE#1091] / [Intel XE#2849])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html

  * igt@xe_eu_stall@blocking-re-enable:
    - shard-adlp:         NOTRUN -> [SKIP][106] ([Intel XE#4497])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@xe_eu_stall@blocking-re-enable.html

  * igt@xe_eudebug@discovery-empty:
    - shard-bmg:          NOTRUN -> [SKIP][107] ([Intel XE#4837]) +2 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@xe_eudebug@discovery-empty.html

  * igt@xe_eudebug_online@set-breakpoint:
    - shard-lnl:          NOTRUN -> [SKIP][108] ([Intel XE#4837]) +3 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@xe_eudebug_online@set-breakpoint.html

  * igt@xe_eudebug_online@stopped-thread:
    - shard-adlp:         NOTRUN -> [SKIP][109] ([Intel XE#4837]) +6 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@xe_eudebug_online@stopped-thread.html

  * igt@xe_evict@evict-small-cm:
    - shard-adlp:         NOTRUN -> [SKIP][110] ([Intel XE#261] / [Intel XE#688]) +1 other test skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-1/igt@xe_evict@evict-small-cm.html

  * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
    - shard-lnl:          NOTRUN -> [SKIP][111] ([Intel XE#688])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][112] ([Intel XE#2322]) +1 other test skip
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-no-exec-basic:
    - shard-adlp:         NOTRUN -> [SKIP][113] ([Intel XE#1392]) +2 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@xe_exec_basic@multigpu-no-exec-basic.html

  * igt@xe_exec_basic@multigpu-once-null-defer-mmap:
    - shard-lnl:          NOTRUN -> [SKIP][114] ([Intel XE#1392]) +2 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-prefetch:
    - shard-adlp:         NOTRUN -> [SKIP][115] ([Intel XE#288]) +10 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-prefetch.html

  * igt@xe_exec_reset@parallel-gt-reset:
    - shard-bmg:          [PASS][116] -> [DMESG-WARN][117] ([Intel XE#3876])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-5/igt@xe_exec_reset@parallel-gt-reset.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-2/igt@xe_exec_reset@parallel-gt-reset.html

  * igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge:
    - shard-bmg:          NOTRUN -> [SKIP][118] ([Intel XE#4943]) +7 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge:
    - shard-lnl:          NOTRUN -> [SKIP][119] ([Intel XE#4943]) +2 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge.html

  * igt@xe_exec_system_allocator@twice-mmap-shared-remap-dontunmap-eocheck:
    - shard-adlp:         NOTRUN -> [SKIP][120] ([Intel XE#4915]) +96 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-1/igt@xe_exec_system_allocator@twice-mmap-shared-remap-dontunmap-eocheck.html

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - shard-bmg:          NOTRUN -> [SKIP][121] ([Intel XE#2229])
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  * igt@xe_mmap@small-bar:
    - shard-adlp:         NOTRUN -> [SKIP][122] ([Intel XE#512])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@xe_mmap@small-bar.html

  * igt@xe_mmap@vram:
    - shard-lnl:          NOTRUN -> [SKIP][123] ([Intel XE#1416])
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-7/igt@xe_mmap@vram.html

  * igt@xe_oa@oa-formats:
    - shard-adlp:         NOTRUN -> [SKIP][124] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@xe_oa@oa-formats.html

  * igt@xe_peer2peer@read:
    - shard-adlp:         NOTRUN -> [SKIP][125] ([Intel XE#1061])
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@xe_peer2peer@read.html

  * igt@xe_peer2peer@write:
    - shard-bmg:          NOTRUN -> [SKIP][126] ([Intel XE#2427])
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-8/igt@xe_peer2peer@write.html

  * igt@xe_pm@s4-basic-exec:
    - shard-adlp:         [PASS][127] -> [ABORT][128] ([Intel XE#1794])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-adlp-6/igt@xe_pm@s4-basic-exec.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-9/igt@xe_pm@s4-basic-exec.html

  * igt@xe_pmu@engine-activity-load:
    - shard-adlp:         NOTRUN -> [ABORT][129] ([Intel XE#5214]) +2 other tests abort
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-1/igt@xe_pmu@engine-activity-load.html

  * igt@xe_pmu@gt-frequency:
    - shard-adlp:         NOTRUN -> [INCOMPLETE][130] ([Intel XE#5214]) +1 other test incomplete
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-9/igt@xe_pmu@gt-frequency.html

  * igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
    - shard-bmg:          NOTRUN -> [SKIP][131] ([Intel XE#4733])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html

  * igt@xe_query@multigpu-query-gt-list:
    - shard-bmg:          NOTRUN -> [SKIP][132] ([Intel XE#944])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@xe_query@multigpu-query-gt-list.html

  * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
    - shard-adlp:         NOTRUN -> [SKIP][133] ([Intel XE#944]) +1 other test skip
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html

  * igt@xe_query@multigpu-query-pxp-status:
    - shard-lnl:          NOTRUN -> [SKIP][134] ([Intel XE#944])
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@xe_query@multigpu-query-pxp-status.html

  * igt@xe_sriov_auto_provisioning@fair-allocation:
    - shard-bmg:          NOTRUN -> [SKIP][135] ([Intel XE#4130])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-3/igt@xe_sriov_auto_provisioning@fair-allocation.html

  
#### Possible fixes ####

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-adlp:         [FAIL][136] ([Intel XE#3908]) -> [PASS][137] +1 other test pass
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-adlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-adlp:         [DMESG-FAIL][138] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543]) -> [PASS][139]
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-adlp-9/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [SKIP][140] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][141]
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-bmg:          [SKIP][142] ([Intel XE#2291]) -> [PASS][143] +6 other tests pass
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          [SKIP][144] ([Intel XE#4302]) -> [PASS][145]
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4:
    - shard-dg2-set2:     [FAIL][146] ([Intel XE#301]) -> [PASS][147] +3 other tests pass
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html

  * igt@kms_flip@2x-plain-flip:
    - shard-bmg:          [SKIP][148] ([Intel XE#2316]) -> [PASS][149] +7 other tests pass
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-6/igt@kms_flip@2x-plain-flip.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-1/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1:
    - shard-lnl:          [FAIL][150] ([Intel XE#886]) -> [PASS][151] +1 other test pass
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [INCOMPLETE][152] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][153] +2 other tests pass
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-wf_vblank-interruptible@a-hdmi-a3:
    - shard-bmg:          [FAIL][154] ([Intel XE#2882]) -> [PASS][155] +2 other tests pass
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-8/igt@kms_flip@flip-vs-wf_vblank-interruptible@a-hdmi-a3.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-2/igt@kms_flip@flip-vs-wf_vblank-interruptible@a-hdmi-a3.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [SKIP][156] ([Intel XE#3012]) -> [PASS][157]
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_lease@setcrtc-implicit-plane:
    - shard-adlp:         [DMESG-WARN][158] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][159] +3 other tests pass
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-adlp-6/igt@kms_lease@setcrtc-implicit-plane.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-8/igt@kms_lease@setcrtc-implicit-plane.html

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-bmg:          [SKIP][160] ([Intel XE#4596]) -> [PASS][161]
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-bmg:          [SKIP][162] ([Intel XE#1435]) -> [PASS][163] +1 other test pass
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-2/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@xe_exec_balancer@many-cm-virtual-rebind:
    - shard-bmg:          [FAIL][164] -> [PASS][165]
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-6/igt@xe_exec_balancer@many-cm-virtual-rebind.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-7/igt@xe_exec_balancer@many-cm-virtual-rebind.html

  * igt@xe_pm@s4-exec-after:
    - shard-lnl:          [ABORT][166] ([Intel XE#1794]) -> [PASS][167]
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-lnl-2/igt@xe_pm@s4-exec-after.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-1/igt@xe_pm@s4-exec-after.html

  * igt@xe_pm@s4-vm-bind-prefetch:
    - shard-adlp:         [ABORT][168] ([Intel XE#1794]) -> [PASS][169]
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-adlp-9/igt@xe_pm@s4-vm-bind-prefetch.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-2/igt@xe_pm@s4-vm-bind-prefetch.html

  
#### Warnings ####

  * igt@kms_content_protection@srm:
    - shard-bmg:          [FAIL][170] ([Intel XE#1178]) -> [SKIP][171] ([Intel XE#2341])
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-8/igt@kms_content_protection@srm.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-6/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          [SKIP][172] ([Intel XE#2341]) -> [FAIL][173] ([Intel XE#1188])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-6/igt@kms_content_protection@uevent.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-7/igt@kms_content_protection@uevent.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
    - shard-lnl:          [FAIL][174] ([Intel XE#3149] / [Intel XE#886]) -> [FAIL][175] ([Intel XE#886])
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][176] ([Intel XE#2311]) -> [SKIP][177] ([Intel XE#2312]) +18 other tests skip
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][178] ([Intel XE#2312]) -> [SKIP][179] ([Intel XE#2311]) +22 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][180] ([Intel XE#4141]) -> [SKIP][181] ([Intel XE#2312]) +9 other tests skip
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][182] ([Intel XE#2312]) -> [SKIP][183] ([Intel XE#4141]) +12 other tests skip
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][184] ([Intel XE#2312]) -> [SKIP][185] ([Intel XE#2313]) +17 other tests skip
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][186] ([Intel XE#2313]) -> [SKIP][187] ([Intel XE#2312]) +19 other tests skip
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][188] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][189] ([Intel XE#3544])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-bmg:          [SKIP][190] ([Intel XE#4596]) -> [SKIP][191] ([Intel XE#5021])
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@xe_pmu@engine-activity-single-load-idle:
    - shard-adlp:         [ABORT][192] ([Intel XE#5214]) -> [DMESG-WARN][193] ([Intel XE#5214]) +3 other tests dmesg-warn
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52/shard-adlp-3/igt@xe_pmu@engine-activity-single-load-idle.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150361v1/shard-adlp-9/igt@xe_pmu@engine-activity-single-load-idle.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [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#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
  [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#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
  [Intel XE#2007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2007
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
  [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
  [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [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#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
  [Intel XE#4658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4658
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
  [Intel XE#5176]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5176
  [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
  [Intel XE#5214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5214
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52 -> xe-pw-150361v1

  IGT_8412: 8412
  xe-3260-6f72990d9e0fe084afe257621edd730444a8bc52: 6f72990d9e0fe084afe257621edd730444a8bc52
  xe-pw-150361v1: 150361v1

== Logs ==

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

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

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

* RE: [PATCH] drm/i915/xe3lpd: Prune modes for YUV420
  2025-06-17  9:00 ` [PATCH] " Jani Nikula
  2025-06-17  9:32   ` Kandpal, Suraj
@ 2025-06-20  6:46   ` Kandpal, Suraj
  1 sibling, 0 replies; 13+ messages in thread
From: Kandpal, Suraj @ 2025-06-20  6:46 UTC (permalink / raw)
  To: Jani Nikula, intel-xe@lists.freedesktop.org,
	intel-gfx@lists.freedesktop.org
  Cc: Nautiyal, Ankit K, Cavitt, Jonathan



> -----Original Message-----
> From: Jani Nikula <jani.nikula@linux.intel.com>
> Sent: Tuesday, June 17, 2025 2:30 PM
> To: Kandpal, Suraj <suraj.kandpal@intel.com>; intel-xe@lists.freedesktop.org;
> intel-gfx@lists.freedesktop.org
> Cc: Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>; Kandpal, Suraj
> <suraj.kandpal@intel.com>; Cavitt, Jonathan <jonathan.cavitt@intel.com>
> Subject: Re: [PATCH] drm/i915/xe3lpd: Prune modes for YUV420
> 
> On Tue, 17 Jun 2025, Suraj Kandpal <suraj.kandpal@intel.com> wrote:
> > We only support resolution up to 4k for single pipe when using
> > YUV420 format so we prune these modes and restrict the plane size at
> > src. This is because pipe scaling will not support YUV420 scaling for
> > hwidth > 4096.
> >
> > --v2
> > -Use output format to check [Ville]
> > -Add Bspec references
> > -Modify commit messge to point to why this is needed
> >
> > --v3
> > -Use a function skl_scaler_mode_valid which is routed throug
> > intel_pfit_mode_valid [Ville] -Combine the check conditons [Jonathan]
> >
> > Bspec: 49247, 50441
> > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> > Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com> #v2
> > ---
> >  drivers/gpu/drm/i915/display/intel_dp.c   | 10 +++++++---
> >  drivers/gpu/drm/i915/display/intel_hdmi.c |  3 +++
> > drivers/gpu/drm/i915/display/intel_pfit.c | 12 ++++++++++++
> > drivers/gpu/drm/i915/display/intel_pfit.h | 12 +++++++++++-
> > drivers/gpu/drm/i915/display/skl_scaler.c | 18 ++++++++++++++++++
> > drivers/gpu/drm/i915/display/skl_scaler.h | 12 ++++++++++++
> >  6 files changed, 63 insertions(+), 4 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_dp.c
> > b/drivers/gpu/drm/i915/display/intel_dp.c
> > index 277b40b13948..7af936e6ea46 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dp.c
> > +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> > @@ -1418,6 +1418,7 @@ intel_dp_mode_valid(struct drm_connector
> *_connector,
> >  	struct intel_display *display = to_intel_display(_connector->dev);
> >  	struct intel_connector *connector = to_intel_connector(_connector);
> >  	struct intel_dp *intel_dp = intel_attached_dp(connector);
> > +	enum intel_output_format sink_format, output_format;
> >  	const struct drm_display_mode *fixed_mode;
> >  	int target_clock = mode->clock;
> >  	int max_rate, mode_rate, max_lanes, max_link_clock; @@ -1451,6
> > +1452,12 @@ intel_dp_mode_valid(struct drm_connector *_connector,
> >  						     mode->hdisplay,
> target_clock);
> >  	max_dotclk *= num_joined_pipes;
> >
> > +	sink_format = intel_dp_sink_format(connector, mode);
> > +	output_format = intel_dp_output_format(connector, sink_format);
> > +
> > +	if (!intel_pfit_mode_valid(display, mode, output_format,
> num_joined_pipes, &status))
> > +		return status;
> 
> I think all _mode_valid() functions should return enum drm_mode_status.
> 
> This now returns pretty much the same thing in two different ways, and
> leaves status unset if it returns true. That's not a great interface.

Sure will fix this

> 
> > +
> >  	if (target_clock > max_dotclk)
> >  		return MODE_CLOCK_HIGH;
> >
> > @@ -1466,11 +1473,8 @@ intel_dp_mode_valid(struct drm_connector
> *_connector,
> >
> intel_dp_mode_min_output_bpp(connector, mode));
> >
> >  	if (intel_dp_has_dsc(connector)) {
> > -		enum intel_output_format sink_format, output_format;
> >  		int pipe_bpp;
> >
> > -		sink_format = intel_dp_sink_format(connector, mode);
> > -		output_format = intel_dp_output_format(connector,
> sink_format);
> >  		/*
> >  		 * TBD pass the connector BPC,
> >  		 * for now U8_MAX so that max BPC on that platform would
> be picked
> > diff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c
> > b/drivers/gpu/drm/i915/display/intel_hdmi.c
> > index 9961ff259298..53ba1e16100d 100644
> > --- a/drivers/gpu/drm/i915/display/intel_hdmi.c
> > +++ b/drivers/gpu/drm/i915/display/intel_hdmi.c
> > @@ -2053,6 +2053,9 @@ intel_hdmi_mode_valid(struct drm_connector
> *_connector,
> >  	else
> >  		sink_format = INTEL_OUTPUT_FORMAT_RGB;
> >
> > +	if (!intel_pfit_mode_valid(display, mode, sink_format, 0, &status))
> > +		return status;
> > +
> >  	status = intel_hdmi_mode_clock_valid(&connector->base, clock,
> has_hdmi_sink, sink_format);
> >  	if (status != MODE_OK) {
> >  		if (ycbcr_420_only ||
> > diff --git a/drivers/gpu/drm/i915/display/intel_pfit.c
> > b/drivers/gpu/drm/i915/display/intel_pfit.c
> > index 13541be4d6df..a8fb92c3417a 100644
> > --- a/drivers/gpu/drm/i915/display/intel_pfit.c
> > +++ b/drivers/gpu/drm/i915/display/intel_pfit.c
> > @@ -14,6 +14,7 @@
> >  #include "intel_lvds_regs.h"
> >  #include "intel_pfit.h"
> >  #include "intel_pfit_regs.h"
> > +#include "skl_scaler.h"
> >
> >  static int intel_pch_pfit_check_dst_window(const struct
> > intel_crtc_state *crtc_state)  { @@ -546,6 +547,17 @@ static int
> > gmch_panel_fitting(struct intel_crtc_state *crtc_state,
> >  	return intel_gmch_pfit_check_timings(crtc_state);
> >  }
> >
> > +bool
> > +intel_pfit_mode_valid(struct intel_display *display,
> > +		      const struct drm_display_mode *mode,
> > +		      enum intel_output_format output_format,
> > +		      int num_joined_pipes,
> > +		      enum drm_mode_status *status) {
> > +	return skl_scaler_mode_valid(display, mode, output_format,
> > +				     num_joined_pipes, status);
> > +}
> > +
> 
> Please explain why we're adding the extra dummy layer. Do we expect more
> to be added here?

Its so that it has the same level of abstraction as intel_pfit_compute_config
As suggested by Ville

Check https://lore.kernel.org/all/aEchEa8p0bIKXMJa@intel.com/

Regards,
Suraj Kandpal

> 
> BR,
> Jani.
> 
> 
> >  int intel_pfit_compute_config(struct intel_crtc_state *crtc_state,
> >  			      const struct drm_connector_state *conn_state)  {
> diff --git
> > a/drivers/gpu/drm/i915/display/intel_pfit.h
> > b/drivers/gpu/drm/i915/display/intel_pfit.h
> > index ef34f9b49d09..ce68ceebc700 100644
> > --- a/drivers/gpu/drm/i915/display/intel_pfit.h
> > +++ b/drivers/gpu/drm/i915/display/intel_pfit.h
> > @@ -6,8 +6,14 @@
> >  #ifndef __INTEL_PFIT_H__
> >  #define __INTEL_PFIT_H__
> >
> > +#include <linux/types.h>
> > +
> > +enum drm_mode_status;
> > +struct drm_display_mode;
> >  struct drm_connector_state;
> >  struct intel_crtc_state;
> > +struct intel_display;
> > +enum intel_output_format;
> >
> >  int intel_pfit_compute_config(struct intel_crtc_state *crtc_state,
> >  			      const struct drm_connector_state *conn_state);
> @@ -17,5
> > +23,9 @@ void ilk_pfit_get_config(struct intel_crtc_state
> > *crtc_state);  void i9xx_pfit_enable(const struct intel_crtc_state
> > *crtc_state);  void i9xx_pfit_disable(const struct intel_crtc_state
> > *old_crtc_state);  void i9xx_pfit_get_config(struct intel_crtc_state
> > *crtc_state);
> > -
> > +bool intel_pfit_mode_valid(struct intel_display *display,
> > +			   const struct drm_display_mode *mode,
> > +			   enum intel_output_format output_format,
> > +			   int num_joined_pipes,
> > +			   enum drm_mode_status *status);
> >  #endif /* __INTEL_PFIT_H__ */
> > diff --git a/drivers/gpu/drm/i915/display/skl_scaler.c
> > b/drivers/gpu/drm/i915/display/skl_scaler.c
> > index d77798499c57..27001b52daf8 100644
> > --- a/drivers/gpu/drm/i915/display/skl_scaler.c
> > +++ b/drivers/gpu/drm/i915/display/skl_scaler.c
> > @@ -134,6 +134,24 @@ static void skl_scaler_max_dst_size(struct intel_crtc
> *crtc,
> >  	}
> >  }
> >
> > +bool
> > +skl_scaler_mode_valid(struct intel_display *display,
> > +		      const struct drm_display_mode *mode,
> > +		      enum intel_output_format output_format,
> > +		      int num_joined_pipes,
> > +		      enum drm_mode_status *status) {
> > +	if (num_joined_pipes < 2 && output_format ==
> INTEL_OUTPUT_FORMAT_YCBCR420) {
> > +		if (DISPLAY_VER(display) >= 14 &&
> > +		    mode->hdisplay > 4096) {
> > +			*status = MODE_NO_420;
> > +			return false;
> > +		}
> > +	}
> > +
> > +	return true;
> > +}
> > +
> >  static int
> >  skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
> >  		  unsigned int scaler_user, int *scaler_id, diff --git
> > a/drivers/gpu/drm/i915/display/skl_scaler.h
> > b/drivers/gpu/drm/i915/display/skl_scaler.h
> > index 355ea15260ca..37c6543b4731 100644
> > --- a/drivers/gpu/drm/i915/display/skl_scaler.h
> > +++ b/drivers/gpu/drm/i915/display/skl_scaler.h
> > @@ -5,10 +5,16 @@
> >  #ifndef INTEL_SCALER_H
> >  #define INTEL_SCALER_H
> >
> > +#include <linux/types.h>
> > +
> > +enum drm_mode_status;
> > +struct drm_display_mode;
> >  struct intel_atomic_state;
> >  struct intel_crtc;
> >  struct intel_crtc_state;
> > +struct intel_display;
> >  struct intel_dsb;
> > +enum intel_output_format;
> >  struct intel_plane;
> >  struct intel_plane_state;
> >
> > @@ -32,4 +38,10 @@ void skl_scaler_disable(const struct
> > intel_crtc_state *old_crtc_state);
> >
> >  void skl_scaler_get_config(struct intel_crtc_state *crtc_state);
> >
> > +bool skl_scaler_mode_valid(struct intel_display *display,
> > +			   const struct drm_display_mode *mode,
> > +			   enum intel_output_format output_format,
> > +			   int num_joined_pipes,
> > +			   enum drm_mode_status *status);
> > +
> >  #endif
> 
> --
> Jani Nikula, Intel

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

* [PATCH] drm/i915/xe3lpd: Prune modes for YUV420
@ 2025-06-20  9:25 Suraj Kandpal
  2025-07-07  4:30 ` Nautiyal, Ankit K
  0 siblings, 1 reply; 13+ messages in thread
From: Suraj Kandpal @ 2025-06-20  9:25 UTC (permalink / raw)
  To: intel-xe, intel-gfx
  Cc: ankit.k.nautiyal, jani.nikula, Suraj Kandpal, Jonathan Cavitt

We only support resolution up to 4k for single pipe when using
YUV420 format so we prune these modes and restrict the plane size
at src. This is because pipe scaling will not support YUV420 scaling
for hwidth > 4096.

--v2
-Use output format to check [Ville]
-Add Bspec references
-Modify commit messge to point to why this is needed

--v3
-Use a function skl_scaler_mode_valid which is routed throug
intel_pfit_mode_valid [Ville]
-Combine the check conditons [Jonathan]

--v4
-mode_valid functions should return drm_mode_status [Jani]

Bspec: 49247, 50441
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com> #v2
---
 drivers/gpu/drm/i915/display/intel_dp.c   | 11 ++++++++---
 drivers/gpu/drm/i915/display/intel_hdmi.c |  4 ++++
 drivers/gpu/drm/i915/display/intel_pfit.c | 11 +++++++++++
 drivers/gpu/drm/i915/display/intel_pfit.h | 12 +++++++++++-
 drivers/gpu/drm/i915/display/skl_scaler.c | 16 ++++++++++++++++
 drivers/gpu/drm/i915/display/skl_scaler.h | 12 ++++++++++++
 6 files changed, 62 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index 277b40b13948..f10650d79663 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -1418,6 +1418,7 @@ intel_dp_mode_valid(struct drm_connector *_connector,
 	struct intel_display *display = to_intel_display(_connector->dev);
 	struct intel_connector *connector = to_intel_connector(_connector);
 	struct intel_dp *intel_dp = intel_attached_dp(connector);
+	enum intel_output_format sink_format, output_format;
 	const struct drm_display_mode *fixed_mode;
 	int target_clock = mode->clock;
 	int max_rate, mode_rate, max_lanes, max_link_clock;
@@ -1451,6 +1452,13 @@ intel_dp_mode_valid(struct drm_connector *_connector,
 						     mode->hdisplay, target_clock);
 	max_dotclk *= num_joined_pipes;
 
+	sink_format = intel_dp_sink_format(connector, mode);
+	output_format = intel_dp_output_format(connector, sink_format);
+
+	status = intel_pfit_mode_valid(display, mode, output_format, num_joined_pipes);
+	if (status != MODE_OK)
+		return status;
+
 	if (target_clock > max_dotclk)
 		return MODE_CLOCK_HIGH;
 
@@ -1466,11 +1474,8 @@ intel_dp_mode_valid(struct drm_connector *_connector,
 					   intel_dp_mode_min_output_bpp(connector, mode));
 
 	if (intel_dp_has_dsc(connector)) {
-		enum intel_output_format sink_format, output_format;
 		int pipe_bpp;
 
-		sink_format = intel_dp_sink_format(connector, mode);
-		output_format = intel_dp_output_format(connector, sink_format);
 		/*
 		 * TBD pass the connector BPC,
 		 * for now U8_MAX so that max BPC on that platform would be picked
diff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c b/drivers/gpu/drm/i915/display/intel_hdmi.c
index 9961ff259298..03045d188817 100644
--- a/drivers/gpu/drm/i915/display/intel_hdmi.c
+++ b/drivers/gpu/drm/i915/display/intel_hdmi.c
@@ -2053,6 +2053,10 @@ intel_hdmi_mode_valid(struct drm_connector *_connector,
 	else
 		sink_format = INTEL_OUTPUT_FORMAT_RGB;
 
+	status = intel_pfit_mode_valid(display, mode, sink_format, 0);
+	if (status != MODE_OK)
+		return status;
+
 	status = intel_hdmi_mode_clock_valid(&connector->base, clock, has_hdmi_sink, sink_format);
 	if (status != MODE_OK) {
 		if (ycbcr_420_only ||
diff --git a/drivers/gpu/drm/i915/display/intel_pfit.c b/drivers/gpu/drm/i915/display/intel_pfit.c
index 13541be4d6df..68539e7c2a24 100644
--- a/drivers/gpu/drm/i915/display/intel_pfit.c
+++ b/drivers/gpu/drm/i915/display/intel_pfit.c
@@ -14,6 +14,7 @@
 #include "intel_lvds_regs.h"
 #include "intel_pfit.h"
 #include "intel_pfit_regs.h"
+#include "skl_scaler.h"
 
 static int intel_pch_pfit_check_dst_window(const struct intel_crtc_state *crtc_state)
 {
@@ -546,6 +547,16 @@ static int gmch_panel_fitting(struct intel_crtc_state *crtc_state,
 	return intel_gmch_pfit_check_timings(crtc_state);
 }
 
+enum drm_mode_status
+intel_pfit_mode_valid(struct intel_display *display,
+		      const struct drm_display_mode *mode,
+		      enum intel_output_format output_format,
+		      int num_joined_pipes)
+{
+	return skl_scaler_mode_valid(display, mode, output_format,
+				     num_joined_pipes);
+}
+
 int intel_pfit_compute_config(struct intel_crtc_state *crtc_state,
 			      const struct drm_connector_state *conn_state)
 {
diff --git a/drivers/gpu/drm/i915/display/intel_pfit.h b/drivers/gpu/drm/i915/display/intel_pfit.h
index ef34f9b49d09..2f075748a34e 100644
--- a/drivers/gpu/drm/i915/display/intel_pfit.h
+++ b/drivers/gpu/drm/i915/display/intel_pfit.h
@@ -6,8 +6,14 @@
 #ifndef __INTEL_PFIT_H__
 #define __INTEL_PFIT_H__
 
+#include <linux/types.h>
+
+enum drm_mode_status;
+struct drm_display_mode;
 struct drm_connector_state;
 struct intel_crtc_state;
+struct intel_display;
+enum intel_output_format;
 
 int intel_pfit_compute_config(struct intel_crtc_state *crtc_state,
 			      const struct drm_connector_state *conn_state);
@@ -17,5 +23,9 @@ void ilk_pfit_get_config(struct intel_crtc_state *crtc_state);
 void i9xx_pfit_enable(const struct intel_crtc_state *crtc_state);
 void i9xx_pfit_disable(const struct intel_crtc_state *old_crtc_state);
 void i9xx_pfit_get_config(struct intel_crtc_state *crtc_state);
-
+enum drm_mode_status
+intel_pfit_mode_valid(struct intel_display *display,
+		      const struct drm_display_mode *mode,
+		      enum intel_output_format output_format,
+		      int num_joined_pipes);
 #endif /* __INTEL_PFIT_H__ */
diff --git a/drivers/gpu/drm/i915/display/skl_scaler.c b/drivers/gpu/drm/i915/display/skl_scaler.c
index d77798499c57..b8193ebf0772 100644
--- a/drivers/gpu/drm/i915/display/skl_scaler.c
+++ b/drivers/gpu/drm/i915/display/skl_scaler.c
@@ -134,6 +134,22 @@ static void skl_scaler_max_dst_size(struct intel_crtc *crtc,
 	}
 }
 
+enum drm_mode_status
+skl_scaler_mode_valid(struct intel_display *display,
+		      const struct drm_display_mode *mode,
+		      enum intel_output_format output_format,
+		      int num_joined_pipes)
+{
+	if (num_joined_pipes < 2 && output_format == INTEL_OUTPUT_FORMAT_YCBCR420) {
+		if (DISPLAY_VER(display) >= 14 &&
+		    mode->hdisplay > 4096) {
+			return MODE_NO_420;
+		}
+	}
+
+	return MODE_OK;
+}
+
 static int
 skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
 		  unsigned int scaler_user, int *scaler_id,
diff --git a/drivers/gpu/drm/i915/display/skl_scaler.h b/drivers/gpu/drm/i915/display/skl_scaler.h
index 355ea15260ca..7beee5ee0e89 100644
--- a/drivers/gpu/drm/i915/display/skl_scaler.h
+++ b/drivers/gpu/drm/i915/display/skl_scaler.h
@@ -5,10 +5,16 @@
 #ifndef INTEL_SCALER_H
 #define INTEL_SCALER_H
 
+#include <linux/types.h>
+
+enum drm_mode_status;
+struct drm_display_mode;
 struct intel_atomic_state;
 struct intel_crtc;
 struct intel_crtc_state;
+struct intel_display;
 struct intel_dsb;
+enum intel_output_format;
 struct intel_plane;
 struct intel_plane_state;
 
@@ -32,4 +38,10 @@ void skl_scaler_disable(const struct intel_crtc_state *old_crtc_state);
 
 void skl_scaler_get_config(struct intel_crtc_state *crtc_state);
 
+enum drm_mode_status
+skl_scaler_mode_valid(struct intel_display *display,
+		     const struct drm_display_mode *mode,
+		     enum intel_output_format output_format,
+		     int num_joined_pipes);
+
 #endif
-- 
2.34.1


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

* Re: [PATCH] drm/i915/xe3lpd: Prune modes for YUV420
  2025-06-20  9:25 [PATCH] " Suraj Kandpal
@ 2025-07-07  4:30 ` Nautiyal, Ankit K
  0 siblings, 0 replies; 13+ messages in thread
From: Nautiyal, Ankit K @ 2025-07-07  4:30 UTC (permalink / raw)
  To: Suraj Kandpal, intel-xe, intel-gfx; +Cc: jani.nikula, Jonathan Cavitt


On 6/20/2025 2:55 PM, Suraj Kandpal wrote:
> We only support resolution up to 4k for single pipe when using
> YUV420 format so we prune these modes and restrict the plane size
> at src. This is because pipe scaling will not support YUV420 scaling
> for hwidth > 4096.
>
> --v2
> -Use output format to check [Ville]
> -Add Bspec references
> -Modify commit messge to point to why this is needed
>
> --v3
> -Use a function skl_scaler_mode_valid which is routed throug
> intel_pfit_mode_valid [Ville]
> -Combine the check conditons [Jonathan]
>
> --v4
> -mode_valid functions should return drm_mode_status [Jani]
>
> Bspec: 49247, 50441
> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
> Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com> #v2
> ---
>   drivers/gpu/drm/i915/display/intel_dp.c   | 11 ++++++++---
>   drivers/gpu/drm/i915/display/intel_hdmi.c |  4 ++++
>   drivers/gpu/drm/i915/display/intel_pfit.c | 11 +++++++++++
>   drivers/gpu/drm/i915/display/intel_pfit.h | 12 +++++++++++-
>   drivers/gpu/drm/i915/display/skl_scaler.c | 16 ++++++++++++++++
>   drivers/gpu/drm/i915/display/skl_scaler.h | 12 ++++++++++++
>   6 files changed, 62 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> index 277b40b13948..f10650d79663 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -1418,6 +1418,7 @@ intel_dp_mode_valid(struct drm_connector *_connector,
>   	struct intel_display *display = to_intel_display(_connector->dev);
>   	struct intel_connector *connector = to_intel_connector(_connector);
>   	struct intel_dp *intel_dp = intel_attached_dp(connector);
> +	enum intel_output_format sink_format, output_format;
>   	const struct drm_display_mode *fixed_mode;
>   	int target_clock = mode->clock;
>   	int max_rate, mode_rate, max_lanes, max_link_clock;
> @@ -1451,6 +1452,13 @@ intel_dp_mode_valid(struct drm_connector *_connector,
>   						     mode->hdisplay, target_clock);
>   	max_dotclk *= num_joined_pipes;
>   
> +	sink_format = intel_dp_sink_format(connector, mode);
> +	output_format = intel_dp_output_format(connector, sink_format);
> +
> +	status = intel_pfit_mode_valid(display, mode, output_format, num_joined_pipes);
> +	if (status != MODE_OK)
> +		return status;
> +
>   	if (target_clock > max_dotclk)
>   		return MODE_CLOCK_HIGH;
>   
> @@ -1466,11 +1474,8 @@ intel_dp_mode_valid(struct drm_connector *_connector,
>   					   intel_dp_mode_min_output_bpp(connector, mode));
>   
>   	if (intel_dp_has_dsc(connector)) {
> -		enum intel_output_format sink_format, output_format;
>   		int pipe_bpp;
>   
> -		sink_format = intel_dp_sink_format(connector, mode);
> -		output_format = intel_dp_output_format(connector, sink_format);
>   		/*
>   		 * TBD pass the connector BPC,
>   		 * for now U8_MAX so that max BPC on that platform would be picked
> diff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c b/drivers/gpu/drm/i915/display/intel_hdmi.c
> index 9961ff259298..03045d188817 100644
> --- a/drivers/gpu/drm/i915/display/intel_hdmi.c
> +++ b/drivers/gpu/drm/i915/display/intel_hdmi.c
> @@ -2053,6 +2053,10 @@ intel_hdmi_mode_valid(struct drm_connector *_connector,
>   	else
>   		sink_format = INTEL_OUTPUT_FORMAT_RGB;
>   
> +	status = intel_pfit_mode_valid(display, mode, sink_format, 0);
> +	if (status != MODE_OK)
> +		return status;
> +
>   	status = intel_hdmi_mode_clock_valid(&connector->base, clock, has_hdmi_sink, sink_format);
>   	if (status != MODE_OK) {
>   		if (ycbcr_420_only ||
> diff --git a/drivers/gpu/drm/i915/display/intel_pfit.c b/drivers/gpu/drm/i915/display/intel_pfit.c
> index 13541be4d6df..68539e7c2a24 100644
> --- a/drivers/gpu/drm/i915/display/intel_pfit.c
> +++ b/drivers/gpu/drm/i915/display/intel_pfit.c
> @@ -14,6 +14,7 @@
>   #include "intel_lvds_regs.h"
>   #include "intel_pfit.h"
>   #include "intel_pfit_regs.h"
> +#include "skl_scaler.h"
>   
>   static int intel_pch_pfit_check_dst_window(const struct intel_crtc_state *crtc_state)
>   {
> @@ -546,6 +547,16 @@ static int gmch_panel_fitting(struct intel_crtc_state *crtc_state,
>   	return intel_gmch_pfit_check_timings(crtc_state);
>   }
>   
> +enum drm_mode_status
> +intel_pfit_mode_valid(struct intel_display *display,
> +		      const struct drm_display_mode *mode,
> +		      enum intel_output_format output_format,
> +		      int num_joined_pipes)
> +{
> +	return skl_scaler_mode_valid(display, mode, output_format,
> +				     num_joined_pipes);
> +}
> +
>   int intel_pfit_compute_config(struct intel_crtc_state *crtc_state,
>   			      const struct drm_connector_state *conn_state)
>   {
> diff --git a/drivers/gpu/drm/i915/display/intel_pfit.h b/drivers/gpu/drm/i915/display/intel_pfit.h
> index ef34f9b49d09..2f075748a34e 100644
> --- a/drivers/gpu/drm/i915/display/intel_pfit.h
> +++ b/drivers/gpu/drm/i915/display/intel_pfit.h
> @@ -6,8 +6,14 @@
>   #ifndef __INTEL_PFIT_H__
>   #define __INTEL_PFIT_H__
>   
> +#include <linux/types.h>
> +
> +enum drm_mode_status;
> +struct drm_display_mode;
>   struct drm_connector_state;
>   struct intel_crtc_state;
> +struct intel_display;
> +enum intel_output_format;
>   
>   int intel_pfit_compute_config(struct intel_crtc_state *crtc_state,
>   			      const struct drm_connector_state *conn_state);
> @@ -17,5 +23,9 @@ void ilk_pfit_get_config(struct intel_crtc_state *crtc_state);
>   void i9xx_pfit_enable(const struct intel_crtc_state *crtc_state);
>   void i9xx_pfit_disable(const struct intel_crtc_state *old_crtc_state);
>   void i9xx_pfit_get_config(struct intel_crtc_state *crtc_state);
> -
> +enum drm_mode_status
> +intel_pfit_mode_valid(struct intel_display *display,
> +		      const struct drm_display_mode *mode,
> +		      enum intel_output_format output_format,
> +		      int num_joined_pipes);
>   #endif /* __INTEL_PFIT_H__ */
> diff --git a/drivers/gpu/drm/i915/display/skl_scaler.c b/drivers/gpu/drm/i915/display/skl_scaler.c
> index d77798499c57..b8193ebf0772 100644
> --- a/drivers/gpu/drm/i915/display/skl_scaler.c
> +++ b/drivers/gpu/drm/i915/display/skl_scaler.c
> @@ -134,6 +134,22 @@ static void skl_scaler_max_dst_size(struct intel_crtc *crtc,
>   	}
>   }
>   
> +enum drm_mode_status
> +skl_scaler_mode_valid(struct intel_display *display,
> +		      const struct drm_display_mode *mode,
> +		      enum intel_output_format output_format,
> +		      int num_joined_pipes)
> +{
> +	if (num_joined_pipes < 2 && output_format == INTEL_OUTPUT_FORMAT_YCBCR420) {
> +		if (DISPLAY_VER(display) >= 14 &&
> +		    mode->hdisplay > 4096) {


Lets use skl_scaler_max_src_size to get the the max src width, that the 
scaler supports for a given platform.

Compare max_w  with mode->hdisplay.


Regards,

Ankit

> +			return MODE_NO_420;
> +		}
> +	}
> +
> +	return MODE_OK;
> +}
> +
>   static int
>   skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
>   		  unsigned int scaler_user, int *scaler_id,
> diff --git a/drivers/gpu/drm/i915/display/skl_scaler.h b/drivers/gpu/drm/i915/display/skl_scaler.h
> index 355ea15260ca..7beee5ee0e89 100644
> --- a/drivers/gpu/drm/i915/display/skl_scaler.h
> +++ b/drivers/gpu/drm/i915/display/skl_scaler.h
> @@ -5,10 +5,16 @@
>   #ifndef INTEL_SCALER_H
>   #define INTEL_SCALER_H
>   
> +#include <linux/types.h>
> +
> +enum drm_mode_status;
> +struct drm_display_mode;
>   struct intel_atomic_state;
>   struct intel_crtc;
>   struct intel_crtc_state;
> +struct intel_display;
>   struct intel_dsb;
> +enum intel_output_format;
>   struct intel_plane;
>   struct intel_plane_state;
>   
> @@ -32,4 +38,10 @@ void skl_scaler_disable(const struct intel_crtc_state *old_crtc_state);
>   
>   void skl_scaler_get_config(struct intel_crtc_state *crtc_state);
>   
> +enum drm_mode_status
> +skl_scaler_mode_valid(struct intel_display *display,
> +		     const struct drm_display_mode *mode,
> +		     enum intel_output_format output_format,
> +		     int num_joined_pipes);
> +
>   #endif

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

end of thread, other threads:[~2025-07-07  4:30 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-17  4:43 [PATCH] drm/i915/xe3lpd: Prune modes for YUV420 Suraj Kandpal
2025-06-17  4:50 ` ✓ CI.KUnit: success for " Patchwork
2025-06-17  5:32 ` ✓ Xe.CI.BAT: " Patchwork
2025-06-17  9:00 ` [PATCH] " Jani Nikula
2025-06-17  9:32   ` Kandpal, Suraj
2025-06-20  6:46   ` Kandpal, Suraj
2025-06-17 13:31 ` ✗ Xe.CI.Full: failure for " Patchwork
  -- strict thread matches above, loose matches on Subject: below --
2025-06-20  9:25 [PATCH] " Suraj Kandpal
2025-07-07  4:30 ` Nautiyal, Ankit K
2025-06-09 16:45 Suraj Kandpal
2025-06-09 17:20 ` Cavitt, Jonathan
2025-06-09 17:59 ` Ville Syrjälä
2025-06-11  1:10   ` Kandpal, Suraj

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