Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/bios: range check LFP Data Block panel_type2
@ 2026-06-25 13:51 Jani Nikula
  2026-06-25 15:27 ` Michał Grzelak
                   ` (6 more replies)
  0 siblings, 7 replies; 10+ messages in thread
From: Jani Nikula @ 2026-06-25 13:51 UTC (permalink / raw)
  To: intel-gfx, intel-xe
  Cc: jani.nikula, Martin Hodo, stable, Animesh Manna,
	Ville Syrjälä

While the panel_type from LFP Data Block is range checked, panel_type2
is not. Add a few helpers for range checking, and use them to not only
check panel_type2, but also imrove clarity and correctness in the panel
type selection.

Discovered using AI-assisted static analysis confirmed by Intel Product
Security.

Reported-by: Martin Hodo <martin.hodo@intel.com>
Fixes: 6434cf630086 ("drm/i915/bios: calculate panel type as per child device index in VBT")
Cc: <stable@vger.kernel.org> # v6.0+
Cc: Animesh Manna <animesh.manna@intel.com>
Cc: Ville Syrjälä <ville.syrjala@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/display/intel_bios.c | 29 +++++++++++++++++------
 1 file changed, 22 insertions(+), 7 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c
index 15ebadc72b88..0c420019e46a 100644
--- a/drivers/gpu/drm/i915/display/intel_bios.c
+++ b/drivers/gpu/drm/i915/display/intel_bios.c
@@ -623,6 +623,16 @@ get_lfp_data_tail(const struct bdb_lfp_data *data,
 		return NULL;
 }
 
+static bool is_panel_type_valid(int panel_type)
+{
+	return panel_type >= 0 && panel_type < 16;
+}
+
+static bool is_panel_type_valid_or_pnp(int panel_type)
+{
+	return is_panel_type_valid(panel_type) || panel_type == 0xff;
+}
+
 static int opregion_get_panel_type(struct intel_display *display,
 				   const struct intel_bios_encoder_data *devdata,
 				   const struct drm_edid *drm_edid, bool use_fallback)
@@ -640,15 +650,21 @@ static int vbt_get_panel_type(struct intel_display *display,
 	if (!lfp_options)
 		return -1;
 
-	if (lfp_options->panel_type > 0xf &&
-	    lfp_options->panel_type != 0xff) {
+	if (!is_panel_type_valid_or_pnp(lfp_options->panel_type)) {
 		drm_dbg_kms(display->drm, "Invalid VBT panel type 0x%x\n",
 			    lfp_options->panel_type);
 		return -1;
 	}
 
-	if (devdata && devdata->child.handle == DEVICE_HANDLE_LFP2)
+	if (devdata && devdata->child.handle == DEVICE_HANDLE_LFP2) {
+		if (!is_panel_type_valid_or_pnp(lfp_options->panel_type2)) {
+			drm_dbg_kms(display->drm, "Invalid VBT panel type 2 0x%x\n",
+				    lfp_options->panel_type2);
+			return -1;
+		}
+
 		return lfp_options->panel_type2;
+	}
 
 	drm_WARN_ON(display->drm,
 		    devdata && devdata->child.handle != DEVICE_HANDLE_LFP1);
@@ -762,13 +778,12 @@ static int get_panel_type(struct intel_display *display,
 				    panel_types[i].name, panel_types[i].panel_type);
 	}
 
-	if (panel_types[PANEL_TYPE_OPREGION].panel_type >= 0)
+	if (is_panel_type_valid(panel_types[PANEL_TYPE_OPREGION].panel_type))
 		i = PANEL_TYPE_OPREGION;
 	else if (panel_types[PANEL_TYPE_VBT].panel_type == 0xff &&
-		 panel_types[PANEL_TYPE_PNPID].panel_type >= 0)
+		 is_panel_type_valid(panel_types[PANEL_TYPE_PNPID].panel_type))
 		i = PANEL_TYPE_PNPID;
-	else if (panel_types[PANEL_TYPE_VBT].panel_type != 0xff &&
-		 panel_types[PANEL_TYPE_VBT].panel_type >= 0)
+	else if (is_panel_type_valid(panel_types[PANEL_TYPE_VBT].panel_type))
 		i = PANEL_TYPE_VBT;
 	else
 		i = PANEL_TYPE_FALLBACK;
-- 
2.47.3


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

* Re: [PATCH] drm/i915/bios: range check LFP Data Block panel_type2
  2026-06-25 13:51 [PATCH] drm/i915/bios: range check LFP Data Block panel_type2 Jani Nikula
@ 2026-06-25 15:27 ` Michał Grzelak
  2026-06-26 13:37 ` Ville Syrjälä
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Michał Grzelak @ 2026-06-25 15:27 UTC (permalink / raw)
  To: Jani Nikula
  Cc: intel-gfx, intel-xe, Martin Hodo, stable, Animesh Manna,
	Ville Syrjälä

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

On Thu, 25 Jun 2026, Jani Nikula wrote:
> While the panel_type from LFP Data Block is range checked, panel_type2
> is not. Add a few helpers for range checking, and use them to not only
> check panel_type2, but also imrove clarity and correctness in the panel

typo: s/imrove/improve/

> type selection.
>
> Discovered using AI-assisted static analysis confirmed by Intel Product
> Security.
>
> Reported-by: Martin Hodo <martin.hodo@intel.com>
> Fixes: 6434cf630086 ("drm/i915/bios: calculate panel type as per child device index in VBT")
> Cc: <stable@vger.kernel.org> # v6.0+
> Cc: Animesh Manna <animesh.manna@intel.com>
> Cc: Ville Syrjälä <ville.syrjala@intel.com>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>

BR,
Michał

> ---
> drivers/gpu/drm/i915/display/intel_bios.c | 29 +++++++++++++++++------
> 1 file changed, 22 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c
> index 15ebadc72b88..0c420019e46a 100644
> --- a/drivers/gpu/drm/i915/display/intel_bios.c
> +++ b/drivers/gpu/drm/i915/display/intel_bios.c
> @@ -623,6 +623,16 @@ get_lfp_data_tail(const struct bdb_lfp_data *data,
> 		return NULL;
> }
>
> +static bool is_panel_type_valid(int panel_type)
> +{
> +	return panel_type >= 0 && panel_type < 16;
> +}
> +
> +static bool is_panel_type_valid_or_pnp(int panel_type)
> +{
> +	return is_panel_type_valid(panel_type) || panel_type == 0xff;
> +}
> +
> static int opregion_get_panel_type(struct intel_display *display,
> 				   const struct intel_bios_encoder_data *devdata,
> 				   const struct drm_edid *drm_edid, bool use_fallback)
> @@ -640,15 +650,21 @@ static int vbt_get_panel_type(struct intel_display *display,
> 	if (!lfp_options)
> 		return -1;
>
> -	if (lfp_options->panel_type > 0xf &&
> -	    lfp_options->panel_type != 0xff) {
> +	if (!is_panel_type_valid_or_pnp(lfp_options->panel_type)) {
> 		drm_dbg_kms(display->drm, "Invalid VBT panel type 0x%x\n",
> 			    lfp_options->panel_type);
> 		return -1;
> 	}
>
> -	if (devdata && devdata->child.handle == DEVICE_HANDLE_LFP2)
> +	if (devdata && devdata->child.handle == DEVICE_HANDLE_LFP2) {
> +		if (!is_panel_type_valid_or_pnp(lfp_options->panel_type2)) {
> +			drm_dbg_kms(display->drm, "Invalid VBT panel type 2 0x%x\n",
> +				    lfp_options->panel_type2);
> +			return -1;
> +		}
> +
> 		return lfp_options->panel_type2;
> +	}
>
> 	drm_WARN_ON(display->drm,
> 		    devdata && devdata->child.handle != DEVICE_HANDLE_LFP1);
> @@ -762,13 +778,12 @@ static int get_panel_type(struct intel_display *display,
> 				    panel_types[i].name, panel_types[i].panel_type);
> 	}
>
> -	if (panel_types[PANEL_TYPE_OPREGION].panel_type >= 0)
> +	if (is_panel_type_valid(panel_types[PANEL_TYPE_OPREGION].panel_type))
> 		i = PANEL_TYPE_OPREGION;
> 	else if (panel_types[PANEL_TYPE_VBT].panel_type == 0xff &&
> -		 panel_types[PANEL_TYPE_PNPID].panel_type >= 0)
> +		 is_panel_type_valid(panel_types[PANEL_TYPE_PNPID].panel_type))
> 		i = PANEL_TYPE_PNPID;
> -	else if (panel_types[PANEL_TYPE_VBT].panel_type != 0xff &&
> -		 panel_types[PANEL_TYPE_VBT].panel_type >= 0)
> +	else if (is_panel_type_valid(panel_types[PANEL_TYPE_VBT].panel_type))
> 		i = PANEL_TYPE_VBT;
> 	else
> 		i = PANEL_TYPE_FALLBACK;
> -- 
> 2.47.3
>
>

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

* Re: [PATCH] drm/i915/bios: range check LFP Data Block panel_type2
  2026-06-25 13:51 [PATCH] drm/i915/bios: range check LFP Data Block panel_type2 Jani Nikula
  2026-06-25 15:27 ` Michał Grzelak
@ 2026-06-26 13:37 ` Ville Syrjälä
  2026-06-26 14:01 ` [PATCH v2] " Jani Nikula
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Ville Syrjälä @ 2026-06-26 13:37 UTC (permalink / raw)
  To: Jani Nikula
  Cc: intel-gfx, intel-xe, Martin Hodo, stable, Animesh Manna,
	Ville Syrjälä

On Thu, Jun 25, 2026 at 04:51:30PM +0300, Jani Nikula wrote:
> While the panel_type from LFP Data Block is range checked, panel_type2
> is not. Add a few helpers for range checking, and use them to not only
> check panel_type2, but also imrove clarity and correctness in the panel
> type selection.
> 
> Discovered using AI-assisted static analysis confirmed by Intel Product
> Security.
> 
> Reported-by: Martin Hodo <martin.hodo@intel.com>
> Fixes: 6434cf630086 ("drm/i915/bios: calculate panel type as per child device index in VBT")
> Cc: <stable@vger.kernel.org> # v6.0+
> Cc: Animesh Manna <animesh.manna@intel.com>
> Cc: Ville Syrjälä <ville.syrjala@intel.com>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_bios.c | 29 +++++++++++++++++------
>  1 file changed, 22 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c
> index 15ebadc72b88..0c420019e46a 100644
> --- a/drivers/gpu/drm/i915/display/intel_bios.c
> +++ b/drivers/gpu/drm/i915/display/intel_bios.c
> @@ -623,6 +623,16 @@ get_lfp_data_tail(const struct bdb_lfp_data *data,
>  		return NULL;
>  }
>  
> +static bool is_panel_type_valid(int panel_type)
> +{
> +	return panel_type >= 0 && panel_type < 16;
> +}
> +
> +static bool is_panel_type_valid_or_pnp(int panel_type)
> +{
> +	return is_panel_type_valid(panel_type) || panel_type == 0xff;
> +}
> +
>  static int opregion_get_panel_type(struct intel_display *display,
>  				   const struct intel_bios_encoder_data *devdata,
>  				   const struct drm_edid *drm_edid, bool use_fallback)
> @@ -640,15 +650,21 @@ static int vbt_get_panel_type(struct intel_display *display,
>  	if (!lfp_options)
>  		return -1;
>  
> -	if (lfp_options->panel_type > 0xf &&
> -	    lfp_options->panel_type != 0xff) {
> +	if (!is_panel_type_valid_or_pnp(lfp_options->panel_type)) {
>  		drm_dbg_kms(display->drm, "Invalid VBT panel type 0x%x\n",
>  			    lfp_options->panel_type);
>  		return -1;
>  	}
>  
> -	if (devdata && devdata->child.handle == DEVICE_HANDLE_LFP2)
> +	if (devdata && devdata->child.handle == DEVICE_HANDLE_LFP2) {
> +		if (!is_panel_type_valid_or_pnp(lfp_options->panel_type2)) {
> +			drm_dbg_kms(display->drm, "Invalid VBT panel type 2 0x%x\n",
> +				    lfp_options->panel_type2);
> +			return -1;
> +		}
> +
>  		return lfp_options->panel_type2;
> +	}
>  
>  	drm_WARN_ON(display->drm,
>  		    devdata && devdata->child.handle != DEVICE_HANDLE_LFP1);
> @@ -762,13 +778,12 @@ static int get_panel_type(struct intel_display *display,
>  				    panel_types[i].name, panel_types[i].panel_type);
>  	}
>  
> -	if (panel_types[PANEL_TYPE_OPREGION].panel_type >= 0)
> +	if (is_panel_type_valid(panel_types[PANEL_TYPE_OPREGION].panel_type))
>  		i = PANEL_TYPE_OPREGION;
>  	else if (panel_types[PANEL_TYPE_VBT].panel_type == 0xff &&

is_panel_type_pnp()?

> -		 panel_types[PANEL_TYPE_PNPID].panel_type >= 0)
> +		 is_panel_type_valid(panel_types[PANEL_TYPE_PNPID].panel_type))
>  		i = PANEL_TYPE_PNPID;
> -	else if (panel_types[PANEL_TYPE_VBT].panel_type != 0xff &&
> -		 panel_types[PANEL_TYPE_VBT].panel_type >= 0)
> +	else if (is_panel_type_valid(panel_types[PANEL_TYPE_VBT].panel_type))
>  		i = PANEL_TYPE_VBT;
>  	else
>  		i = PANEL_TYPE_FALLBACK;
> -- 
> 2.47.3

-- 
Ville Syrjälä
Intel

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

* [PATCH v2] drm/i915/bios: range check LFP Data Block panel_type2
  2026-06-25 13:51 [PATCH] drm/i915/bios: range check LFP Data Block panel_type2 Jani Nikula
  2026-06-25 15:27 ` Michał Grzelak
  2026-06-26 13:37 ` Ville Syrjälä
@ 2026-06-26 14:01 ` Jani Nikula
  2026-06-30  8:29   ` Ville Syrjälä
  2026-06-29 13:49 ` ✗ CI.checkpatch: warning for drm/i915/bios: range check LFP Data Block panel_type2 (rev2) Patchwork
                   ` (3 subsequent siblings)
  6 siblings, 1 reply; 10+ messages in thread
From: Jani Nikula @ 2026-06-26 14:01 UTC (permalink / raw)
  To: Jani Nikula, intel-gfx, intel-xe
  Cc: Martin Hodo, stable, Animesh Manna, Ville Syrjälä,
	Michał Grzelak

While the panel_type from LFP Data Block is range checked, panel_type2
is not. Add a few helpers for range checking, and use them to not only
check panel_type2, but also improve clarity and correctness in the panel
type selection.

Discovered using AI-assisted static analysis confirmed by Intel Product
Security.

v2:
- Fix commit message typo (Michał)
- Add is_panel_type_pnp() (Ville)

Reported-by: Martin Hodo <martin.hodo@intel.com>
Fixes: 6434cf630086 ("drm/i915/bios: calculate panel type as per child device index in VBT")
Cc: <stable@vger.kernel.org> # v6.0+
Cc: Animesh Manna <animesh.manna@intel.com>
Cc: Ville Syrjälä <ville.syrjala@intel.com>
Reviewed-by: Michał Grzelak <michal.grzelak@intel.com> # v1
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/display/intel_bios.c | 36 ++++++++++++++++++-----
 1 file changed, 28 insertions(+), 8 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c
index 15ebadc72b88..97cbae2e547e 100644
--- a/drivers/gpu/drm/i915/display/intel_bios.c
+++ b/drivers/gpu/drm/i915/display/intel_bios.c
@@ -623,6 +623,21 @@ get_lfp_data_tail(const struct bdb_lfp_data *data,
 		return NULL;
 }
 
+static bool is_panel_type_valid(int panel_type)
+{
+	return panel_type >= 0 && panel_type < 16;
+}
+
+static bool is_panel_type_pnp(int panel_type)
+{
+	return panel_type == 0xff;
+}
+
+static bool is_panel_type_valid_or_pnp(int panel_type)
+{
+	return is_panel_type_valid(panel_type) || is_panel_type_pnp(panel_type);
+}
+
 static int opregion_get_panel_type(struct intel_display *display,
 				   const struct intel_bios_encoder_data *devdata,
 				   const struct drm_edid *drm_edid, bool use_fallback)
@@ -640,15 +655,21 @@ static int vbt_get_panel_type(struct intel_display *display,
 	if (!lfp_options)
 		return -1;
 
-	if (lfp_options->panel_type > 0xf &&
-	    lfp_options->panel_type != 0xff) {
+	if (!is_panel_type_valid_or_pnp(lfp_options->panel_type)) {
 		drm_dbg_kms(display->drm, "Invalid VBT panel type 0x%x\n",
 			    lfp_options->panel_type);
 		return -1;
 	}
 
-	if (devdata && devdata->child.handle == DEVICE_HANDLE_LFP2)
+	if (devdata && devdata->child.handle == DEVICE_HANDLE_LFP2) {
+		if (!is_panel_type_valid_or_pnp(lfp_options->panel_type2)) {
+			drm_dbg_kms(display->drm, "Invalid VBT panel type 2 0x%x\n",
+				    lfp_options->panel_type2);
+			return -1;
+		}
+
 		return lfp_options->panel_type2;
+	}
 
 	drm_WARN_ON(display->drm,
 		    devdata && devdata->child.handle != DEVICE_HANDLE_LFP1);
@@ -762,13 +783,12 @@ static int get_panel_type(struct intel_display *display,
 				    panel_types[i].name, panel_types[i].panel_type);
 	}
 
-	if (panel_types[PANEL_TYPE_OPREGION].panel_type >= 0)
+	if (is_panel_type_valid(panel_types[PANEL_TYPE_OPREGION].panel_type))
 		i = PANEL_TYPE_OPREGION;
-	else if (panel_types[PANEL_TYPE_VBT].panel_type == 0xff &&
-		 panel_types[PANEL_TYPE_PNPID].panel_type >= 0)
+	else if (is_panel_type_pnp(panel_types[PANEL_TYPE_VBT].panel_type) &&
+		 is_panel_type_valid(panel_types[PANEL_TYPE_PNPID].panel_type))
 		i = PANEL_TYPE_PNPID;
-	else if (panel_types[PANEL_TYPE_VBT].panel_type != 0xff &&
-		 panel_types[PANEL_TYPE_VBT].panel_type >= 0)
+	else if (is_panel_type_valid(panel_types[PANEL_TYPE_VBT].panel_type))
 		i = PANEL_TYPE_VBT;
 	else
 		i = PANEL_TYPE_FALLBACK;
-- 
2.47.3


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

* ✗ CI.checkpatch: warning for drm/i915/bios: range check LFP Data Block panel_type2 (rev2)
  2026-06-25 13:51 [PATCH] drm/i915/bios: range check LFP Data Block panel_type2 Jani Nikula
                   ` (2 preceding siblings ...)
  2026-06-26 14:01 ` [PATCH v2] " Jani Nikula
@ 2026-06-29 13:49 ` Patchwork
  2026-06-29 13:50 ` ✓ CI.KUnit: success " Patchwork
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-06-29 13:49 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

== Series Details ==

Series: drm/i915/bios: range check LFP Data Block panel_type2 (rev2)
URL   : https://patchwork.freedesktop.org/series/169201/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
061140b9bc586ae7f40abc1249c97e1cc72d1b9d
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 7010f0d0a6e8d55c408c525a99ba91f7c173fe34
Author: Jani Nikula <jani.nikula@intel.com>
Date:   Fri Jun 26 17:01:55 2026 +0300

    drm/i915/bios: range check LFP Data Block panel_type2
    
    While the panel_type from LFP Data Block is range checked, panel_type2
    is not. Add a few helpers for range checking, and use them to not only
    check panel_type2, but also improve clarity and correctness in the panel
    type selection.
    
    Discovered using AI-assisted static analysis confirmed by Intel Product
    Security.
    
    v2:
    - Fix commit message typo (Michał)
    - Add is_panel_type_pnp() (Ville)
    
    Reported-by: Martin Hodo <martin.hodo@intel.com>
    Fixes: 6434cf630086 ("drm/i915/bios: calculate panel type as per child device index in VBT")
    Cc: <stable@vger.kernel.org> # v6.0+
    Cc: Animesh Manna <animesh.manna@intel.com>
    Cc: Ville Syrjälä <ville.syrjala@intel.com>
    Reviewed-by: Michał Grzelak <michal.grzelak@intel.com> # v1
    Signed-off-by: Jani Nikula <jani.nikula@intel.com>
+ /mt/dim checkpatch b9aebfff5a3c5049500a7bd4573815090a425f34 drm-intel
7010f0d0a6e8 drm/i915/bios: range check LFP Data Block panel_type2
-:21: WARNING:BAD_REPORTED_BY_LINK: Reported-by: should be immediately followed by Closes: or Link: with a URL to the report
#21: 
Reported-by: Martin Hodo <martin.hodo@intel.com>
Fixes: 6434cf630086 ("drm/i915/bios: calculate panel type as per child device index in VBT")

total: 0 errors, 1 warnings, 0 checks, 62 lines checked



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

* ✓ CI.KUnit: success for drm/i915/bios: range check LFP Data Block panel_type2 (rev2)
  2026-06-25 13:51 [PATCH] drm/i915/bios: range check LFP Data Block panel_type2 Jani Nikula
                   ` (3 preceding siblings ...)
  2026-06-29 13:49 ` ✗ CI.checkpatch: warning for drm/i915/bios: range check LFP Data Block panel_type2 (rev2) Patchwork
@ 2026-06-29 13:50 ` Patchwork
  2026-06-29 14:59 ` ✓ Xe.CI.BAT: " Patchwork
  2026-06-29 18:09 ` ✗ Xe.CI.FULL: failure " Patchwork
  6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-06-29 13:50 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

== Series Details ==

Series: drm/i915/bios: range check LFP Data Block panel_type2 (rev2)
URL   : https://patchwork.freedesktop.org/series/169201/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[13:49:09] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:49:14] 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
[13:49:46] Starting KUnit Kernel (1/1)...
[13:49:46] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:49:46] ================== guc_buf (11 subtests) ===================
[13:49:46] [PASSED] test_smallest
[13:49:46] [PASSED] test_largest
[13:49:46] [PASSED] test_granular
[13:49:46] [PASSED] test_unique
[13:49:46] [PASSED] test_overlap
[13:49:46] [PASSED] test_reusable
[13:49:46] [PASSED] test_too_big
[13:49:46] [PASSED] test_flush
[13:49:46] [PASSED] test_lookup
[13:49:46] [PASSED] test_data
[13:49:46] [PASSED] test_class
[13:49:46] ===================== [PASSED] guc_buf =====================
[13:49:46] =================== guc_dbm (7 subtests) ===================
[13:49:46] [PASSED] test_empty
[13:49:46] [PASSED] test_default
[13:49:46] ======================== test_size  ========================
[13:49:46] [PASSED] 4
[13:49:46] [PASSED] 8
[13:49:46] [PASSED] 32
[13:49:46] [PASSED] 256
[13:49:46] ==================== [PASSED] test_size ====================
[13:49:46] ======================= test_reuse  ========================
[13:49:46] [PASSED] 4
[13:49:46] [PASSED] 8
[13:49:46] [PASSED] 32
[13:49:46] [PASSED] 256
[13:49:46] =================== [PASSED] test_reuse ====================
[13:49:46] =================== test_range_overlap  ====================
[13:49:46] [PASSED] 4
[13:49:46] [PASSED] 8
[13:49:46] [PASSED] 32
[13:49:46] [PASSED] 256
[13:49:46] =============== [PASSED] test_range_overlap ================
[13:49:46] =================== test_range_compact  ====================
[13:49:46] [PASSED] 4
[13:49:46] [PASSED] 8
[13:49:46] [PASSED] 32
[13:49:46] [PASSED] 256
[13:49:46] =============== [PASSED] test_range_compact ================
[13:49:46] ==================== test_range_spare  =====================
[13:49:46] [PASSED] 4
[13:49:46] [PASSED] 8
[13:49:46] [PASSED] 32
[13:49:46] [PASSED] 256
[13:49:46] ================ [PASSED] test_range_spare =================
[13:49:46] ===================== [PASSED] guc_dbm =====================
[13:49:46] =================== guc_idm (6 subtests) ===================
[13:49:46] [PASSED] bad_init
[13:49:46] [PASSED] no_init
[13:49:46] [PASSED] init_fini
[13:49:46] [PASSED] check_used
[13:49:46] [PASSED] check_quota
[13:49:46] [PASSED] check_all
[13:49:46] ===================== [PASSED] guc_idm =====================
[13:49:46] ================== no_relay (3 subtests) ===================
[13:49:46] [PASSED] xe_drops_guc2pf_if_not_ready
[13:49:46] [PASSED] xe_drops_guc2vf_if_not_ready
[13:49:46] [PASSED] xe_rejects_send_if_not_ready
[13:49:46] ==================== [PASSED] no_relay =====================
[13:49:46] ================== pf_relay (14 subtests) ==================
[13:49:46] [PASSED] pf_rejects_guc2pf_too_short
[13:49:46] [PASSED] pf_rejects_guc2pf_too_long
[13:49:46] [PASSED] pf_rejects_guc2pf_no_payload
[13:49:46] [PASSED] pf_fails_no_payload
[13:49:46] [PASSED] pf_fails_bad_origin
[13:49:46] [PASSED] pf_fails_bad_type
[13:49:46] [PASSED] pf_txn_reports_error
[13:49:46] [PASSED] pf_txn_sends_pf2guc
[13:49:46] [PASSED] pf_sends_pf2guc
[13:49:46] [SKIPPED] pf_loopback_nop (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:49:46] [SKIPPED] pf_loopback_echo (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:49:46] [SKIPPED] pf_loopback_fail (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:49:46] [SKIPPED] pf_loopback_busy (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:49:46] [SKIPPED] pf_loopback_retry (requires CONFIG_DRM_XE_DEBUG_SRIOV)
[13:49:46] ==================== [PASSED] pf_relay =====================
[13:49:46] ================== vf_relay (3 subtests) ===================
[13:49:46] [PASSED] vf_rejects_guc2vf_too_short
[13:49:46] [PASSED] vf_rejects_guc2vf_too_long
[13:49:46] [PASSED] vf_rejects_guc2vf_no_payload
[13:49:46] ==================== [PASSED] vf_relay =====================
[13:49:46] ================ pf_gt_config (9 subtests) =================
[13:49:46] [PASSED] fair_contexts_1vf
[13:49:46] [PASSED] fair_doorbells_1vf
[13:49:46] [PASSED] fair_ggtt_1vf
[13:49:46] ====================== fair_vram_1vf  ======================
[13:49:46] [PASSED] 3.50 GiB
[13:49:46] [PASSED] 11.5 GiB
[13:49:46] [PASSED] 15.5 GiB
[13:49:46] [PASSED] 31.5 GiB
[13:49:46] [PASSED] 63.5 GiB
[13:49:46] [PASSED] 1.91 GiB
[13:49:46] ================== [PASSED] fair_vram_1vf ==================
[13:49:46] ================ fair_vram_1vf_admin_only  =================
[13:49:46] [PASSED] 3.50 GiB
[13:49:46] [PASSED] 11.5 GiB
[13:49:46] [PASSED] 15.5 GiB
[13:49:46] [PASSED] 31.5 GiB
[13:49:46] [PASSED] 63.5 GiB
[13:49:46] [PASSED] 1.91 GiB
[13:49:46] ============ [PASSED] fair_vram_1vf_admin_only =============
[13:49:46] ====================== fair_contexts  ======================
[13:49:46] [PASSED] 1 VF
[13:49:46] [PASSED] 2 VFs
[13:49:46] [PASSED] 3 VFs
[13:49:46] [PASSED] 4 VFs
[13:49:46] [PASSED] 5 VFs
[13:49:46] [PASSED] 6 VFs
[13:49:46] [PASSED] 7 VFs
[13:49:46] [PASSED] 8 VFs
[13:49:46] [PASSED] 9 VFs
[13:49:46] [PASSED] 10 VFs
[13:49:46] [PASSED] 11 VFs
[13:49:46] [PASSED] 12 VFs
[13:49:46] [PASSED] 13 VFs
[13:49:46] [PASSED] 14 VFs
[13:49:46] [PASSED] 15 VFs
[13:49:46] [PASSED] 16 VFs
[13:49:46] [PASSED] 17 VFs
[13:49:46] [PASSED] 18 VFs
[13:49:46] [PASSED] 19 VFs
[13:49:46] [PASSED] 20 VFs
[13:49:46] [PASSED] 21 VFs
[13:49:46] [PASSED] 22 VFs
[13:49:46] [PASSED] 23 VFs
[13:49:46] [PASSED] 24 VFs
[13:49:46] [PASSED] 25 VFs
[13:49:46] [PASSED] 26 VFs
[13:49:46] [PASSED] 27 VFs
[13:49:46] [PASSED] 28 VFs
[13:49:46] [PASSED] 29 VFs
[13:49:46] [PASSED] 30 VFs
[13:49:46] [PASSED] 31 VFs
[13:49:46] [PASSED] 32 VFs
[13:49:46] [PASSED] 33 VFs
[13:49:46] [PASSED] 34 VFs
[13:49:46] [PASSED] 35 VFs
[13:49:46] [PASSED] 36 VFs
[13:49:46] [PASSED] 37 VFs
[13:49:46] [PASSED] 38 VFs
[13:49:46] [PASSED] 39 VFs
[13:49:46] [PASSED] 40 VFs
[13:49:46] [PASSED] 41 VFs
[13:49:46] [PASSED] 42 VFs
[13:49:46] [PASSED] 43 VFs
[13:49:46] [PASSED] 44 VFs
[13:49:46] [PASSED] 45 VFs
[13:49:46] [PASSED] 46 VFs
[13:49:46] [PASSED] 47 VFs
[13:49:46] [PASSED] 48 VFs
[13:49:46] [PASSED] 49 VFs
[13:49:46] [PASSED] 50 VFs
[13:49:46] [PASSED] 51 VFs
[13:49:46] [PASSED] 52 VFs
[13:49:46] [PASSED] 53 VFs
[13:49:46] [PASSED] 54 VFs
[13:49:46] [PASSED] 55 VFs
[13:49:46] [PASSED] 56 VFs
[13:49:46] [PASSED] 57 VFs
[13:49:46] [PASSED] 58 VFs
[13:49:46] [PASSED] 59 VFs
[13:49:46] [PASSED] 60 VFs
[13:49:46] [PASSED] 61 VFs
[13:49:46] [PASSED] 62 VFs
[13:49:46] [PASSED] 63 VFs
[13:49:46] ================== [PASSED] fair_contexts ==================
[13:49:46] ===================== fair_doorbells  ======================
[13:49:46] [PASSED] 1 VF
[13:49:46] [PASSED] 2 VFs
[13:49:46] [PASSED] 3 VFs
[13:49:46] [PASSED] 4 VFs
[13:49:46] [PASSED] 5 VFs
[13:49:46] [PASSED] 6 VFs
[13:49:46] [PASSED] 7 VFs
[13:49:46] [PASSED] 8 VFs
[13:49:46] [PASSED] 9 VFs
[13:49:46] [PASSED] 10 VFs
[13:49:46] [PASSED] 11 VFs
[13:49:46] [PASSED] 12 VFs
[13:49:46] [PASSED] 13 VFs
[13:49:46] [PASSED] 14 VFs
[13:49:46] [PASSED] 15 VFs
[13:49:46] [PASSED] 16 VFs
[13:49:46] [PASSED] 17 VFs
[13:49:46] [PASSED] 18 VFs
[13:49:46] [PASSED] 19 VFs
[13:49:46] [PASSED] 20 VFs
[13:49:46] [PASSED] 21 VFs
[13:49:46] [PASSED] 22 VFs
[13:49:46] [PASSED] 23 VFs
[13:49:46] [PASSED] 24 VFs
[13:49:46] [PASSED] 25 VFs
[13:49:46] [PASSED] 26 VFs
[13:49:46] [PASSED] 27 VFs
[13:49:46] [PASSED] 28 VFs
[13:49:46] [PASSED] 29 VFs
[13:49:46] [PASSED] 30 VFs
[13:49:46] [PASSED] 31 VFs
[13:49:46] [PASSED] 32 VFs
[13:49:46] [PASSED] 33 VFs
[13:49:46] [PASSED] 34 VFs
[13:49:46] [PASSED] 35 VFs
[13:49:46] [PASSED] 36 VFs
[13:49:46] [PASSED] 37 VFs
[13:49:46] [PASSED] 38 VFs
[13:49:46] [PASSED] 39 VFs
[13:49:46] [PASSED] 40 VFs
[13:49:46] [PASSED] 41 VFs
[13:49:46] [PASSED] 42 VFs
[13:49:46] [PASSED] 43 VFs
[13:49:46] [PASSED] 44 VFs
[13:49:46] [PASSED] 45 VFs
[13:49:46] [PASSED] 46 VFs
[13:49:46] [PASSED] 47 VFs
[13:49:46] [PASSED] 48 VFs
[13:49:46] [PASSED] 49 VFs
[13:49:46] [PASSED] 50 VFs
[13:49:46] [PASSED] 51 VFs
[13:49:46] [PASSED] 52 VFs
[13:49:46] [PASSED] 53 VFs
[13:49:46] [PASSED] 54 VFs
[13:49:46] [PASSED] 55 VFs
[13:49:46] [PASSED] 56 VFs
[13:49:46] [PASSED] 57 VFs
[13:49:46] [PASSED] 58 VFs
[13:49:46] [PASSED] 59 VFs
[13:49:46] [PASSED] 60 VFs
[13:49:46] [PASSED] 61 VFs
[13:49:46] [PASSED] 62 VFs
[13:49:46] [PASSED] 63 VFs
[13:49:46] ================= [PASSED] fair_doorbells ==================
[13:49:46] ======================== fair_ggtt  ========================
[13:49:46] [PASSED] 1 VF
[13:49:46] [PASSED] 2 VFs
[13:49:46] [PASSED] 3 VFs
[13:49:46] [PASSED] 4 VFs
[13:49:46] [PASSED] 5 VFs
[13:49:46] [PASSED] 6 VFs
[13:49:46] [PASSED] 7 VFs
[13:49:46] [PASSED] 8 VFs
[13:49:46] [PASSED] 9 VFs
[13:49:46] [PASSED] 10 VFs
[13:49:46] [PASSED] 11 VFs
[13:49:46] [PASSED] 12 VFs
[13:49:46] [PASSED] 13 VFs
[13:49:46] [PASSED] 14 VFs
[13:49:46] [PASSED] 15 VFs
[13:49:46] [PASSED] 16 VFs
[13:49:46] [PASSED] 17 VFs
[13:49:46] [PASSED] 18 VFs
[13:49:46] [PASSED] 19 VFs
[13:49:46] [PASSED] 20 VFs
[13:49:46] [PASSED] 21 VFs
[13:49:46] [PASSED] 22 VFs
[13:49:46] [PASSED] 23 VFs
[13:49:46] [PASSED] 24 VFs
[13:49:46] [PASSED] 25 VFs
[13:49:46] [PASSED] 26 VFs
[13:49:46] [PASSED] 27 VFs
[13:49:46] [PASSED] 28 VFs
[13:49:46] [PASSED] 29 VFs
[13:49:46] [PASSED] 30 VFs
[13:49:46] [PASSED] 31 VFs
[13:49:46] [PASSED] 32 VFs
[13:49:46] [PASSED] 33 VFs
[13:49:46] [PASSED] 34 VFs
[13:49:46] [PASSED] 35 VFs
[13:49:46] [PASSED] 36 VFs
[13:49:46] [PASSED] 37 VFs
[13:49:46] [PASSED] 38 VFs
[13:49:46] [PASSED] 39 VFs
[13:49:46] [PASSED] 40 VFs
[13:49:46] [PASSED] 41 VFs
[13:49:46] [PASSED] 42 VFs
[13:49:46] [PASSED] 43 VFs
[13:49:46] [PASSED] 44 VFs
[13:49:46] [PASSED] 45 VFs
[13:49:46] [PASSED] 46 VFs
[13:49:46] [PASSED] 47 VFs
[13:49:46] [PASSED] 48 VFs
[13:49:46] [PASSED] 49 VFs
[13:49:46] [PASSED] 50 VFs
[13:49:46] [PASSED] 51 VFs
[13:49:46] [PASSED] 52 VFs
[13:49:46] [PASSED] 53 VFs
[13:49:46] [PASSED] 54 VFs
[13:49:46] [PASSED] 55 VFs
[13:49:46] [PASSED] 56 VFs
[13:49:46] [PASSED] 57 VFs
[13:49:46] [PASSED] 58 VFs
[13:49:46] [PASSED] 59 VFs
[13:49:46] [PASSED] 60 VFs
[13:49:46] [PASSED] 61 VFs
[13:49:46] [PASSED] 62 VFs
[13:49:46] [PASSED] 63 VFs
[13:49:46] ==================== [PASSED] fair_ggtt ====================
[13:49:46] ======================== fair_vram  ========================
[13:49:46] [PASSED] 1 VF
[13:49:46] [PASSED] 2 VFs
[13:49:46] [PASSED] 3 VFs
[13:49:46] [PASSED] 4 VFs
[13:49:46] [PASSED] 5 VFs
[13:49:46] [PASSED] 6 VFs
[13:49:46] [PASSED] 7 VFs
[13:49:46] [PASSED] 8 VFs
[13:49:46] [PASSED] 9 VFs
[13:49:46] [PASSED] 10 VFs
[13:49:46] [PASSED] 11 VFs
[13:49:46] [PASSED] 12 VFs
[13:49:46] [PASSED] 13 VFs
[13:49:46] [PASSED] 14 VFs
[13:49:46] [PASSED] 15 VFs
[13:49:46] [PASSED] 16 VFs
[13:49:46] [PASSED] 17 VFs
[13:49:46] [PASSED] 18 VFs
[13:49:46] [PASSED] 19 VFs
[13:49:46] [PASSED] 20 VFs
[13:49:46] [PASSED] 21 VFs
[13:49:46] [PASSED] 22 VFs
[13:49:46] [PASSED] 23 VFs
[13:49:46] [PASSED] 24 VFs
[13:49:46] [PASSED] 25 VFs
[13:49:46] [PASSED] 26 VFs
[13:49:46] [PASSED] 27 VFs
[13:49:46] [PASSED] 28 VFs
[13:49:46] [PASSED] 29 VFs
[13:49:46] [PASSED] 30 VFs
[13:49:46] [PASSED] 31 VFs
[13:49:46] [PASSED] 32 VFs
[13:49:46] [PASSED] 33 VFs
[13:49:46] [PASSED] 34 VFs
[13:49:46] [PASSED] 35 VFs
[13:49:46] [PASSED] 36 VFs
[13:49:46] [PASSED] 37 VFs
[13:49:46] [PASSED] 38 VFs
[13:49:46] [PASSED] 39 VFs
[13:49:46] [PASSED] 40 VFs
[13:49:46] [PASSED] 41 VFs
[13:49:46] [PASSED] 42 VFs
[13:49:46] [PASSED] 43 VFs
[13:49:46] [PASSED] 44 VFs
[13:49:46] [PASSED] 45 VFs
[13:49:46] [PASSED] 46 VFs
[13:49:46] [PASSED] 47 VFs
[13:49:46] [PASSED] 48 VFs
[13:49:46] [PASSED] 49 VFs
[13:49:46] [PASSED] 50 VFs
[13:49:46] [PASSED] 51 VFs
[13:49:46] [PASSED] 52 VFs
[13:49:46] [PASSED] 53 VFs
[13:49:46] [PASSED] 54 VFs
[13:49:46] [PASSED] 55 VFs
[13:49:46] [PASSED] 56 VFs
[13:49:46] [PASSED] 57 VFs
[13:49:46] [PASSED] 58 VFs
[13:49:46] [PASSED] 59 VFs
[13:49:46] [PASSED] 60 VFs
[13:49:46] [PASSED] 61 VFs
[13:49:46] [PASSED] 62 VFs
[13:49:46] [PASSED] 63 VFs
[13:49:46] ==================== [PASSED] fair_vram ====================
[13:49:46] ================== [PASSED] pf_gt_config ===================
[13:49:46] ===================== lmtt (1 subtest) =====================
[13:49:46] ======================== test_ops  =========================
[13:49:46] [PASSED] 2-level
[13:49:46] [PASSED] multi-level
[13:49:46] ==================== [PASSED] test_ops =====================
[13:49:46] ====================== [PASSED] lmtt =======================
[13:49:46] ================= pf_service (11 subtests) =================
[13:49:46] [PASSED] pf_negotiate_any
[13:49:46] [PASSED] pf_negotiate_base_match
[13:49:46] [PASSED] pf_negotiate_base_newer
[13:49:46] [PASSED] pf_negotiate_base_next
[13:49:46] [SKIPPED] pf_negotiate_base_older (no older minor)
[13:49:46] [PASSED] pf_negotiate_base_prev
[13:49:46] [PASSED] pf_negotiate_latest_match
[13:49:46] [PASSED] pf_negotiate_latest_newer
[13:49:46] [PASSED] pf_negotiate_latest_next
[13:49:46] [SKIPPED] pf_negotiate_latest_older (no older minor)
[13:49:46] [SKIPPED] pf_negotiate_latest_prev (no prev major)
[13:49:46] =================== [PASSED] pf_service ====================
[13:49:46] ================= xe_guc_g2g (2 subtests) ==================
[13:49:46] ============== xe_live_guc_g2g_kunit_default  ==============
[13:49:46] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[13:49:46] ============== xe_live_guc_g2g_kunit_allmem  ===============
[13:49:46] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[13:49:46] =================== [SKIPPED] xe_guc_g2g ===================
[13:49:46] =================== xe_mocs (2 subtests) ===================
[13:49:46] ================ xe_live_mocs_kernel_kunit  ================
[13:49:46] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[13:49:46] ================ xe_live_mocs_reset_kunit  =================
[13:49:46] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[13:49:46] ==================== [SKIPPED] xe_mocs =====================
[13:49:46] ================= xe_migrate (2 subtests) ==================
[13:49:46] ================= xe_migrate_sanity_kunit  =================
[13:49:46] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[13:49:46] ================== xe_validate_ccs_kunit  ==================
[13:49:46] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[13:49:46] =================== [SKIPPED] xe_migrate ===================
[13:49:46] ================== xe_dma_buf (1 subtest) ==================
[13:49:46] ==================== xe_dma_buf_kunit  =====================
[13:49:46] ================ [SKIPPED] xe_dma_buf_kunit ================
[13:49:46] =================== [SKIPPED] xe_dma_buf ===================
[13:49:46] ================= xe_bo_shrink (1 subtest) =================
[13:49:46] =================== xe_bo_shrink_kunit  ====================
[13:49:46] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[13:49:46] ================== [SKIPPED] xe_bo_shrink ==================
[13:49:46] ==================== xe_bo (2 subtests) ====================
[13:49:46] ================== xe_ccs_migrate_kunit  ===================
[13:49:46] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[13:49:46] ==================== xe_bo_evict_kunit  ====================
[13:49:46] =============== [SKIPPED] xe_bo_evict_kunit ================
[13:49:46] ===================== [SKIPPED] xe_bo ======================
[13:49:46] ==================== args (13 subtests) ====================
[13:49:46] [PASSED] count_args_test
[13:49:46] [PASSED] call_args_example
[13:49:46] [PASSED] call_args_test
[13:49:46] [PASSED] drop_first_arg_example
[13:49:46] [PASSED] drop_first_arg_test
[13:49:46] [PASSED] first_arg_example
[13:49:46] [PASSED] first_arg_test
[13:49:46] [PASSED] last_arg_example
[13:49:46] [PASSED] last_arg_test
[13:49:46] [PASSED] pick_arg_example
[13:49:46] [PASSED] if_args_example
[13:49:46] [PASSED] if_args_test
[13:49:46] [PASSED] sep_comma_example
[13:49:46] ====================== [PASSED] args =======================
[13:49:46] =================== xe_pci (3 subtests) ====================
[13:49:46] ==================== check_graphics_ip  ====================
[13:49:46] [PASSED] 12.00 Xe_LP
[13:49:46] [PASSED] 12.10 Xe_LP+
[13:49:46] [PASSED] 12.55 Xe_HPG
[13:49:46] [PASSED] 12.60 Xe_HPC
[13:49:46] [PASSED] 12.70 Xe_LPG
[13:49:46] [PASSED] 12.71 Xe_LPG
[13:49:46] [PASSED] 12.74 Xe_LPG+
[13:49:46] [PASSED] 20.01 Xe2_HPG
[13:49:46] [PASSED] 20.02 Xe2_HPG
[13:49:46] [PASSED] 20.04 Xe2_LPG
[13:49:46] [PASSED] 30.00 Xe3_LPG
[13:49:46] [PASSED] 30.01 Xe3_LPG
[13:49:46] [PASSED] 30.03 Xe3_LPG
[13:49:46] [PASSED] 30.04 Xe3_LPG
[13:49:46] [PASSED] 30.05 Xe3_LPG
[13:49:46] [PASSED] 35.10 Xe3p_LPG
[13:49:46] [PASSED] 35.11 Xe3p_XPC
[13:49:46] ================ [PASSED] check_graphics_ip ================
[13:49:46] ===================== check_media_ip  ======================
[13:49:46] [PASSED] 12.00 Xe_M
[13:49:46] [PASSED] 12.55 Xe_HPM
[13:49:46] [PASSED] 13.00 Xe_LPM+
[13:49:46] [PASSED] 13.01 Xe2_HPM
[13:49:46] [PASSED] 20.00 Xe2_LPM
[13:49:46] [PASSED] 30.00 Xe3_LPM
[13:49:46] [PASSED] 30.02 Xe3_LPM
[13:49:46] [PASSED] 35.00 Xe3p_LPM
[13:49:46] [PASSED] 35.03 Xe3p_HPM
[13:49:46] ================= [PASSED] check_media_ip ==================
[13:49:46] =================== check_platform_desc  ===================
[13:49:46] [PASSED] 0x9A60 (TIGERLAKE)
[13:49:46] [PASSED] 0x9A68 (TIGERLAKE)
[13:49:46] [PASSED] 0x9A70 (TIGERLAKE)
[13:49:46] [PASSED] 0x9A40 (TIGERLAKE)
[13:49:46] [PASSED] 0x9A49 (TIGERLAKE)
[13:49:46] [PASSED] 0x9A59 (TIGERLAKE)
[13:49:46] [PASSED] 0x9A78 (TIGERLAKE)
[13:49:46] [PASSED] 0x9AC0 (TIGERLAKE)
[13:49:46] [PASSED] 0x9AC9 (TIGERLAKE)
[13:49:46] [PASSED] 0x9AD9 (TIGERLAKE)
[13:49:46] [PASSED] 0x9AF8 (TIGERLAKE)
[13:49:46] [PASSED] 0x4C80 (ROCKETLAKE)
[13:49:46] [PASSED] 0x4C8A (ROCKETLAKE)
[13:49:46] [PASSED] 0x4C8B (ROCKETLAKE)
[13:49:46] [PASSED] 0x4C8C (ROCKETLAKE)
[13:49:46] [PASSED] 0x4C90 (ROCKETLAKE)
[13:49:46] [PASSED] 0x4C9A (ROCKETLAKE)
[13:49:46] [PASSED] 0x4680 (ALDERLAKE_S)
[13:49:46] [PASSED] 0x4682 (ALDERLAKE_S)
[13:49:46] [PASSED] 0x4688 (ALDERLAKE_S)
[13:49:46] [PASSED] 0x468A (ALDERLAKE_S)
[13:49:46] [PASSED] 0x468B (ALDERLAKE_S)
[13:49:46] [PASSED] 0x4690 (ALDERLAKE_S)
[13:49:46] [PASSED] 0x4692 (ALDERLAKE_S)
[13:49:46] [PASSED] 0x4693 (ALDERLAKE_S)
[13:49:46] [PASSED] 0x46A0 (ALDERLAKE_P)
[13:49:46] [PASSED] 0x46A1 (ALDERLAKE_P)
[13:49:46] [PASSED] 0x46A2 (ALDERLAKE_P)
[13:49:46] [PASSED] 0x46A3 (ALDERLAKE_P)
[13:49:46] [PASSED] 0x46A6 (ALDERLAKE_P)
[13:49:46] [PASSED] 0x46A8 (ALDERLAKE_P)
[13:49:46] [PASSED] 0x46AA (ALDERLAKE_P)
[13:49:46] [PASSED] 0x462A (ALDERLAKE_P)
[13:49:46] [PASSED] 0x4626 (ALDERLAKE_P)
[13:49:46] [PASSED] 0x4628 (ALDERLAKE_P)
[13:49:46] [PASSED] 0x46B0 (ALDERLAKE_P)
[13:49:46] [PASSED] 0x46B1 (ALDERLAKE_P)
[13:49:46] [PASSED] 0x46B2 (ALDERLAKE_P)
[13:49:46] [PASSED] 0x46B3 (ALDERLAKE_P)
[13:49:46] [PASSED] 0x46C0 (ALDERLAKE_P)
[13:49:46] [PASSED] 0x46C1 (ALDERLAKE_P)
[13:49:46] [PASSED] 0x46C2 (ALDERLAKE_P)
[13:49:46] [PASSED] 0x46C3 (ALDERLAKE_P)
[13:49:46] [PASSED] 0x46D0 (ALDERLAKE_N)
[13:49:46] [PASSED] 0x46D1 (ALDERLAKE_N)
[13:49:46] [PASSED] 0x46D2 (ALDERLAKE_N)
[13:49:46] [PASSED] 0x46D3 (ALDERLAKE_N)
[13:49:46] [PASSED] 0x46D4 (ALDERLAKE_N)
[13:49:46] [PASSED] 0xA721 (ALDERLAKE_P)
[13:49:46] [PASSED] 0xA7A1 (ALDERLAKE_P)
[13:49:46] [PASSED] 0xA7A9 (ALDERLAKE_P)
[13:49:46] [PASSED] 0xA7AC (ALDERLAKE_P)
[13:49:46] [PASSED] 0xA7AD (ALDERLAKE_P)
[13:49:46] [PASSED] 0xA720 (ALDERLAKE_P)
[13:49:46] [PASSED] 0xA7A0 (ALDERLAKE_P)
[13:49:46] [PASSED] 0xA7A8 (ALDERLAKE_P)
[13:49:46] [PASSED] 0xA7AA (ALDERLAKE_P)
[13:49:46] [PASSED] 0xA7AB (ALDERLAKE_P)
[13:49:46] [PASSED] 0xA780 (ALDERLAKE_S)
[13:49:46] [PASSED] 0xA781 (ALDERLAKE_S)
[13:49:46] [PASSED] 0xA782 (ALDERLAKE_S)
[13:49:46] [PASSED] 0xA783 (ALDERLAKE_S)
[13:49:46] [PASSED] 0xA788 (ALDERLAKE_S)
[13:49:46] [PASSED] 0xA789 (ALDERLAKE_S)
[13:49:46] [PASSED] 0xA78A (ALDERLAKE_S)
[13:49:46] [PASSED] 0xA78B (ALDERLAKE_S)
[13:49:46] [PASSED] 0x4905 (DG1)
[13:49:46] [PASSED] 0x4906 (DG1)
[13:49:46] [PASSED] 0x4907 (DG1)
[13:49:46] [PASSED] 0x4908 (DG1)
[13:49:46] [PASSED] 0x4909 (DG1)
[13:49:46] [PASSED] 0x56C0 (DG2)
[13:49:46] [PASSED] 0x56C2 (DG2)
[13:49:46] [PASSED] 0x56C1 (DG2)
[13:49:46] [PASSED] 0x7D51 (METEORLAKE)
[13:49:46] [PASSED] 0x7DD1 (METEORLAKE)
[13:49:46] [PASSED] 0x7D41 (METEORLAKE)
[13:49:46] [PASSED] 0x7D67 (METEORLAKE)
[13:49:46] [PASSED] 0xB640 (METEORLAKE)
[13:49:46] [PASSED] 0x56A0 (DG2)
[13:49:46] [PASSED] 0x56A1 (DG2)
[13:49:46] [PASSED] 0x56A2 (DG2)
[13:49:46] [PASSED] 0x56BE (DG2)
[13:49:46] [PASSED] 0x56BF (DG2)
[13:49:46] [PASSED] 0x5690 (DG2)
[13:49:46] [PASSED] 0x5691 (DG2)
[13:49:46] [PASSED] 0x5692 (DG2)
[13:49:46] [PASSED] 0x56A5 (DG2)
[13:49:46] [PASSED] 0x56A6 (DG2)
[13:49:46] [PASSED] 0x56B0 (DG2)
[13:49:46] [PASSED] 0x56B1 (DG2)
[13:49:46] [PASSED] 0x56BA (DG2)
[13:49:46] [PASSED] 0x56BB (DG2)
[13:49:46] [PASSED] 0x56BC (DG2)
[13:49:46] [PASSED] 0x56BD (DG2)
[13:49:46] [PASSED] 0x5693 (DG2)
[13:49:46] [PASSED] 0x5694 (DG2)
[13:49:46] [PASSED] 0x5695 (DG2)
[13:49:46] [PASSED] 0x56A3 (DG2)
[13:49:46] [PASSED] 0x56A4 (DG2)
[13:49:46] [PASSED] 0x56B2 (DG2)
[13:49:46] [PASSED] 0x56B3 (DG2)
[13:49:46] [PASSED] 0x5696 (DG2)
[13:49:46] [PASSED] 0x5697 (DG2)
[13:49:46] [PASSED] 0xB69 (PVC)
[13:49:46] [PASSED] 0xB6E (PVC)
[13:49:46] [PASSED] 0xBD4 (PVC)
[13:49:46] [PASSED] 0xBD5 (PVC)
[13:49:46] [PASSED] 0xBD6 (PVC)
[13:49:46] [PASSED] 0xBD7 (PVC)
[13:49:46] [PASSED] 0xBD8 (PVC)
[13:49:46] [PASSED] 0xBD9 (PVC)
[13:49:46] [PASSED] 0xBDA (PVC)
[13:49:46] [PASSED] 0xBDB (PVC)
[13:49:46] [PASSED] 0xBE0 (PVC)
[13:49:46] [PASSED] 0xBE1 (PVC)
[13:49:46] [PASSED] 0xBE5 (PVC)
[13:49:46] [PASSED] 0x7D40 (METEORLAKE)
[13:49:46] [PASSED] 0x7D45 (METEORLAKE)
[13:49:46] [PASSED] 0x7D55 (METEORLAKE)
[13:49:46] [PASSED] 0x7D60 (METEORLAKE)
[13:49:46] [PASSED] 0x7DD5 (METEORLAKE)
[13:49:46] [PASSED] 0x6420 (LUNARLAKE)
[13:49:46] [PASSED] 0x64A0 (LUNARLAKE)
[13:49:46] [PASSED] 0x64B0 (LUNARLAKE)
[13:49:46] [PASSED] 0xE202 (BATTLEMAGE)
[13:49:46] [PASSED] 0xE209 (BATTLEMAGE)
[13:49:46] [PASSED] 0xE20B (BATTLEMAGE)
[13:49:46] [PASSED] 0xE20C (BATTLEMAGE)
[13:49:46] [PASSED] 0xE20D (BATTLEMAGE)
[13:49:46] [PASSED] 0xE210 (BATTLEMAGE)
[13:49:46] [PASSED] 0xE211 (BATTLEMAGE)
[13:49:46] [PASSED] 0xE212 (BATTLEMAGE)
[13:49:46] [PASSED] 0xE216 (BATTLEMAGE)
[13:49:46] [PASSED] 0xE220 (BATTLEMAGE)
[13:49:46] [PASSED] 0xE221 (BATTLEMAGE)
[13:49:46] [PASSED] 0xE222 (BATTLEMAGE)
[13:49:46] [PASSED] 0xE223 (BATTLEMAGE)
[13:49:46] [PASSED] 0xB080 (PANTHERLAKE)
[13:49:46] [PASSED] 0xB081 (PANTHERLAKE)
[13:49:46] [PASSED] 0xB082 (PANTHERLAKE)
[13:49:46] [PASSED] 0xB083 (PANTHERLAKE)
[13:49:46] [PASSED] 0xB084 (PANTHERLAKE)
[13:49:46] [PASSED] 0xB085 (PANTHERLAKE)
[13:49:46] [PASSED] 0xB086 (PANTHERLAKE)
[13:49:46] [PASSED] 0xB087 (PANTHERLAKE)
[13:49:46] [PASSED] 0xB08F (PANTHERLAKE)
[13:49:46] [PASSED] 0xB090 (PANTHERLAKE)
[13:49:46] [PASSED] 0xB0A0 (PANTHERLAKE)
[13:49:46] [PASSED] 0xB0B0 (PANTHERLAKE)
[13:49:46] [PASSED] 0xFD80 (PANTHERLAKE)
[13:49:46] [PASSED] 0xFD81 (PANTHERLAKE)
[13:49:46] [PASSED] 0xD740 (NOVALAKE_S)
[13:49:46] [PASSED] 0xD741 (NOVALAKE_S)
[13:49:46] [PASSED] 0xD742 (NOVALAKE_S)
[13:49:46] [PASSED] 0xD743 (NOVALAKE_S)
[13:49:46] [PASSED] 0xD745 (NOVALAKE_S)
[13:49:46] [PASSED] 0xD74A (NOVALAKE_S)
[13:49:46] [PASSED] 0xD74B (NOVALAKE_S)
[13:49:46] [PASSED] 0x674C (CRESCENTISLAND)
[13:49:46] [PASSED] 0x674D (CRESCENTISLAND)
[13:49:46] [PASSED] 0x674E (CRESCENTISLAND)
[13:49:46] [PASSED] 0x674F (CRESCENTISLAND)
[13:49:46] [PASSED] 0x6750 (CRESCENTISLAND)
[13:49:46] [PASSED] 0xD750 (NOVALAKE_P)
[13:49:46] [PASSED] 0xD751 (NOVALAKE_P)
[13:49:46] [PASSED] 0xD752 (NOVALAKE_P)
[13:49:46] [PASSED] 0xD753 (NOVALAKE_P)
[13:49:46] [PASSED] 0xD754 (NOVALAKE_P)
[13:49:46] [PASSED] 0xD755 (NOVALAKE_P)
[13:49:46] [PASSED] 0xD756 (NOVALAKE_P)
[13:49:46] [PASSED] 0xD757 (NOVALAKE_P)
[13:49:46] [PASSED] 0xD75F (NOVALAKE_P)
[13:49:46] =============== [PASSED] check_platform_desc ===============
[13:49:46] ===================== [PASSED] xe_pci ======================
[13:49:46] ============= xe_rtp_tables_test (4 subtests) ==============
[13:49:46] ================== xe_rtp_table_gt_test  ===================
[13:49:46] [PASSED] gt_was/14011060649
[13:49:46] [PASSED] gt_was/14011059788
[13:49:46] [PASSED] gt_was/14015795083
[13:49:46] [PASSED] gt_was/16021867713
[13:49:46] [PASSED] gt_was/14019449301
[13:49:46] [PASSED] gt_was/16028005424
[13:49:46] [PASSED] gt_was/14026578760
[13:49:46] [PASSED] gt_was/1409420604
[13:49:46] [PASSED] gt_was/1408615072
[13:49:46] [PASSED] gt_was/22010523718
[13:49:46] [PASSED] gt_was/14011006942
[13:49:46] [PASSED] gt_was/14014830051
[13:49:46] [PASSED] gt_was/18018781329
[13:49:46] [PASSED] gt_was/1509235366
[13:49:46] [PASSED] gt_was/18018781329
[13:49:46] [PASSED] gt_was/16016694945
[13:49:46] [PASSED] gt_was/14018575942
[13:49:46] [PASSED] gt_was/22016670082
[13:49:46] [PASSED] gt_was/22016670082
[13:49:46] [PASSED] gt_was/14017421178
[13:49:46] [PASSED] gt_was/16025250150
[13:49:46] [PASSED] gt_was/14021871409
[13:49:46] [PASSED] gt_was/16021865536
[13:49:46] [PASSED] gt_was/14021486841
[13:49:46] [PASSED] gt_was/14025160223
[13:49:46] [PASSED] gt_was/14026144927, 16029437861, 14026127056
[13:49:46] [PASSED] gt_was/14025635424
[13:49:46] [PASSED] gt_was/16028005424
[13:49:46] ============== [PASSED] xe_rtp_table_gt_test ===============
[13:49:46] ================== xe_rtp_table_gt_test  ===================
[13:49:46] [PASSED] gt_tunings/Tuning: Blend Fill Caching Optimization Disable
[13:49:46] [PASSED] gt_tunings/Tuning: 32B Access Enable
[13:49:46] [PASSED] gt_tunings/Tuning: L3 cache
[13:49:46] [PASSED] gt_tunings/Tuning: L3 cache - media
[13:49:46] [PASSED] gt_tunings/Tuning: Compression Overfetch
[13:49:46] [PASSED] gt_tunings/Tuning: Compression Overfetch - media
[13:49:46] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3
[13:49:46] [PASSED] gt_tunings/Tuning: Enable compressible partial write overfetch in L3 - media
[13:49:46] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only
[13:49:46] [PASSED] gt_tunings/Tuning: L2 Overfetch Compressible Only - media
[13:49:46] [PASSED] gt_tunings/Tuning: Stateless compression control
[13:49:46] [PASSED] gt_tunings/Tuning: Stateless compression control - media
[13:49:46] [PASSED] gt_tunings/Tuning: L3 RW flush all Cache
[13:49:46] [PASSED] gt_tunings/Tuning: L3 RW flush all cache - media
[13:49:46] [PASSED] gt_tunings/Tuning: Set STLB Bank Hash Mode to 4KB
[13:49:46] ============== [PASSED] xe_rtp_table_gt_test ===============
[13:49:46] ================== xe_rtp_table_oob_test  ==================
[13:49:46] [PASSED] oob_was/1607983814
[13:49:46] [PASSED] oob_was/16010904313
[13:49:46] [PASSED] oob_was/18022495364
[13:49:46] [PASSED] oob_was/22012773006
[13:49:46] [PASSED] oob_was/14014475959
[13:49:46] [PASSED] oob_was/22011391025
[13:49:46] [PASSED] oob_was/22012727170
[13:49:46] [PASSED] oob_was/22012727685
[13:49:46] [PASSED] oob_was/22016596838
[13:49:46] [PASSED] oob_was/18020744125
[13:49:46] [PASSED] oob_was/1409600907
[13:49:46] [PASSED] oob_was/22014953428
[13:49:46] [PASSED] oob_was/16017236439
[13:49:46] [PASSED] oob_was/14019821291
[13:49:46] [PASSED] oob_was/14015076503
[13:49:46] [PASSED] oob_was/14018913170
[13:49:46] [PASSED] oob_was/14018094691
[13:49:46] [PASSED] oob_was/18024947630
[13:49:46] [PASSED] oob_was/16022287689
[13:49:46] [PASSED] oob_was/13011645652
[13:49:46] [PASSED] oob_was/14022293748
[13:49:46] [PASSED] oob_was/22019794406
[13:49:46] [PASSED] oob_was/22019338487
[13:49:46] [PASSED] oob_was/16023588340
[13:49:46] [PASSED] oob_was/14019789679
[13:49:46] [PASSED] oob_was/14022866841
[13:49:46] [PASSED] oob_was/16021333562
[13:49:46] [PASSED] oob_was/14016712196
[13:49:46] [PASSED] oob_was/14015568240
[13:49:46] [PASSED] oob_was/18013179988
[13:49:46] [PASSED] oob_was/1508761755
[13:49:46] [PASSED] oob_was/16023105232
[13:49:46] [PASSED] oob_was/16026508708
[13:49:46] [PASSED] oob_was/14020001231
[13:49:46] [PASSED] oob_was/16023683509
[13:49:46] [PASSED] oob_was/14025515070
[13:49:46] [PASSED] oob_was/15015404425_disable
[13:49:46] [PASSED] oob_was/16026007364
[13:49:46] [PASSED] oob_was/14020316580
[13:49:46] [PASSED] oob_was/14025883347
[13:49:46] [PASSED] oob_was/16029380221
[13:49:46] ============== [PASSED] xe_rtp_table_oob_test ==============
[13:49:46] ================ xe_rtp_table_dev_oob_test  ================
[13:49:46] [PASSED] device_oob_was/22010954014
[13:49:46] [PASSED] device_oob_was/15015404425
[13:49:46] [PASSED] device_oob_was/22019338487_display
[13:49:46] [PASSED] device_oob_was/14022085890
[13:49:46] [PASSED] device_oob_was/14026539277
[13:49:46] [PASSED] device_oob_was/14026633728
[13:49:46] [PASSED] device_oob_was/14026746987
[13:49:46] [PASSED] device_oob_was/14026779378
[13:49:46] ============ [PASSED] xe_rtp_table_dev_oob_test ============
[13:49:46] =============== [PASSED] xe_rtp_tables_test ================
[13:49:46] =================== xe_rtp (3 subtests) ====================
[13:49:46] =================== xe_rtp_rules_tests  ====================
[13:49:46] [PASSED] no
[13:49:46] [PASSED] yes
[13:49:46] [PASSED] no-and-no
[13:49:46] [PASSED] no-and-yes
[13:49:46] [PASSED] yes-and-no
[13:49:46] [PASSED] yes-and-yes
[13:49:46] [PASSED] no-or-no
[13:49:46] [PASSED] no-or-yes
[13:49:46] [PASSED] yes-or-no
[13:49:46] [PASSED] yes-or-yes
[13:49:46] [PASSED] no-yes-or-yes-no
[13:49:46] [PASSED] no-yes-or-yes-yes
[13:49:46] [PASSED] yes-yes-or-no-yes
[13:49:46] [PASSED] yes-yes-or-yes-yes
[13:49:46] [PASSED] no-no-or-yes-or-no
[13:49:46] [PASSED] or
[13:49:46] [PASSED] or-yes
[13:49:46] [PASSED] or-no
[13:49:46] [PASSED] yes-or
[13:49:46] [PASSED] no-or
[13:49:46] [PASSED] no-or-or-yes
[13:49:46] [PASSED] yes-or-or-no
[13:49:46] [PASSED] no-or-or-no
[13:49:46] [PASSED] missing-context-engine-class
[13:49:46] [PASSED] missing-context-engine-class-or-yes
[13:49:46] [PASSED] missing-context-engine-class-or-or-yes
[13:49:46] =============== [PASSED] xe_rtp_rules_tests ================
[13:49:46] =============== xe_rtp_process_to_sr_tests  ================
[13:49:46] [PASSED] coalesce-same-reg
[13:49:46] [PASSED] coalesce-same-reg-literal-and-func
[13:49:46] [PASSED] no-match-no-add
[13:49:46] [PASSED] two-regs-two-entries
[13:49:46] [PASSED] clr-one-set-other
[13:49:46] [PASSED] set-field
[13:49:46] [PASSED] conflict-duplicate
[13:49:46] [PASSED] conflict-not-disjoint
[13:49:46] [PASSED] conflict-not-disjoint-literal-and-func
[13:49:46] [PASSED] conflict-reg-type
[13:49:46] [PASSED] bad-mcr-reg-forced-to-regular
[13:49:46] [PASSED] bad-regular-reg-forced-to-mcr
[13:49:46] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[13:49:46] ================== xe_rtp_process_tests  ===================
[13:49:46] [PASSED] active1
[13:49:46] [PASSED] active2
[13:49:46] [PASSED] active-inactive
[13:49:46] [PASSED] inactive-active
[13:49:46] [PASSED] inactive-active-inactive
[13:49:46] [PASSED] inactive-inactive-inactive
[13:49:46] ============== [PASSED] xe_rtp_process_tests ===============
[13:49:46] ===================== [PASSED] xe_rtp ======================
[13:49:46] ==================== xe_wa (1 subtest) =====================
[13:49:46] ======================== xe_wa_gt  =========================
[13:49:46] [PASSED] TIGERLAKE B0
[13:49:46] [PASSED] DG1 A0
[13:49:46] [PASSED] DG1 B0
[13:49:46] [PASSED] ALDERLAKE_S A0
[13:49:46] [PASSED] ALDERLAKE_S B0
[13:49:46] [PASSED] ALDERLAKE_S C0
[13:49:46] [PASSED] ALDERLAKE_S D0
[13:49:46] [PASSED] ALDERLAKE_P A0
[13:49:46] [PASSED] ALDERLAKE_P B0
[13:49:46] [PASSED] ALDERLAKE_P C0
[13:49:46] [PASSED] ALDERLAKE_S RPLS D0
[13:49:46] [PASSED] ALDERLAKE_P RPLU E0
[13:49:46] [PASSED] DG2 G10 C0
[13:49:46] [PASSED] DG2 G11 B1
[13:49:46] [PASSED] DG2 G12 A1
[13:49:46] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:49:46] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:49:46] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[13:49:46] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[13:49:46] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[13:49:46] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[13:49:46] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[13:49:46] ==================== [PASSED] xe_wa_gt =====================
[13:49:46] ====================== [PASSED] xe_wa ======================
[13:49:46] ============================================================
[13:49:46] Testing complete. Ran 719 tests: passed: 701, skipped: 18
[13:49:46] Elapsed time: 36.833s total, 4.388s configuring, 31.829s building, 0.597s running

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/i915/bios: range check LFP Data Block panel_type2 (rev2)
  2026-06-25 13:51 [PATCH] drm/i915/bios: range check LFP Data Block panel_type2 Jani Nikula
                   ` (4 preceding siblings ...)
  2026-06-29 13:50 ` ✓ CI.KUnit: success " Patchwork
@ 2026-06-29 14:59 ` Patchwork
  2026-06-29 18:09 ` ✗ Xe.CI.FULL: failure " Patchwork
  6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-06-29 14:59 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915/bios: range check LFP Data Block panel_type2 (rev2)
URL   : https://patchwork.freedesktop.org/series/169201/
State : success

== Summary ==

CI Bug Log - changes from xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca_BAT -> xe-pw-169201v2_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  Missing    (1): bat-lnl-2 

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

  Here are the changes found in xe-pw-169201v2_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
    - bat-bmg-3:          NOTRUN -> [INCOMPLETE][1] ([Intel XE#8439] / [Intel XE#8479] / [Intel XE#8499]) +4 other tests incomplete
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
    - bat-bmg-3:          NOTRUN -> [INCOMPLETE][2] ([Intel XE#8499])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
    - bat-bmg-3:          NOTRUN -> [INCOMPLETE][3] ([Intel XE#8479] / [Intel XE#8499]) +1 other test incomplete
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
    - bat-bmg-3:          NOTRUN -> [CRASH][4] ([Intel XE#8482]) +3 other tests crash
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html

  * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
    - bat-bmg-3:          NOTRUN -> [SKIP][5] ([Intel XE#6566]) +3 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/bat-bmg-3/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html

  * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
    - bat-bmg-3:          NOTRUN -> [FAIL][6] ([Intel XE#8479])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/bat-bmg-3/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html

  
#### Possible fixes ####

  * igt@xe_ccs@block-copy-compressed:
    - bat-atsm-2:         [INCOMPLETE][7] ([Intel XE#8437]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/bat-atsm-2/igt@xe_ccs@block-copy-compressed.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/bat-atsm-2/igt@xe_ccs@block-copy-compressed.html

  * igt@xe_ccs@block-copy-compressed@linear-compressed-compfmt0-system-vram01:
    - bat-atsm-2:         [INCOMPLETE][9] ([Intel XE#8511]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/bat-atsm-2/igt@xe_ccs@block-copy-compressed@linear-compressed-compfmt0-system-vram01.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/bat-atsm-2/igt@xe_ccs@block-copy-compressed@linear-compressed-compfmt0-system-vram01.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
    - bat-bmg-3:          [INCOMPLETE][11] ([Intel XE#8439] / [Intel XE#8479]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html

  
#### Warnings ####

  * igt@xe_ccs@ctrl-surf-copy@linear-compressed-compfmt0-vram01-vram01:
    - bat-atsm-2:         [INCOMPLETE][13] ([Intel XE#8437]) -> [INCOMPLETE][14] ([Intel XE#8437] / [Intel XE#8511]) +1 other test incomplete
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/bat-atsm-2/igt@xe_ccs@ctrl-surf-copy@linear-compressed-compfmt0-vram01-vram01.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/bat-atsm-2/igt@xe_ccs@ctrl-surf-copy@linear-compressed-compfmt0-vram01-vram01.html

  
  [Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566
  [Intel XE#8437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8437
  [Intel XE#8439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8439
  [Intel XE#8479]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8479
  [Intel XE#8482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8482
  [Intel XE#8499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8499
  [Intel XE#8511]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8511


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

  * Linux: xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca -> xe-pw-169201v2

  IGT_8987: 8987
  xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca: 5fe805765b01f6e3519421039c3ade7cff1074ca
  xe-pw-169201v2: 169201v2

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for drm/i915/bios: range check LFP Data Block panel_type2 (rev2)
  2026-06-25 13:51 [PATCH] drm/i915/bios: range check LFP Data Block panel_type2 Jani Nikula
                   ` (5 preceding siblings ...)
  2026-06-29 14:59 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-06-29 18:09 ` Patchwork
  6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-06-29 18:09 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915/bios: range check LFP Data Block panel_type2 (rev2)
URL   : https://patchwork.freedesktop.org/series/169201/
State : failure

== Summary ==

CI Bug Log - changes from xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca_FULL -> xe-pw-169201v2_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-169201v2_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-169201v2_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 (2 -> 2)
------------------------------

  No changes in participating hosts

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

  Here are the unknown changes that may have been introduced in xe-pw-169201v2_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_bw@connected-linear-tiling-1-displays-target-2560x1440p:
    - shard-bmg:          NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@kms_bw@connected-linear-tiling-1-displays-target-2560x1440p.html

  * igt@xe_exec_system_allocator@process-many-execqueues-mmap-race-nomemset:
    - shard-bmg:          [PASS][2] -> [FAIL][3]
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-5/igt@xe_exec_system_allocator@process-many-execqueues-mmap-race-nomemset.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@xe_exec_system_allocator@process-many-execqueues-mmap-race-nomemset.html

  
#### Warnings ####

  * igt@kms_bw@connected-linear-tiling-2-displays-target-3840x2160p:
    - shard-bmg:          [SKIP][4] ([Intel XE#8480]) -> [FAIL][5]
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@kms_bw@connected-linear-tiling-2-displays-target-3840x2160p.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-target-3840x2160p.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
    - shard-bmg:          [SKIP][6] ([Intel XE#8480]) -> [WARN][7]
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html

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

  Here are the changes found in xe-pw-169201v2_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [CRASH][8] ([Intel XE#8453])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-edp-1.html

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

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-bmg:          NOTRUN -> [TIMEOUT][10] ([Intel XE#8479]) +2 other tests timeout
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][11] ([Intel XE#5643] / [Intel XE#8479])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#2327]) +2 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [INCOMPLETE][13] ([Intel XE#5643] / [Intel XE#8479])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#1124]) +1 other test skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#1124]) +5 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_bw@connected-linear-tiling-1-displays-target-1920x1080p:
    - shard-bmg:          [PASS][16] -> [INCOMPLETE][17] ([Intel XE#8479] / [Intel XE#8506]) +1 other test incomplete
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@kms_bw@connected-linear-tiling-1-displays-target-1920x1080p.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@kms_bw@connected-linear-tiling-1-displays-target-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-1-displays-target-3840x2160p:
    - shard-lnl:          NOTRUN -> [INCOMPLETE][18] ([Intel XE#8445] / [Intel XE#8479])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_bw@connected-linear-tiling-1-displays-target-3840x2160p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#7679])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p.html

  * igt@kms_bw@linear-tiling-2-displays-target-1920x1080p:
    - shard-lnl:          NOTRUN -> [INCOMPLETE][20] ([Intel XE#8445]) +1 other test incomplete
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-8/igt@kms_bw@linear-tiling-2-displays-target-1920x1080p.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc:
    - shard-lnl:          NOTRUN -> [SKIP][21] ([Intel XE#2887]) +3 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#3432]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#2887]) +11 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#2652]) +16 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#2325] / [Intel XE#7358])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_chamelium_color_pipeline@plane-ctm3x4:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#7358])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html

  * igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4:
    - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#7358])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html

  * igt@kms_chamelium_frames@hdmi-aspect-ratio:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2252]) +5 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@kms_chamelium_frames@hdmi-aspect-ratio.html

  * igt@kms_chamelium_frames@hdmi-frame-dump:
    - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#373]) +2 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html

  * igt@kms_chamelium_sharpness_filter@filter-basic:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#6507])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@kms_chamelium_sharpness_filter@filter-basic.html

  * igt@kms_content_protection@dp-mst-type-0:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#2390] / [Intel XE#6974])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@kms_content_protection@dp-mst-type-0.html

  * igt@kms_content_protection@legacy-hdcp14:
    - shard-bmg:          NOTRUN -> [FAIL][32] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@kms_content_protection@legacy-hdcp14.html

  * igt@kms_cursor_crc@cursor-onscreen-128x42:
    - shard-lnl:          NOTRUN -> [SKIP][33] ([Intel XE#1424]) +1 other test skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html

  * igt@kms_cursor_crc@cursor-onscreen-max-size:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#2320]) +2 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-lnl:          NOTRUN -> [SKIP][35] ([Intel XE#2321] / [Intel XE#7355])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#2321] / [Intel XE#7355])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
    - shard-bmg:          [PASS][37] -> [TIMEOUT][38] ([Intel XE#8451] / [Intel XE#8479]) +1 other test timeout
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-7/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
    - shard-lnl:          NOTRUN -> [SKIP][39] ([Intel XE#309] / [Intel XE#7343])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#1508])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#8265]) +2 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner.html

  * igt@kms_dsc@dsc-with-output-formats-bigjoiner:
    - shard-lnl:          NOTRUN -> [SKIP][42] ([Intel XE#8265]) +2 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-8/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#4422] / [Intel XE#7442])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html

  * igt@kms_feature_discovery@display-3x:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#2373] / [Intel XE#7448])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@kms_feature_discovery@display-3x.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3:
    - shard-bmg:          [PASS][45] -> [INCOMPLETE][46] ([Intel XE#8155] / [Intel XE#8479]) +1 other test incomplete
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [PASS][47] -> [FAIL][48] ([Intel XE#301]) +2 other tests fail
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
    - shard-bmg:          NOTRUN -> [TIMEOUT][49] ([Intel XE#8467] / [Intel XE#8479]) +3 other tests timeout
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#7178] / [Intel XE#7349])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-valid-mode:
    - shard-bmg:          [PASS][51] -> [TIMEOUT][52] ([Intel XE#8467] / [Intel XE#8479]) +3 other tests timeout
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-valid-mode.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-10/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][54] ([Intel XE#7061] / [Intel XE#7356])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary:
    - shard-lnl:          NOTRUN -> [SKIP][55] ([Intel XE#6312] / [Intel XE#651]) +3 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#4141]) +12 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#2311]) +49 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-shrfb-scaledprimary:
    - shard-lnl:          NOTRUN -> [SKIP][58] ([Intel XE#6312]) +4 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrshdr-shrfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#7399])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          [PASS][60] -> [TIMEOUT][61] ([Intel XE#8466] / [Intel XE#8479]) +1 other test timeout
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-2/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-render.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-10/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][62] ([Intel XE#8368] / [Intel XE#8479])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][63] ([Intel XE#7905]) +12 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][64] ([Intel XE#7061]) +1 other test skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][65] ([Intel XE#7399])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html

  * igt@kms_frontbuffer_tracking@hdr-rgb565-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][66] ([Intel XE#7865]) +7 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-8/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#2313]) +35 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][68] ([Intel XE#656] / [Intel XE#7905]) +11 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#7061]) +6 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt.html

  * igt@kms_hdr@static-swap:
    - shard-lnl:          NOTRUN -> [SKIP][71] ([Intel XE#1503])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_hdr@static-swap.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier:
    - shard-lnl:          NOTRUN -> [INCOMPLETE][73] ([Intel XE#1035] / [Intel XE#8479])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html

  * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][74] ([Intel XE#1035] / [Intel XE#8479]) +2 other tests incomplete
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-7/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5:
    - shard-lnl:          NOTRUN -> [SKIP][75] ([Intel XE#8303]) +1 other test skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier:
    - shard-bmg:          NOTRUN -> [SKIP][76] ([Intel XE#7283])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#599])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
    - shard-lnl:          NOTRUN -> [SKIP][78] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a:
    - shard-bmg:          [PASS][79] -> [INCOMPLETE][80] ([Intel XE#8459] / [Intel XE#8479]) +3 other tests incomplete
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a:
    - shard-bmg:          [PASS][81] -> [TIMEOUT][82] ([Intel XE#8510]) +1 other test timeout
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
    - shard-bmg:          NOTRUN -> [CRASH][83] ([Intel XE#8458])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
    - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#2763] / [Intel XE#6886]) +2 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-bmg:          NOTRUN -> [SKIP][85] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-bmg:          NOTRUN -> [SKIP][86] ([Intel XE#7794])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-10/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][87] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
    - shard-lnl:          NOTRUN -> [SKIP][88] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][89] ([Intel XE#4608])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][90] ([Intel XE#4608] / [Intel XE#7304])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
    - shard-bmg:          NOTRUN -> [SKIP][91] ([Intel XE#1489]) +5 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-10/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][92] ([Intel XE#8441] / [Intel XE#8480]) +37 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-10/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html

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

  * igt@kms_psr@fbc-psr2-primary-page-flip:
    - shard-lnl:          NOTRUN -> [SKIP][94] ([Intel XE#1406] / [Intel XE#7345])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_psr@fbc-psr2-primary-page-flip.html

  * igt@kms_psr@fbc-psr2-primary-page-flip@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][95] ([Intel XE#1406] / [Intel XE#4609])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html

  * igt@kms_psr@pr-cursor-plane-onoff:
    - shard-lnl:          NOTRUN -> [SKIP][96] ([Intel XE#1406])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_psr@pr-cursor-plane-onoff.html

  * igt@kms_rotation_crc@bad-pixel-format:
    - shard-bmg:          NOTRUN -> [SKIP][97] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@kms_rotation_crc@bad-pixel-format.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-lnl:          NOTRUN -> [SKIP][98] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +1 other test skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
    - shard-lnl:          NOTRUN -> [SKIP][99] ([Intel XE#1127] / [Intel XE#5813])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-bmg:          NOTRUN -> [SKIP][100] ([Intel XE#2330] / [Intel XE#5813])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_scaling_modes@scaling-mode-full:
    - shard-bmg:          NOTRUN -> [SKIP][101] ([Intel XE#2413])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-full.html

  * igt@kms_setmode@invalid-clone-exclusive-crtc:
    - shard-bmg:          NOTRUN -> [SKIP][102] ([Intel XE#1435])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@kms_setmode@invalid-clone-exclusive-crtc.html

  * igt@kms_sharpness_filter@invalid-filter-with-plane:
    - shard-bmg:          NOTRUN -> [SKIP][103] ([Intel XE#6503])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@kms_sharpness_filter@invalid-filter-with-plane.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          NOTRUN -> [SKIP][104] ([Intel XE#2509] / [Intel XE#7437])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vrr@flipline:
    - shard-bmg:          NOTRUN -> [SKIP][105] ([Intel XE#1499]) +1 other test skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@kms_vrr@flipline.html

  * igt@kms_vrr@lobf:
    - shard-bmg:          NOTRUN -> [SKIP][106] ([Intel XE#2168] / [Intel XE#7444])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-7/igt@kms_vrr@lobf.html

  * igt@kms_vrr@lobf-dc3co:
    - shard-bmg:          NOTRUN -> [SKIP][107] ([Intel XE#8397])
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-6/igt@kms_vrr@lobf-dc3co.html

  * igt@xe_ccs@block-multicopy-inplace:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][108] ([Intel XE#8437] / [Intel XE#8479]) +3 other tests incomplete
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@xe_ccs@block-multicopy-inplace.html

  * igt@xe_configfs@engines-allowed-invalid:
    - shard-bmg:          [PASS][109] -> [ABORT][110] ([Intel XE#8007])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-8/igt@xe_configfs@engines-allowed-invalid.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-3/igt@xe_configfs@engines-allowed-invalid.html

  * igt@xe_create@create-big-vram:
    - shard-lnl:          NOTRUN -> [SKIP][111] ([Intel XE#1062] / [Intel XE#7318] / [Intel XE#7457])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@xe_create@create-big-vram.html

  * igt@xe_eudebug@basic-vm-access-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][112] ([Intel XE#7636]) +10 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@xe_eudebug@basic-vm-access-userptr.html

  * igt@xe_eudebug@discovery-empty-clients:
    - shard-lnl:          NOTRUN -> [SKIP][113] ([Intel XE#7636]) +5 other tests skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@xe_eudebug@discovery-empty-clients.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][114] ([Intel XE#6321] / [Intel XE#8355])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
    - shard-lnl:          NOTRUN -> [SKIP][115] ([Intel XE#6540] / [Intel XE#688]) +3 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-8/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html

  * igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-invalidate-race:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][116] ([Intel XE#8479])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-invalidate-race.html

  * igt@xe_exec_balancer@twice-cm-parallel-basic:
    - shard-lnl:          NOTRUN -> [SKIP][117] ([Intel XE#7482]) +6 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@xe_exec_balancer@twice-cm-parallel-basic.html

  * igt@xe_exec_basic@many-execqueues-bindexecqueue-userptr-invalidate-race:
    - shard-bmg:          [PASS][118] -> [INCOMPLETE][119] ([Intel XE#8479] / [Intel XE#8499])
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-3/igt@xe_exec_basic@many-execqueues-bindexecqueue-userptr-invalidate-race.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-6/igt@xe_exec_basic@many-execqueues-bindexecqueue-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][120] ([Intel XE#8439] / [Intel XE#8479] / [Intel XE#8499])
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][121] ([Intel XE#2322] / [Intel XE#7372]) +5 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html

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

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][123] ([Intel XE#8479] / [Intel XE#8499])
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html

  * igt@xe_exec_fault_mode@invalid-va-scratch-nopagefault:
    - shard-bmg:          NOTRUN -> [ABORT][124] ([Intel XE#8007]) +1 other test abort
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-1/igt@xe_exec_fault_mode@invalid-va-scratch-nopagefault.html

  * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm:
    - shard-bmg:          [PASS][125] -> [INCOMPLETE][126] ([Intel XE#8479]) +6 other tests incomplete
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-10/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm.html

  * igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-imm:
    - shard-bmg:          NOTRUN -> [SKIP][127] ([Intel XE#8374]) +12 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-10/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-imm.html

  * igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][128] ([Intel XE#8374]) +1 other test skip
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate.html

  * igt@xe_exec_multi_queue@max-queues-preempt-mode-dyn-priority-smem:
    - shard-lnl:          NOTRUN -> [SKIP][129] ([Intel XE#8364]) +10 other tests skip
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-8/igt@xe_exec_multi_queue@max-queues-preempt-mode-dyn-priority-smem.html

  * igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem:
    - shard-bmg:          NOTRUN -> [SKIP][130] ([Intel XE#8364]) +21 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html

  * igt@xe_exec_reset@multi-queue-cancel:
    - shard-lnl:          NOTRUN -> [SKIP][131] ([Intel XE#8369])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@xe_exec_reset@multi-queue-cancel.html

  * igt@xe_exec_store@basic-all@engine-drm_xe_engine_class_render-instance-0-tile-0-region-system:
    - shard-bmg:          [PASS][132] -> [INCOMPLETE][133] ([Intel XE#8437] / [Intel XE#8479])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-5/igt@xe_exec_store@basic-all@engine-drm_xe_engine_class_render-instance-0-tile-0-region-system.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@xe_exec_store@basic-all@engine-drm_xe_engine_class_render-instance-0-tile-0-region-system.html

  * igt@xe_exec_system_allocator@pat-index-madvise-max-pat-index-single-vma:
    - shard-bmg:          [PASS][134] -> [CRASH][135] ([Intel XE#8450])
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@xe_exec_system_allocator@pat-index-madvise-max-pat-index-single-vma.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@xe_exec_system_allocator@pat-index-madvise-max-pat-index-single-vma.html

  * igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-remap:
    - shard-bmg:          [PASS][136] -> [FAIL][137] ([Intel XE#8479]) +4 other tests fail
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-remap.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-remap.html

  * igt@xe_exec_system_allocator@process-many-large-mmap-free-huge-nomemset:
    - shard-bmg:          [PASS][138] -> [TIMEOUT][139] ([Intel XE#8356] / [Intel XE#8447])
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-7/igt@xe_exec_system_allocator@process-many-large-mmap-free-huge-nomemset.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-2/igt@xe_exec_system_allocator@process-many-large-mmap-free-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-busy-nomemset:
    - shard-bmg:          [PASS][140] -> [INCOMPLETE][141] ([Intel XE#7928] / [Intel XE#8159] / [Intel XE#8479])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-busy-nomemset.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-busy-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-file-mlock:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][142] ([Intel XE#8159] / [Intel XE#8437] / [Intel XE#8479]) +1 other test incomplete
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-file-mlock.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-madvise:
    - shard-lnl:          [PASS][143] -> [TIMEOUT][144] ([Intel XE#8447] / [Intel XE#8479])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-madvise.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-madvise.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-malloc-madvise:
    - shard-bmg:          [PASS][145] -> [INCOMPLETE][146] ([Intel XE#8159] / [Intel XE#8479]) +31 other tests incomplete
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-malloc-madvise.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-malloc-madvise.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-malloc-multi-fault:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][147] ([Intel XE#8159] / [Intel XE#8479]) +8 other tests incomplete
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-malloc-multi-fault.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-shared-remap-dontunmap:
    - shard-lnl:          NOTRUN -> [INCOMPLETE][148] ([Intel XE#8479]) +19 other tests incomplete
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-shared-remap-dontunmap.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-madvise:
    - shard-bmg:          [PASS][149] -> [TIMEOUT][150] ([Intel XE#8447] / [Intel XE#8479])
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-madvise.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-madvise.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-file-mlock-nomemset:
    - shard-bmg:          [PASS][151] -> [INCOMPLETE][152] ([Intel XE#8159] / [Intel XE#8437] / [Intel XE#8479])
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-file-mlock-nomemset.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-file-mlock-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-file-nomemset:
    - shard-lnl:          NOTRUN -> [INCOMPLETE][153] ([Intel XE#8437] / [Intel XE#8479]) +9 other tests incomplete
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-file-nomemset.html

  * igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate-race:
    - shard-lnl:          NOTRUN -> [TIMEOUT][154] ([Intel XE#8470] / [Intel XE#8479])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate-race.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][155] ([Intel XE#8378]) +5 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][156] ([Intel XE#8378])
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
    - shard-bmg:          NOTRUN -> [CRASH][157] ([Intel XE#8448])
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][158] ([Intel XE#8479] / [Intel XE#8486]) +1 other test incomplete
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-10/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html

  * igt@xe_gt_freq@freq_suspend:
    - shard-lnl:          NOTRUN -> [SKIP][159] ([Intel XE#584] / [Intel XE#7369]) +1 other test skip
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-8/igt@xe_gt_freq@freq_suspend.html

  * igt@xe_live_ktest@xe_eudebug:
    - shard-lnl:          NOTRUN -> [SKIP][160] ([Intel XE#2833])
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@xe_live_ktest@xe_eudebug.html

  * igt@xe_multigpu_svm@mgpu-coherency-fail-basic:
    - shard-bmg:          NOTRUN -> [SKIP][161] ([Intel XE#6964])
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-7/igt@xe_multigpu_svm@mgpu-coherency-fail-basic.html

  * igt@xe_non_msix@walker-interrupt-notification-non-msix:
    - shard-bmg:          NOTRUN -> [SKIP][162] ([Intel XE#7622])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@xe_non_msix@walker-interrupt-notification-non-msix.html

  * igt@xe_page_reclaim@prl-max-entries:
    - shard-lnl:          NOTRUN -> [SKIP][163] ([Intel XE#7793])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@xe_page_reclaim@prl-max-entries.html

  * igt@xe_pat@xa-app-transient-media-off:
    - shard-bmg:          NOTRUN -> [SKIP][164] ([Intel XE#7590])
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@xe_pat@xa-app-transient-media-off.html

  * igt@xe_pm@d3cold-multiple-execs:
    - shard-bmg:          NOTRUN -> [SKIP][165] ([Intel XE#2284] / [Intel XE#7370])
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@xe_pm@d3cold-multiple-execs.html

  * igt@xe_pxp@pxp-optout:
    - shard-bmg:          NOTRUN -> [SKIP][166] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@xe_pxp@pxp-optout.html

  * igt@xe_query@multigpu-query-engines:
    - shard-bmg:          NOTRUN -> [SKIP][167] ([Intel XE#944]) +1 other test skip
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@xe_query@multigpu-query-engines.html

  * igt@xe_query@multigpu-query-invalid-extension:
    - shard-lnl:          NOTRUN -> [SKIP][168] ([Intel XE#944])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@xe_query@multigpu-query-invalid-extension.html

  * igt@xe_query@query-gt-list:
    - shard-bmg:          NOTRUN -> [SKIP][169] ([Intel XE#8480]) +109 other tests skip
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-10/igt@xe_query@query-gt-list.html

  * igt@xe_sriov_scheduling@equal-throughput-normal-priority:
    - shard-lnl:          NOTRUN -> [SKIP][170] ([Intel XE#8339])
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@xe_sriov_scheduling@equal-throughput-normal-priority.html

  * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout:
    - shard-bmg:          NOTRUN -> [SKIP][171] ([Intel XE#8440] / [Intel XE#8480]) +54 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html

  * igt@xe_vm@munmap-style-unbind-many-either-side-partial-hammer:
    - shard-bmg:          NOTRUN -> [TIMEOUT][172] ([Intel XE#8462] / [Intel XE#8479])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-10/igt@xe_vm@munmap-style-unbind-many-either-side-partial-hammer.html

  * igt@xe_wedged@wedged-at-any-timeout:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][173] ([Intel XE#5545])
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-7/igt@xe_wedged@wedged-at-any-timeout.html

  
#### Possible fixes ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic:
    - shard-bmg:          [TIMEOUT][174] ([Intel XE#8479]) -> [PASS][175] +1 other test pass
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-3/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-7/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-bmg:          [TIMEOUT][176] ([Intel XE#8446] / [Intel XE#8479]) -> [PASS][177]
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [INCOMPLETE][178] ([Intel XE#7084] / [Intel XE#8150]) -> [PASS][179] +1 other test pass
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          [TIMEOUT][180] ([Intel XE#7935] / [Intel XE#8451] / [Intel XE#8479]) -> [PASS][181]
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          [TIMEOUT][182] ([Intel XE#8451] / [Intel XE#8479]) -> [PASS][183]
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode:
    - shard-bmg:          [TIMEOUT][184] ([Intel XE#8467] / [Intel XE#8479]) -> [PASS][185] +1 other test pass
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [INCOMPLETE][186] ([Intel XE#8368] / [Intel XE#8479]) -> [PASS][187] +1 other test pass
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-5/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [TIMEOUT][188] ([Intel XE#8466] / [Intel XE#8479]) -> [PASS][189] +1 other test pass
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-1/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][190] ([Intel XE#8441] / [Intel XE#8480]) -> [PASS][191] +10 other tests pass
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-indfb-pgflip-blt.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-2/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
    - shard-bmg:          [INCOMPLETE][192] ([Intel XE#8459] / [Intel XE#8479]) -> [PASS][193] +1 other test pass
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
    - shard-bmg:          [INCOMPLETE][194] ([Intel XE#8437] / [Intel XE#8459] / [Intel XE#8479]) -> [PASS][195] +1 other test pass
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html

  * igt@kms_pm_rpm@dpms-non-lpsp:
    - shard-bmg:          [SKIP][196] -> [PASS][197]
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@kms_pm_rpm@dpms-non-lpsp.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@kms_pm_rpm@dpms-non-lpsp.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1:
    - shard-lnl:          [INCOMPLETE][198] ([Intel XE#8479]) -> [PASS][199] +1 other test pass
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-lnl-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1.html

  * igt@xe_exec_basic@many-execqueues-many-vm-userptr-invalidate:
    - shard-bmg:          [INCOMPLETE][200] ([Intel XE#8499]) -> [PASS][201]
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-2/igt@xe_exec_basic@many-execqueues-many-vm-userptr-invalidate.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-1/igt@xe_exec_basic@many-execqueues-many-vm-userptr-invalidate.html

  * igt@xe_exec_basic@many-execqueues-many-vm-userptr-invalidate@bcs0:
    - shard-bmg:          [CRASH][202] ([Intel XE#8482]) -> [PASS][203]
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-2/igt@xe_exec_basic@many-execqueues-many-vm-userptr-invalidate@bcs0.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-1/igt@xe_exec_basic@many-execqueues-many-vm-userptr-invalidate@bcs0.html

  * igt@xe_exec_fault_mode@invalid-va-scratch-nopagefault:
    - shard-lnl:          [ABORT][204] ([Intel XE#8007]) -> [PASS][205]
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-lnl-5/igt@xe_exec_fault_mode@invalid-va-scratch-nopagefault.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@xe_exec_fault_mode@invalid-va-scratch-nopagefault.html

  * igt@xe_exec_store@long-shader-bb-check@gt0-drm_xe_engine_class_render0-bb-system-target-system:
    - shard-bmg:          [INCOMPLETE][206] ([Intel XE#8479]) -> [PASS][207] +10 other tests pass
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@xe_exec_store@long-shader-bb-check@gt0-drm_xe_engine_class_render0-bb-system-target-system.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@xe_exec_store@long-shader-bb-check@gt0-drm_xe_engine_class_render0-bb-system-target-system.html

  * igt@xe_exec_system_allocator@process-many-execqueues-malloc-bo-unmap-nomemset:
    - shard-bmg:          [FAIL][208] ([Intel XE#8479]) -> [PASS][209] +10 other tests pass
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-5/igt@xe_exec_system_allocator@process-many-execqueues-malloc-bo-unmap-nomemset.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@xe_exec_system_allocator@process-many-execqueues-malloc-bo-unmap-nomemset.html

  * igt@xe_exec_system_allocator@process-many-stride-malloc-bo-unmap-nomemset:
    - shard-bmg:          [FAIL][210] -> [PASS][211]
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-7/igt@xe_exec_system_allocator@process-many-stride-malloc-bo-unmap-nomemset.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-2/igt@xe_exec_system_allocator@process-many-stride-malloc-bo-unmap-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-madvise:
    - shard-lnl:          [TIMEOUT][212] ([Intel XE#8447] / [Intel XE#8479]) -> [PASS][213] +1 other test pass
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-lnl-2/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-madvise.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-1/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-madvise.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge-nomemset:
    - shard-bmg:          [TIMEOUT][214] ([Intel XE#8356]) -> [PASS][215]
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-7/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge-nomemset.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-remap-ro:
    - shard-bmg:          [INCOMPLETE][216] ([Intel XE#8159] / [Intel XE#8479]) -> [PASS][217] +17 other tests pass
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-remap-ro.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-remap-ro.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc-fork-read-after:
    - shard-bmg:          [INCOMPLETE][218] ([Intel XE#8159] / [Intel XE#8437] / [Intel XE#8479]) -> [PASS][219] +3 other tests pass
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc-fork-read-after.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc-fork-read-after.html

  * igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
    - shard-bmg:          [INCOMPLETE][220] ([Intel XE#8479] / [Intel XE#8486]) -> [PASS][221] +1 other test pass
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html

  * igt@xe_pmu@engine-activity-render-node-load:
    - shard-bmg:          [SKIP][222] ([Intel XE#8480]) -> [PASS][223] +78 other tests pass
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@xe_pmu@engine-activity-render-node-load.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-2/igt@xe_pmu@engine-activity-render-node-load.html

  * igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer:
    - shard-bmg:          [CRASH][224] ([Intel XE#8518]) -> [PASS][225]
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-1/igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-1/igt@xe_vm@overcommit-nonfault-vram-lr-external-nodefer.html

  * igt@xe_wedged@wedged-mode-toggle:
    - shard-bmg:          [ABORT][226] ([Intel XE#8007]) -> [PASS][227]
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-2/igt@xe_wedged@wedged-mode-toggle.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-1/igt@xe_wedged@wedged-mode-toggle.html

  
#### Warnings ####

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-bmg:          [INCOMPLETE][228] ([Intel XE#5643] / [Intel XE#8479]) -> [TIMEOUT][229] ([Intel XE#8446] / [Intel XE#8479]) +3 other tests timeout
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-lnl:          [TIMEOUT][230] ([Intel XE#8479]) -> [INCOMPLETE][231] ([Intel XE#5643] / [Intel XE#8479])
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-lnl-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-bmg:          [SKIP][232] ([Intel XE#8441] / [Intel XE#8480]) -> [TIMEOUT][233] ([Intel XE#8446] / [Intel XE#8479])
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-bmg:          [TIMEOUT][234] ([Intel XE#8446] / [Intel XE#8479]) -> [INCOMPLETE][235] ([Intel XE#5643] / [Intel XE#8479]) +2 other tests incomplete
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-lnl:          [INCOMPLETE][236] ([Intel XE#5643] / [Intel XE#8479]) -> [SKIP][237] ([Intel XE#1124])
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-lnl-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
    - shard-bmg:          [SKIP][238] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][239] ([Intel XE#1124])
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-lnl:          [INCOMPLETE][240] ([Intel XE#5643] / [Intel XE#8479]) -> [TIMEOUT][241] ([Intel XE#8446])
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-lnl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p:
    - shard-bmg:          [SKIP][242] ([Intel XE#7679]) -> [CRASH][243] ([Intel XE#8449])
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html

  * igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p:
    - shard-bmg:          [INCOMPLETE][244] ([Intel XE#8479]) -> [SKIP][245] ([Intel XE#7679]) +3 other tests skip
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p.html

  * igt@kms_bw@linear-tiling-2-displays-target-3840x2160p:
    - shard-bmg:          [INCOMPLETE][246] ([Intel XE#8479]) -> [INCOMPLETE][247] ([Intel XE#8479] / [Intel XE#8506]) +4 other tests incomplete
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-target-3840x2160p.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-target-3840x2160p.html

  * igt@kms_bw@linear-tiling-4-displays-target-3840x2160p:
    - shard-bmg:          [SKIP][248] ([Intel XE#367]) -> [INCOMPLETE][249] ([Intel XE#8479] / [Intel XE#8506]) +2 other tests incomplete
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@kms_bw@linear-tiling-4-displays-target-3840x2160p.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-target-3840x2160p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][250] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][251] ([Intel XE#2652])
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
    - shard-bmg:          [INCOMPLETE][252] ([Intel XE#8150] / [Intel XE#8479]) -> [SKIP][253] ([Intel XE#2887])
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs:
    - shard-bmg:          [SKIP][254] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][255] ([Intel XE#2887]) +1 other test skip
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html

  * igt@kms_chamelium_hpd@hdmi-hpd-fast:
    - shard-bmg:          [SKIP][256] ([Intel XE#8480]) -> [SKIP][257] ([Intel XE#2252]) +1 other test skip
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@kms_chamelium_hpd@hdmi-hpd-fast.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][258] ([Intel XE#8480]) -> [INCOMPLETE][259] ([Intel XE#8151] / [Intel XE#8479])
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic:
    - shard-bmg:          [INCOMPLETE][260] ([Intel XE#8151] / [Intel XE#8479]) -> [TIMEOUT][261] ([Intel XE#8479])
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-7/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-2/igt@kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][262] ([Intel XE#2286] / [Intel XE#6035]) -> [INCOMPLETE][263] ([Intel XE#8151] / [Intel XE#8479])
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions:
    - shard-bmg:          [TIMEOUT][264] ([Intel XE#8451] / [Intel XE#8479]) -> [INCOMPLETE][265] ([Intel XE#8151] / [Intel XE#8479])
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html

  * igt@kms_dsc@dsc-with-bpc-bigjoiner:
    - shard-bmg:          [SKIP][266] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][267] ([Intel XE#8265])
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@kms_dsc@dsc-with-bpc-bigjoiner.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-2/igt@kms_dsc@dsc-with-bpc-bigjoiner.html

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-bmg:          [CRASH][268] ([Intel XE#8461]) -> [INCOMPLETE][269] ([Intel XE#8155] / [Intel XE#8479])
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-1/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-7/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
    - shard-lnl:          [SKIP][270] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385]) -> [INCOMPLETE][271] ([Intel XE#8479])
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
    - shard-lnl:          [SKIP][272] ([Intel XE#1397] / [Intel XE#7385]) -> [INCOMPLETE][273] ([Intel XE#8479])
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][274] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][275] ([Intel XE#4141])
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][276] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][277] ([Intel XE#2311]) +11 other tests skip
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][278] ([Intel XE#2311]) -> [CRASH][279] ([Intel XE#8505])
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          [TIMEOUT][280] ([Intel XE#8479]) -> [INCOMPLETE][281] ([Intel XE#8368] / [Intel XE#8479])
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-1/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-render.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt:
    - shard-bmg:          [SKIP][282] ([Intel XE#2313]) -> [CRASH][283] ([Intel XE#8505])
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-blt:
    - shard-bmg:          [SKIP][284] ([Intel XE#2313]) -> [INCOMPLETE][285] ([Intel XE#8368] / [Intel XE#8479])
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-blt.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-blt:
    - shard-bmg:          [SKIP][286] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][287] ([Intel XE#7061])
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-blt.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-argb161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@psrhdr-1p-pri-indfb-multidraw:
    - shard-bmg:          [SKIP][288] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][289] ([Intel XE#2313]) +9 other tests skip
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@kms_frontbuffer_tracking@psrhdr-1p-pri-indfb-multidraw.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@kms_frontbuffer_tracking@psrhdr-1p-pri-indfb-multidraw.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][290] ([Intel XE#3544]) -> [SKIP][291] ([Intel XE#3374] / [Intel XE#3544])
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-bmg:          [SKIP][292] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][293] ([Intel XE#6911] / [Intel XE#7378])
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@kms_joiner@basic-ultra-joiner.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
    - shard-bmg:          [TIMEOUT][294] ([Intel XE#8465]) -> [INCOMPLETE][295] ([Intel XE#1035] / [Intel XE#8479])
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
    - shard-bmg:          [SKIP][296] ([Intel XE#7283]) -> [INCOMPLETE][297] ([Intel XE#1035] / [Intel XE#8479]) +1 other test incomplete
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
    - shard-bmg:          [SKIP][298] ([Intel XE#8480]) -> [SKIP][299] ([Intel XE#7283])
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html

  * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
    - shard-bmg:          [INCOMPLETE][300] ([Intel XE#1035] / [Intel XE#8479]) -> [SKIP][301] ([Intel XE#7283]) +2 other tests skip
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-4/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
    - shard-bmg:          [INCOMPLETE][302] ([Intel XE#8437] / [Intel XE#8459] / [Intel XE#8479]) -> [SKIP][303] ([Intel XE#2763] / [Intel XE#6886]) +1 other test skip
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html

  * igt@kms_psr@psr-primary-blt:
    - shard-bmg:          [SKIP][304] ([Intel XE#8441] / [Intel XE#8480]) -> [SKIP][305] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@kms_psr@psr-primary-blt.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@kms_psr@psr-primary-blt.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][306] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][307] ([Intel XE#1729] / [Intel XE#7424])
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@flip-suspend:
    - shard-bmg:          [SKIP][308] ([Intel XE#8480]) -> [SKIP][309] ([Intel XE#1499])
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@kms_vrr@flip-suspend.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-2/igt@kms_vrr@flip-suspend.html

  * igt@xe_eudebug_online@debugger-reopen:
    - shard-bmg:          [SKIP][310] ([Intel XE#8480]) -> [SKIP][311] ([Intel XE#7636])
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@xe_eudebug_online@debugger-reopen.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@xe_eudebug_online@debugger-reopen.html

  * igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen:
    - shard-bmg:          [SKIP][312] ([Intel XE#8480]) -> [TIMEOUT][313] ([Intel XE#8479])
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen.html

  * igt@xe_exec_atomic@basic-inc-all:
    - shard-bmg:          [SKIP][314] ([Intel XE#8480]) -> [INCOMPLETE][315] ([Intel XE#8437] / [Intel XE#8479])
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@xe_exec_atomic@basic-inc-all.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@xe_exec_atomic@basic-inc-all.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind:
    - shard-bmg:          [INCOMPLETE][316] ([Intel XE#8439] / [Intel XE#8479]) -> [SKIP][317] ([Intel XE#2322] / [Intel XE#7372])
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race:
    - shard-bmg:          [INCOMPLETE][318] ([Intel XE#8439] / [Intel XE#8479]) -> [INCOMPLETE][319] ([Intel XE#8439] / [Intel XE#8479] / [Intel XE#8499]) +3 other tests incomplete
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm:
    - shard-bmg:          [INCOMPLETE][320] ([Intel XE#8479]) -> [SKIP][321] ([Intel XE#8374]) +1 other test skip
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-race-prefetch:
    - shard-bmg:          [SKIP][322] ([Intel XE#8374]) -> [INCOMPLETE][323] ([Intel XE#8479]) +1 other test incomplete
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-race-prefetch.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-10/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-race-prefetch.html

  * igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault:
    - shard-bmg:          [SKIP][324] ([Intel XE#8480]) -> [SKIP][325] ([Intel XE#8374])
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault.html

  * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem:
    - shard-bmg:          [SKIP][326] ([Intel XE#8480]) -> [SKIP][327] ([Intel XE#8364]) +2 other tests skip
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem.html

  * igt@xe_exec_system_allocator@process-many-execqueues-mmap-new-madvise:
    - shard-bmg:          [SKIP][328] ([Intel XE#8480]) -> [FAIL][329] ([Intel XE#8479])
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@xe_exec_system_allocator@process-many-execqueues-mmap-new-madvise.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@xe_exec_system_allocator@process-many-execqueues-mmap-new-madvise.html

  * igt@xe_exec_system_allocator@process-many-execqueues-mmap-remap-dontunmap-eocheck:
    - shard-bmg:          [FAIL][330] -> [FAIL][331] ([Intel XE#8479])
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-3/igt@xe_exec_system_allocator@process-many-execqueues-mmap-remap-dontunmap-eocheck.html
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-6/igt@xe_exec_system_allocator@process-many-execqueues-mmap-remap-dontunmap-eocheck.html

  * igt@xe_exec_system_allocator@process-many-execqueues-mmap-remap-ro-dontunmap-eocheck:
    - shard-bmg:          [INCOMPLETE][332] ([Intel XE#8159] / [Intel XE#8479]) -> [FAIL][333] ([Intel XE#8479])
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@xe_exec_system_allocator@process-many-execqueues-mmap-remap-ro-dontunmap-eocheck.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@xe_exec_system_allocator@process-many-execqueues-mmap-remap-ro-dontunmap-eocheck.html

  * igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-race-nomemset:
    - shard-bmg:          [FAIL][334] ([Intel XE#8479]) -> [INCOMPLETE][335] ([Intel XE#8159] / [Intel XE#8479]) +1 other test incomplete
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-5/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-race-nomemset.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-9/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-race-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-shared-remap-dontunmap-eocheck:
    - shard-bmg:          [INCOMPLETE][336] ([Intel XE#8159] / [Intel XE#8479]) -> [TIMEOUT][337] ([Intel XE#8447] / [Intel XE#8479])
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-shared-remap-dontunmap-eocheck.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-shared-remap-dontunmap-eocheck.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-new-prefetch:
    - shard-bmg:          [SKIP][338] ([Intel XE#8440] / [Intel XE#8480]) -> [SKIP][339] ([Intel XE#8480]) +50 other tests skip
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-new-prefetch.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-new-prefetch.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind:
    - shard-bmg:          [SKIP][340] ([Intel XE#8480]) -> [SKIP][341] ([Intel XE#8378])
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind.html

  * igt@xe_pxp@pxp-stale-bo-bind-post-rpm:
    - shard-bmg:          [SKIP][342] ([Intel XE#8480]) -> [SKIP][343] ([Intel XE#4733] / [Intel XE#7417])
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-10/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-8/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html

  * igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0:
    - shard-bmg:          [ABORT][344] -> [INCOMPLETE][345] ([Intel XE#8479]) +1 other test incomplete
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca/shard-bmg-9/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0.html
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-169201v2/shard-bmg-10/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0.html

  
  [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
  [Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [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#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [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#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [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#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5643]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5643
  [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
  [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
  [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#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
  [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
  [Intel XE#7318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7318
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
  [Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
  [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
  [Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
  [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
  [Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
  [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
  [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
  [Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
  [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
  [Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402
  [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
  [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
  [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
  [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
  [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
  [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
  [Intel XE#7457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7457
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#7622]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7622
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
  [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
  [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
  [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
  [Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794
  [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
  [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
  [Intel XE#7928]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7928
  [Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935
  [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
  [Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
  [Intel XE#8151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8151
  [Intel XE#8155]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8155
  [Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159
  [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
  [Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303
  [Intel XE#8339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8339
  [Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
  [Intel XE#8356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8356
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
  [Intel XE#8368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8368
  [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
  [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
  [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
  [Intel XE#8397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8397
  [Intel XE#8437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8437
  [Intel XE#8439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8439
  [Intel XE#8440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8440
  [Intel XE#8441]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8441
  [Intel XE#8445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8445
  [Intel XE#8446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8446
  [Intel XE#8447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8447
  [Intel XE#8448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8448
  [Intel XE#8449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8449
  [Intel XE#8450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8450
  [Intel XE#8451]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8451
  [Intel XE#8453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8453
  [Intel XE#8458]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8458
  [Intel XE#8459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8459
  [Intel XE#8461]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8461
  [Intel XE#8462]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8462
  [Intel XE#8465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8465
  [Intel XE#8466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8466
  [Intel XE#8467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8467
  [Intel XE#8470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8470
  [Intel XE#8479]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8479
  [Intel XE#8480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8480
  [Intel XE#8482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8482
  [Intel XE#8486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8486
  [Intel XE#8499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8499
  [Intel XE#8505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8505
  [Intel XE#8506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8506
  [Intel XE#8510]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8510
  [Intel XE#8518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8518
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca -> xe-pw-169201v2

  IGT_8987: 8987
  xe-5303-5fe805765b01f6e3519421039c3ade7cff1074ca: 5fe805765b01f6e3519421039c3ade7cff1074ca
  xe-pw-169201v2: 169201v2

== Logs ==

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

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

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

* Re: [PATCH v2] drm/i915/bios: range check LFP Data Block panel_type2
  2026-06-26 14:01 ` [PATCH v2] " Jani Nikula
@ 2026-06-30  8:29   ` Ville Syrjälä
  2026-06-30  9:09     ` Jani Nikula
  0 siblings, 1 reply; 10+ messages in thread
From: Ville Syrjälä @ 2026-06-30  8:29 UTC (permalink / raw)
  To: Jani Nikula
  Cc: intel-gfx, intel-xe, Martin Hodo, stable, Animesh Manna,
	Ville Syrjälä, Michał Grzelak

On Fri, Jun 26, 2026 at 05:01:55PM +0300, Jani Nikula wrote:
> While the panel_type from LFP Data Block is range checked, panel_type2
> is not. Add a few helpers for range checking, and use them to not only
> check panel_type2, but also improve clarity and correctness in the panel
> type selection.
> 
> Discovered using AI-assisted static analysis confirmed by Intel Product
> Security.
> 
> v2:
> - Fix commit message typo (Michał)
> - Add is_panel_type_pnp() (Ville)
> 
> Reported-by: Martin Hodo <martin.hodo@intel.com>
> Fixes: 6434cf630086 ("drm/i915/bios: calculate panel type as per child device index in VBT")
> Cc: <stable@vger.kernel.org> # v6.0+
> Cc: Animesh Manna <animesh.manna@intel.com>
> Cc: Ville Syrjälä <ville.syrjala@intel.com>
> Reviewed-by: Michał Grzelak <michal.grzelak@intel.com> # v1
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_bios.c | 36 ++++++++++++++++++-----
>  1 file changed, 28 insertions(+), 8 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c
> index 15ebadc72b88..97cbae2e547e 100644
> --- a/drivers/gpu/drm/i915/display/intel_bios.c
> +++ b/drivers/gpu/drm/i915/display/intel_bios.c
> @@ -623,6 +623,21 @@ get_lfp_data_tail(const struct bdb_lfp_data *data,
>  		return NULL;
>  }
>  
> +static bool is_panel_type_valid(int panel_type)
> +{
> +	return panel_type >= 0 && panel_type < 16;
> +}
> +
> +static bool is_panel_type_pnp(int panel_type)
> +{
> +	return panel_type == 0xff;
> +}
> +
> +static bool is_panel_type_valid_or_pnp(int panel_type)
> +{
> +	return is_panel_type_valid(panel_type) || is_panel_type_pnp(panel_type);
> +}
> +
>  static int opregion_get_panel_type(struct intel_display *display,
>  				   const struct intel_bios_encoder_data *devdata,
>  				   const struct drm_edid *drm_edid, bool use_fallback)
> @@ -640,15 +655,21 @@ static int vbt_get_panel_type(struct intel_display *display,
>  	if (!lfp_options)
>  		return -1;
>  
> -	if (lfp_options->panel_type > 0xf &&
> -	    lfp_options->panel_type != 0xff) {
> +	if (!is_panel_type_valid_or_pnp(lfp_options->panel_type)) {
>  		drm_dbg_kms(display->drm, "Invalid VBT panel type 0x%x\n",
>  			    lfp_options->panel_type);
>  		return -1;
>  	}
>  
> -	if (devdata && devdata->child.handle == DEVICE_HANDLE_LFP2)
> +	if (devdata && devdata->child.handle == DEVICE_HANDLE_LFP2) {
> +		if (!is_panel_type_valid_or_pnp(lfp_options->panel_type2)) {
> +			drm_dbg_kms(display->drm, "Invalid VBT panel type 2 0x%x\n",
> +				    lfp_options->panel_type2);
> +			return -1;
> +		}
> +
>  		return lfp_options->panel_type2;
> +	}

Hmm, this code will always return 'panel_type' if it's valid, even
for LFP2. That seems wrong, but would need to double check the
Windows behaviour to be sure...

But that's a separate issue, so this patch is
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

>  
>  	drm_WARN_ON(display->drm,
>  		    devdata && devdata->child.handle != DEVICE_HANDLE_LFP1);
> @@ -762,13 +783,12 @@ static int get_panel_type(struct intel_display *display,
>  				    panel_types[i].name, panel_types[i].panel_type);
>  	}
>  
> -	if (panel_types[PANEL_TYPE_OPREGION].panel_type >= 0)
> +	if (is_panel_type_valid(panel_types[PANEL_TYPE_OPREGION].panel_type))
>  		i = PANEL_TYPE_OPREGION;
> -	else if (panel_types[PANEL_TYPE_VBT].panel_type == 0xff &&
> -		 panel_types[PANEL_TYPE_PNPID].panel_type >= 0)
> +	else if (is_panel_type_pnp(panel_types[PANEL_TYPE_VBT].panel_type) &&
> +		 is_panel_type_valid(panel_types[PANEL_TYPE_PNPID].panel_type))
>  		i = PANEL_TYPE_PNPID;
> -	else if (panel_types[PANEL_TYPE_VBT].panel_type != 0xff &&
> -		 panel_types[PANEL_TYPE_VBT].panel_type >= 0)
> +	else if (is_panel_type_valid(panel_types[PANEL_TYPE_VBT].panel_type))
>  		i = PANEL_TYPE_VBT;
>  	else
>  		i = PANEL_TYPE_FALLBACK;
> -- 
> 2.47.3

-- 
Ville Syrjälä
Intel

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

* Re: [PATCH v2] drm/i915/bios: range check LFP Data Block panel_type2
  2026-06-30  8:29   ` Ville Syrjälä
@ 2026-06-30  9:09     ` Jani Nikula
  0 siblings, 0 replies; 10+ messages in thread
From: Jani Nikula @ 2026-06-30  9:09 UTC (permalink / raw)
  To: Ville Syrjälä
  Cc: intel-gfx, intel-xe, Martin Hodo, stable, Animesh Manna,
	Ville Syrjälä, Michał Grzelak

On Tue, 30 Jun 2026, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote:
> On Fri, Jun 26, 2026 at 05:01:55PM +0300, Jani Nikula wrote:
>> While the panel_type from LFP Data Block is range checked, panel_type2
>> is not. Add a few helpers for range checking, and use them to not only
>> check panel_type2, but also improve clarity and correctness in the panel
>> type selection.
>> 
>> Discovered using AI-assisted static analysis confirmed by Intel Product
>> Security.
>> 
>> v2:
>> - Fix commit message typo (Michał)
>> - Add is_panel_type_pnp() (Ville)
>> 
>> Reported-by: Martin Hodo <martin.hodo@intel.com>
>> Fixes: 6434cf630086 ("drm/i915/bios: calculate panel type as per child device index in VBT")
>> Cc: <stable@vger.kernel.org> # v6.0+
>> Cc: Animesh Manna <animesh.manna@intel.com>
>> Cc: Ville Syrjälä <ville.syrjala@intel.com>
>> Reviewed-by: Michał Grzelak <michal.grzelak@intel.com> # v1
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>> ---
>>  drivers/gpu/drm/i915/display/intel_bios.c | 36 ++++++++++++++++++-----
>>  1 file changed, 28 insertions(+), 8 deletions(-)
>> 
>> diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/drm/i915/display/intel_bios.c
>> index 15ebadc72b88..97cbae2e547e 100644
>> --- a/drivers/gpu/drm/i915/display/intel_bios.c
>> +++ b/drivers/gpu/drm/i915/display/intel_bios.c
>> @@ -623,6 +623,21 @@ get_lfp_data_tail(const struct bdb_lfp_data *data,
>>  		return NULL;
>>  }
>>  
>> +static bool is_panel_type_valid(int panel_type)
>> +{
>> +	return panel_type >= 0 && panel_type < 16;
>> +}
>> +
>> +static bool is_panel_type_pnp(int panel_type)
>> +{
>> +	return panel_type == 0xff;
>> +}
>> +
>> +static bool is_panel_type_valid_or_pnp(int panel_type)
>> +{
>> +	return is_panel_type_valid(panel_type) || is_panel_type_pnp(panel_type);
>> +}
>> +
>>  static int opregion_get_panel_type(struct intel_display *display,
>>  				   const struct intel_bios_encoder_data *devdata,
>>  				   const struct drm_edid *drm_edid, bool use_fallback)
>> @@ -640,15 +655,21 @@ static int vbt_get_panel_type(struct intel_display *display,
>>  	if (!lfp_options)
>>  		return -1;
>>  
>> -	if (lfp_options->panel_type > 0xf &&
>> -	    lfp_options->panel_type != 0xff) {
>> +	if (!is_panel_type_valid_or_pnp(lfp_options->panel_type)) {
>>  		drm_dbg_kms(display->drm, "Invalid VBT panel type 0x%x\n",
>>  			    lfp_options->panel_type);
>>  		return -1;
>>  	}
>>  
>> -	if (devdata && devdata->child.handle == DEVICE_HANDLE_LFP2)
>> +	if (devdata && devdata->child.handle == DEVICE_HANDLE_LFP2) {
>> +		if (!is_panel_type_valid_or_pnp(lfp_options->panel_type2)) {
>> +			drm_dbg_kms(display->drm, "Invalid VBT panel type 2 0x%x\n",
>> +				    lfp_options->panel_type2);
>> +			return -1;
>> +		}
>> +
>>  		return lfp_options->panel_type2;
>> +	}
>
> Hmm, this code will always return 'panel_type' if it's valid, even
> for LFP2. That seems wrong, but would need to double check the
> Windows behaviour to be sure...
>
> But that's a separate issue, so this patch is
> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

Thanks, pushed to din.

BR,
Jani.

>
>>  
>>  	drm_WARN_ON(display->drm,
>>  		    devdata && devdata->child.handle != DEVICE_HANDLE_LFP1);
>> @@ -762,13 +783,12 @@ static int get_panel_type(struct intel_display *display,
>>  				    panel_types[i].name, panel_types[i].panel_type);
>>  	}
>>  
>> -	if (panel_types[PANEL_TYPE_OPREGION].panel_type >= 0)
>> +	if (is_panel_type_valid(panel_types[PANEL_TYPE_OPREGION].panel_type))
>>  		i = PANEL_TYPE_OPREGION;
>> -	else if (panel_types[PANEL_TYPE_VBT].panel_type == 0xff &&
>> -		 panel_types[PANEL_TYPE_PNPID].panel_type >= 0)
>> +	else if (is_panel_type_pnp(panel_types[PANEL_TYPE_VBT].panel_type) &&
>> +		 is_panel_type_valid(panel_types[PANEL_TYPE_PNPID].panel_type))
>>  		i = PANEL_TYPE_PNPID;
>> -	else if (panel_types[PANEL_TYPE_VBT].panel_type != 0xff &&
>> -		 panel_types[PANEL_TYPE_VBT].panel_type >= 0)
>> +	else if (is_panel_type_valid(panel_types[PANEL_TYPE_VBT].panel_type))
>>  		i = PANEL_TYPE_VBT;
>>  	else
>>  		i = PANEL_TYPE_FALLBACK;
>> -- 
>> 2.47.3

-- 
Jani Nikula, Intel

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

end of thread, other threads:[~2026-06-30  9:09 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-25 13:51 [PATCH] drm/i915/bios: range check LFP Data Block panel_type2 Jani Nikula
2026-06-25 15:27 ` Michał Grzelak
2026-06-26 13:37 ` Ville Syrjälä
2026-06-26 14:01 ` [PATCH v2] " Jani Nikula
2026-06-30  8:29   ` Ville Syrjälä
2026-06-30  9:09     ` Jani Nikula
2026-06-29 13:49 ` ✗ CI.checkpatch: warning for drm/i915/bios: range check LFP Data Block panel_type2 (rev2) Patchwork
2026-06-29 13:50 ` ✓ CI.KUnit: success " Patchwork
2026-06-29 14:59 ` ✓ Xe.CI.BAT: " Patchwork
2026-06-29 18:09 ` ✗ Xe.CI.FULL: failure " Patchwork

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